Deleted PC-98 code because (1) machine dependent code should not be in

here, and (2) the flag used in PC-98 code has been assigned to another
purpose.
This commit is contained in:
KATO Takenori
1998-03-17 08:41:28 +00:00
parent 2deb5d0417
commit f1aca9c33f
+1 -8
View File
@@ -11,7 +11,7 @@
* 2. Absolutely no warranty of function or purpose is made by the author
* John S. Dyson.
*
* $Id: vfs_bio.c,v 1.155 1998/03/08 09:57:04 julian Exp $
* $Id: vfs_bio.c,v 1.156 1998/03/16 01:55:22 dyson Exp $
*/
/*
@@ -1545,13 +1545,6 @@ getblk(struct vnode * vp, daddr_t blkno, int size, int slpflag, int slptimeo)
allocbuf(bp, size);
splx(s);
#ifdef PC98
/*
* 1024byte/sector support
*/
#define B_XXX2 0x8000000
if (vp->v_flag & 0x10000) bp->b_flags |= B_XXX2;
#endif
return (bp);
}
}