diff options
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r-- | sys/dev/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 0431d3e..958fc98 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -376,7 +376,7 @@ g_md_start(struct bio *bp) bp->bio_pblkno = bp->bio_offset / sc->secsize; bp->bio_bcount = bp->bio_length; mtx_lock(&sc->queue_mtx); - bioqdisksort(&sc->bio_queue, bp); + bioq_disksort(&sc->bio_queue, bp); mtx_unlock(&sc->queue_mtx); wakeup(sc); |