/src/sys/fs/nfs/client/ |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ */ 33 * FreeBSD: head/sys/fs/nfsclient/nfsnode.h 303715 2016-08-03 15:58:20Z kib 34 * $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ 41 * Silly rename structure that hangs off the nfsnode until the name 80 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 82 * There is a unique nfsnode allocated for each active file, 84 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 92 struct nfsnode { struct 162 * Convert between nfsnode pointers and vnode pointers 164 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data [all...] |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ */ 33 * FreeBSD: head/sys/fs/nfsclient/nfsnode.h 303715 2016-08-03 15:58:20Z kib 34 * $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ 41 * Silly rename structure that hangs off the nfsnode until the name 80 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 82 * There is a unique nfsnode allocated for each active file, 84 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 92 struct nfsnode { struct 162 * Convert between nfsnode pointers and vnode pointers 164 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data [all...] |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ */ 33 * FreeBSD: head/sys/fs/nfsclient/nfsnode.h 303715 2016-08-03 15:58:20Z kib 34 * $NetBSD: nfsnode.h,v 1.3 2016/12/13 22:17:33 pgoyette Exp $ 41 * Silly rename structure that hangs off the nfsnode until the name 80 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 82 * There is a unique nfsnode allocated for each active file, 84 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 92 struct nfsnode { struct 162 * Convert between nfsnode pointers and vnode pointers 164 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data [all...] |
/src/sys/nfs/ |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.77 2024/12/07 02:05:55 riastradh Exp $ */ 34 * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 63 * Each offset is hashed into a per-nfsnode hashtable. An entry 91 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 93 * There is a unique nfsnode allocated for each active file, 95 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 122 struct nfsnode { struct 201 * Convert between nfsnode pointers and vnode pointers 203 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data) 210 * Silly rename structure that hangs off the nfsnode until the nam [all...] |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.77 2024/12/07 02:05:55 riastradh Exp $ */ 34 * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 63 * Each offset is hashed into a per-nfsnode hashtable. An entry 91 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 93 * There is a unique nfsnode allocated for each active file, 95 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 122 struct nfsnode { struct 201 * Convert between nfsnode pointers and vnode pointers 203 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data) 210 * Silly rename structure that hangs off the nfsnode until the nam [all...] |
nfsnode.h | 1 /* $NetBSD: nfsnode.h,v 1.77 2024/12/07 02:05:55 riastradh Exp $ */ 34 * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 63 * Each offset is hashed into a per-nfsnode hashtable. An entry 91 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity 93 * There is a unique nfsnode allocated for each active file, 95 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c) 122 struct nfsnode { struct 201 * Convert between nfsnode pointers and vnode pointers 203 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data) 210 * Silly rename structure that hangs off the nfsnode until the nam [all...] |
/src/usr.sbin/pstat/ |
pstat.c | 68 #include <nfs/nfsnode.h> 578 struct nfsnode nfsnode, *np = &nfsnode; local in function:nfs_print 585 KGETRET(VTONFS(vp), &nfsnode, sizeof(nfsnode), "vnode's nfsnode");
|
pstat.c | 68 #include <nfs/nfsnode.h> 578 struct nfsnode nfsnode, *np = &nfsnode; local in function:nfs_print 585 KGETRET(VTONFS(vp), &nfsnode, sizeof(nfsnode), "vnode's nfsnode");
|
pstat.c | 68 #include <nfs/nfsnode.h> 578 struct nfsnode nfsnode, *np = &nfsnode; local in function:nfs_print 585 KGETRET(VTONFS(vp), &nfsnode, sizeof(nfsnode), "vnode's nfsnode");
|
/src/usr.bin/fstat/ |
fstat.c | 72 #include <nfs/nfsnode.h> 831 struct nfsnode nfsnode; local in function:nfs_filestat 834 if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) { 835 dprintf("can't read nfsnode at %p for pid %d", VTONFS(vp), 839 if (!KVM_READ(nfsnode.n_vattr, &va, sizeof(va))) { 841 nfsnode.n_vattr, Pid); 846 fsp->size = nfsnode.n_size;
|
fstat.c | 72 #include <nfs/nfsnode.h> 831 struct nfsnode nfsnode; local in function:nfs_filestat 834 if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) { 835 dprintf("can't read nfsnode at %p for pid %d", VTONFS(vp), 839 if (!KVM_READ(nfsnode.n_vattr, &va, sizeof(va))) { 841 nfsnode.n_vattr, Pid); 846 fsp->size = nfsnode.n_size;
|
fstat.c | 72 #include <nfs/nfsnode.h> 831 struct nfsnode nfsnode; local in function:nfs_filestat 834 if (!KVM_READ(VTONFS(vp), &nfsnode, sizeof (nfsnode))) { 835 dprintf("can't read nfsnode at %p for pid %d", VTONFS(vp), 839 if (!KVM_READ(nfsnode.n_vattr, &va, sizeof(va))) { 841 nfsnode.n_vattr, Pid); 846 fsp->size = nfsnode.n_size;
|