diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-01-04 16:51:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-01-04 16:51:06 +0000 |
commit | 165fc38c9519f8f9acca8479e322a6f8944aa097 (patch) | |
tree | a77e24613091e8d941121da84d238e881172cea8 /sys | |
parent | 3a9239d3714ea270c4025beef438c5a2935dea14 (diff) |
In x[dy]dummystrat, do not clear B_BUSY from the buffer.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/dev/xd.c | 3 | ||||
-rw-r--r-- | sys/arch/sparc/dev/xy.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/sparc/dev/xd.c b/sys/arch/sparc/dev/xd.c index 6479ca93400..096e3e758d7 100644 --- a/sys/arch/sparc/dev/xd.c +++ b/sys/arch/sparc/dev/xd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xd.c,v 1.43 2007/11/28 16:33:20 martin Exp $ */ +/* $OpenBSD: xd.c,v 1.44 2009/01/04 16:51:05 miod Exp $ */ /* $NetBSD: xd.c,v 1.37 1997/07/29 09:58:16 fair Exp $ */ /* @@ -287,7 +287,6 @@ xddummystrat(bp) panic("xddummystrat"); bcopy(xd_labeldata, bp->b_data, XDFM_BPS); bp->b_flags |= B_DONE; - bp->b_flags &= ~B_BUSY; } int diff --git a/sys/arch/sparc/dev/xy.c b/sys/arch/sparc/dev/xy.c index 483ee7821bd..4a10df3ca32 100644 --- a/sys/arch/sparc/dev/xy.c +++ b/sys/arch/sparc/dev/xy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xy.c,v 1.40 2007/11/28 16:33:20 martin Exp $ */ +/* $OpenBSD: xy.c,v 1.41 2009/01/04 16:51:05 miod Exp $ */ /* $NetBSD: xy.c,v 1.26 1997/07/19 21:43:56 pk Exp $ */ /* @@ -227,7 +227,6 @@ xydummystrat(bp) panic("xydummystrat"); bcopy(xy_labeldata, bp->b_data, XYFM_BPS); bp->b_flags |= B_DONE; - bp->b_flags &= ~B_BUSY; } int |