summaryrefslogtreecommitdiffstats
path: root/sys/dev/vinum
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-02-22 09:18:46 +0000
committerphk <phk@FreeBSD.org>2002-02-22 09:18:46 +0000
commit8b5a71f365fa771240bb1b5f8790a9c194013468 (patch)
treecf58a1e56139b39cf23692028dc0f47ec6dc4917 /sys/dev/vinum
parent7d2feac7d3f2d24e6aa783bff897b21b508633e8 (diff)
downloadFreeBSD-src-8b5a71f365fa771240bb1b5f8790a9c194013468.zip
FreeBSD-src-8b5a71f365fa771240bb1b5f8790a9c194013468.tar.gz
GC: BIO_ORDERED going away.
Diffstat (limited to 'sys/dev/vinum')
-rw-r--r--sys/dev/vinum/vinumrequest.c2
-rw-r--r--sys/dev/vinum/vinumrevive.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vinum/vinumrequest.c b/sys/dev/vinum/vinumrequest.c
index 6473a1d..e7cd1c4 100644
--- a/sys/dev/vinum/vinumrequest.c
+++ b/sys/dev/vinum/vinumrequest.c
@@ -807,7 +807,7 @@ build_rq_buffer(struct rqelement *rqe, struct plex *plex)
/* Initialize the buf struct */
/* copy these flags from user bp */
bp->b_flags = ubp->b_flags & (B_NOCACHE | B_ASYNC);
- bp->b_io.bio_flags = ubp->b_io.bio_flags & BIO_ORDERED;
+ bp->b_io.bio_flags = 0;
bp->b_iocmd = ubp->b_iocmd;
#ifdef VINUMDEBUG
if (rqe->flags & XFR_BUFLOCKED) /* paranoia */
diff --git a/sys/dev/vinum/vinumrevive.c b/sys/dev/vinum/vinumrevive.c
index d8fde41..85b73f3 100644
--- a/sys/dev/vinum/vinumrevive.c
+++ b/sys/dev/vinum/vinumrevive.c
@@ -175,7 +175,7 @@ revive_block(int sdno)
{
bp->b_dev = VINUM_SD(sdno); /* create the device number */
bp->b_flags &= ~B_DONE; /* no longer done */
- bp->b_ioflags = BIO_ORDERED; /* and make this an ordered write */
+ bp->b_ioflags = 0;
bp->b_iocmd = BIO_WRITE;
bp->b_resid = bp->b_bcount;
bp->b_blkno = sd->revived; /* write it to here */
OpenPOWER on IntegriCloud