From 36a1932601c730683d263ee933dd90cd6dae96bf Mon Sep 17 00:00:00 2001 From: asami Date: Fri, 14 Jun 1996 11:02:28 +0000 Subject: The Great PC98 Merge. All new code is "#ifdef PC98"ed so this should make no difference to PC/AT (and its clones) users. Ok'd by: core Submitted by: FreeBSD(98) development team --- sys/kern/vfs_bio.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'sys/kern/vfs_bio.c') diff --git a/sys/kern/vfs_bio.c b/sys/kern/vfs_bio.c index 6b41014..0fc6b7f 100644 --- a/sys/kern/vfs_bio.c +++ b/sys/kern/vfs_bio.c @@ -18,7 +18,7 @@ * 5. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: vfs_bio.c,v 1.91 1996/05/24 05:21:58 dyson Exp $ + * $Id: vfs_bio.c,v 1.92 1996/05/31 00:41:37 dyson Exp $ */ /* @@ -1062,6 +1062,13 @@ loop: splx(s); allocbuf(bp, size); +#ifdef PC98 + /* + * 1024byte/sector support + */ +#define B_XXX2 0x8000000 + if (vp->v_flag & 0x10000) bp->b_flags |= B_XXX2; +#endif return (bp); } } -- cgit v1.1