Searched refs:v_rdev (Results 1 - 10 of 10) sorted by relevance

/xnu-2422.115.4/bsd/miscfs/specfs/
H A Dspecdev.h96 #define v_rdev v_specinfo->si_rdev macro
H A Dspec_vnops.c265 dev_t dev = (dev_t)vp->v_rdev;
288 dev_t bdev, dev = (dev_t)vp->v_rdev;
463 if (cdevsw[major(vp->v_rdev)].d_type == D_DISK && vp->v_un.vu_specinfo->si_throttleable) {
470 error = (*cdevsw[major(vp->v_rdev)].d_read)
471 (vp->v_rdev, uio, ap->a_ioflag);
479 dev = vp->v_rdev;
556 if (cdevsw[major(vp->v_rdev)].d_type == D_DISK && vp->v_un.vu_specinfo->si_throttleable) {
565 error = (*cdevsw[major(vp->v_rdev)].d_write)
566 (vp->v_rdev, uio, ap->a_ioflag);
578 dev = (vp->v_rdev);
[all...]
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_vnops.c1338 if (major(vp->v_rdev) >= nblkdev) {
1342 *(int *)data = bdevsw[major(vp->v_rdev)].d_type;
1345 if (major(vp->v_rdev) >= nchrdev) {
1349 *(int *)data = cdevsw[major(vp->v_rdev)].d_type;
H A Dvfs_subr.c1393 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
1429 nvp->v_rdev = nvp_rdev;
1441 if (nvp_rdev == vp->v_rdev && nvp->v_type == vp->v_type) {
2266 if (vq->v_rdev != vp->v_rdev ||
2364 if (vq->v_rdev != vp->v_rdev ||
2399 if (dev != vp->v_rdev || type != vp->v_type)
2452 if (vq->v_rdev == vp->v_rdev
[all...]
H A Dvfs_cache.c606 major(vp->v_rdev), minor(vp->v_rdev));
H A Dvfs_bio.c954 bp->b_dev = vp->v_rdev;
1228 bp->b_dev = devvp->v_rdev;
1845 bp->b_dev = vp->v_rdev;
4091 bp->b_dev = vp->v_rdev;
H A Dkpi_vfs.c1409 return(vp->v_rdev);
H A Dvfs_syscalls.c721 if (major(devvp->v_rdev) >= nblkdev) {
796 dev = (dev_t)device_vnode->v_rdev;
H A Dvfs_cluster.c475 if (bootcache_check_fn(vp->v_mount->mnt_devvp->v_rdev, blkno))
/xnu-2422.115.4/bsd/miscfs/devfs/
H A Ddevfs_vnops.c443 VATTR_RETURN(vap, va_rdev, vp->v_rdev);
447 VATTR_RETURN(vap, va_rdev, vp->v_rdev);

Completed in 93 milliseconds