diff options
Diffstat (limited to 'sys/kern/vfs_aio.c')
-rw-r--r-- | sys/kern/vfs_aio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index 8308caf..fd632a9 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -934,10 +934,7 @@ aio_qphysio(p, aiocbe) vp = (struct vnode *)fp->f_data; - /* XXX: use vn_isdisk() when VBLK and VCHR are unified */ - if (vp->v_type != VCHR) - return (-1); - if (!(devsw(vp->v_rdev)->d_flags & D_DISK)) + if (!vn_isdisk(vp)) return (-1); if (cb->aio_nbytes % vp->v_rdev->si_bsize_phys) |