Home
last modified time | relevance | path

Searched refs:vfs_statfs (Results 1 – 9 of 9) sorted by relevance

/xnu-12377.41.6/bsd/miscfs/bindfs/
H A Dbind_vfsops.c155 if (count > sizeof(vfs_statfs(mp)->f_mntfromname)) { in bindfs_mount()
157 …BINDFSERROR("path to mount too large for this system %zu vs %lu\n", count, sizeof(vfs_statfs(mp)->… in bindfs_mount()
224 sp = vfs_statfs(mp); in bindfs_mount()
396 struct vfsstatfs * sp = vfs_statfs(mp); in bindfs_vfs_getattr()
H A Dbind_vnops.c110 VATTR_RETURN(args->a_vap, va_fsid, vfs_statfs(vnode_mount(args->a_vp))->f_fsid.val[0]); in bindfs_getattr()
114 VATTR_RETURN(args->a_vap, va_fsid64, vfs_statfs(vnode_mount(args->a_vp))->f_fsid); in bindfs_getattr()
354 vfs_statfs(vnode_mount(vp))->f_mntonname, in bindfs_readdir()
682 sp = vfs_statfs(mp); in bindfs_getbackingvnode()
/xnu-12377.41.6/bsd/miscfs/nullfs/
H A Dnull_vfsops.c166 if (count > sizeof(vfs_statfs(mp)->f_mntfromname)) { in nullfs_mount()
168 … to translocate too large for this system %ld vs %ld\n", count, sizeof(vfs_statfs(mp)->f_mntfromna… in nullfs_mount()
239 sp = vfs_statfs(mp); in nullfs_mount()
420 struct vfsstatfs * sp = vfs_statfs(mp); in nullfs_vfs_getattr()
H A Dnull_vnops.c206 VATTR_RETURN(args->a_vap, va_iosize, vfs_statfs(mp)->f_iosize); in nullfs_special_getattr()
210 …VATTR_RETURN(args->a_vap, va_fsid, vfs_statfs(mp)->f_fsid.val[0]); // return the fsid of the mount… in nullfs_special_getattr()
213 VATTR_RETURN(args->a_vap, va_fsid64, vfs_statfs(mp)->f_fsid); in nullfs_special_getattr()
284 VATTR_RETURN(args->a_vap, va_fsid, vfs_statfs(vnode_mount(args->a_vp))->f_fsid.val[0]); in nullfs_getattr()
287 VATTR_RETURN(args->a_vap, va_fsid64, vfs_statfs(vnode_mount(args->a_vp))->f_fsid); in nullfs_getattr()
1187 sp = vfs_statfs(mp); in nullfs_getbackingvnode()
/xnu-12377.41.6/bsd/sys/
H A Dmount.h1170 struct vfsstatfs * vfs_statfs(mount_t mp);
/xnu-12377.41.6/bsd/kern/
H A Dbsd_init.c439 rootdev = vfs_statfs(new_mount)->f_fsid.val[0]; /* like ATTR_CMN_DEVID */ in set_rootvnode()
/xnu-12377.41.6/bsd/nfs/
H A Dnfs_syscalls.c336 ptr = vfs_statfs(vnode_mount(vp))->f_mntonname; in getfh()
H A Dnfs_serv.c4902 blksize = vfs_statfs(vnode_mount(vp))->f_bsize; in nfsrv_statfs()
/xnu-12377.41.6/bsd/vfs/
H A Dkpi_vfs.c739 vfs_statfs(mount_t mp) in vfs_statfs() function