mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 02:32:47 +00:00
Disabled i586-optimized copyin and copyout again. The fault handler
is still broken - it doesn't restore the floating point state. 2.2-BETA users should disable it using npx0 flags 0x04 the same as 2.2-ALPHA users should have.
This commit is contained in:
parent
379dda4b88
commit
5a9c69e7af
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20969
@ -32,7 +32,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: npx.c,v 1.33 1996/11/15 20:27:14 bde Exp $
|
||||
* $Id: npx.c,v 1.34 1996/11/30 14:08:44 bde Exp $
|
||||
*/
|
||||
|
||||
#include "npx.h"
|
||||
@ -367,10 +367,12 @@ npxattach(dvp)
|
||||
}
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_BZERO))
|
||||
bzero = i586_bzero;
|
||||
#ifdef notyet
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_COPYIO)) {
|
||||
copyin_vector = i586_copyin;
|
||||
copyout_vector = i586_copyout;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: npx.c,v 1.33 1996/11/15 20:27:14 bde Exp $
|
||||
* $Id: npx.c,v 1.34 1996/11/30 14:08:44 bde Exp $
|
||||
*/
|
||||
|
||||
#include "npx.h"
|
||||
@ -367,10 +367,12 @@ npxattach(dvp)
|
||||
}
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_BZERO))
|
||||
bzero = i586_bzero;
|
||||
#ifdef notyet
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_COPYIO)) {
|
||||
copyin_vector = i586_copyin;
|
||||
copyout_vector = i586_copyout;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -32,7 +32,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)npx.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: npx.c,v 1.33 1996/11/15 20:27:14 bde Exp $
|
||||
* $Id: npx.c,v 1.34 1996/11/30 14:08:44 bde Exp $
|
||||
*/
|
||||
|
||||
#include "npx.h"
|
||||
@ -367,10 +367,12 @@ npxattach(dvp)
|
||||
}
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_BZERO))
|
||||
bzero = i586_bzero;
|
||||
#ifdef notyet
|
||||
if (!(dvp->id_flags & NPX_DISABLE_I586_OPTIMIZED_COPYIO)) {
|
||||
copyin_vector = i586_copyin;
|
||||
copyout_vector = i586_copyout;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user