/src/sys/ufs/lfs/ |
lfs_itimes.c | 41 #include "vnode.h" 43 #define vnode uvnode macro
|
/src/sbin/fsck_lfs/ |
pass0.c | 66 #define vnode uvnode macro 70 #undef vnode
|
pass5.c | 38 #define vnode uvnode macro 42 #undef vnode
|
pass4.c | 36 #define vnode uvnode macro
|
utilities.c | 37 #define vnode uvnode macro
|
vnode.c | 1 /* $NetBSD: vnode.c,v 1.16 2020/04/03 19:36:33 joerg Exp $ */ 38 #define VU_DIROP 0x01000000 /* XXX XXX from sys/vnode.h */ 39 #define vnode uvnode macro 42 #undef vnode 64 /* Convert between inode pointers and vnode pointers. */ 154 * Find a vnode in the cache; if not present, get it from the 181 /* Don't let vnode list grow arbitrarily */
|
pass1.c | 37 #define vnode uvnode macro 41 #undef vnode
|
setup.c | 74 #define vnode uvnode macro 78 #undef vnode
|
inode.c | 67 #define vnode uvnode macro 71 #undef vnode
|
pass6.c | 38 #define VU_DIROP 0x01000000 /* XXX XXX from sys/vnode.h */ 39 #define vnode uvnode macro 43 #undef vnode 202 * Remove the vnode from the cache, including any blocks it
|
lfs.c | 73 #define vnode uvnode macro 77 #undef vnode 328 * lfs_raw_vget makes us a new vnode from the inode at the given disk address.
|
segwrite.c | 71 #define VU_DIROP 0x01000000 /* XXX XXX from sys/vnode.h */ 72 #define vnode uvnode macro 192 * Write the dirty blocks associated with a vnode.
|
/src/sys/fs/v7fs/ |
v7fs_extern.h | 47 struct vnode *devvp; /* block device mounted vnode */ 54 struct vnode *vnode; /* back-link */ member in struct:v7fs_node 106 int v7fs_gop_alloc(struct vnode *, off_t, off_t, int, kauth_cred_t); 110 int v7fs_update(struct vnode *, const struct timespec *,
|
v7fs_impl.h | 124 void *vnode; /* NetBSD kernel */ member in union:v7fs_mount_device::__anon84c3a3e5010a
|
/src/sys/fs/sysvbfs/ |
sysvbfs.h | 46 struct vnode *vnode; member in struct:sysvbfs_node 60 struct vnode *devvp; /* block device mounted vnode */ 92 int sysvbfs_gop_alloc(struct vnode *, off_t, off_t, int, kauth_cred_t); 96 int sysvbfs_update(struct vnode *, const struct timespec *,
|
/src/sys/external/bsd/drm2/include/linux/ |
rbtree.h | 77 char *vnode = RB_TREE_MIN(__UNCONST(&root->rbr_tree)); local in function:rb_first 79 if (vnode) 80 vnode += root->rbr_tree.rbt_ops->rbto_node_offset; 81 return (struct rb_node *)vnode; 87 char *vnode = (char *)__UNCONST(rbnode); local in function:rb_next2 89 vnode -= root->rbr_tree.rbt_ops->rbto_node_offset; 90 vnode = RB_TREE_NEXT(__UNCONST(&root->rbr_tree), vnode); 91 if (vnode) 92 vnode += root->rbr_tree.rbt_ops->rbto_node_offset 99 char *vnode = RB_TREE_MAX(__UNCONST(&root->rbr_tree)); local in function:rb_last [all...] |
/src/sys/ufs/chfs/ |
chfs_scan.c | 37 * chfs_scan_make_vnode_cache - makes a new vnode cache during scan 38 * This function returns a vnode cache belonging to @vno. 47 /* vnode cache already exists */ 53 /* update max vnode number if needed */ 58 /* create new vnode cache */ 100 /* chfs_scan_check_vnode - check vnode crc and add it to vnode cache */ 107 struct chfs_flash_vnode *vnode = buf; local in function:chfs_scan_check_vnode 113 crc = crc32(0, (uint8_t *)vnode, 117 if (crc != le32toh(vnode->node_crc)) [all...] |
chfs_gc.c | 220 struct vnode *vp = NULL; 246 dbg_gc("vnode lookup\n"); 266 struct vnode *vp; 275 vp = kmem_zalloc(sizeof(struct vnode), KM_SLEEP); 320 /* Remove vnode information. */ 334 /* Remove node from vnode cache. */ 443 /* Compare vnode number to the maximum. */ 457 dbg_gc("get vnode cache\n"); 459 /* OK, Get and check the vnode cache. */ 474 /* Find out the state of the vnode. * 956 struct vnode *vnode = NULL; local in function:chfs_gcollect_dirent [all...] |
/src/usr.bin/pmap/ |
pmap.h | 48 #include <sys/vnode.h> 130 struct vnode vnode; member in union:kbit::__anon7865a5be020a
|
/src/sys/dev/dm/ |
dm_target_delay.c | 289 struct vnode *vnode = tdc->write.pdev->pdev_vnode; local in function:dm_target_delay_strategy 291 VOP_STRATEGY(vnode, bp);
|
/src/usr.sbin/makefs/ffs/ |
buf.h | 60 struct vnode { struct 80 int bread(struct vnode *, daddr_t, int, int, struct buf **); 83 struct buf * getblk(struct vnode *, daddr_t, int, int, int);
|
/src/sbin/newfs_lfs/ |
make_lfs.c | 80 # define vnode uvnode macro 99 #include "vnode.h"
|
/src/sys/fs/nilfs/ |
nilfs.h | 124 struct vnode *devvp; 187 struct vnode *vnode; /* vnode associated */ member in struct:nilfs_node
|
/src/usr.sbin/pstat/ |
pstat.c | 51 #include <sys/vnode.h> 171 int layer_print(struct vnode *, int); 175 int nfs_print(struct vnode *, int); 179 int ufs_print(struct vnode *, int); 180 int ext2fs_print(struct vnode *, int); 183 int vnode_print(struct vnode *, struct vnode *); 285 #define VPTRSZ sizeof(struct vnode *) 286 #define VNODESZ sizeof(struct vnode) 303 struct vnode *vp 773 struct vnode *vp, vnode; local in function:kinfo_vnodes [all...] |
/src/sys/sys/ |
vnode.h | 1 /* $NetBSD: vnode.h,v 1.304 2022/10/26 23:40:30 riastradh Exp $ */ 57 * @(#)vnode.h 8.17 (Berkeley) 5/20/95 82 * The vnode is the focus of all file activity in UNIX. There is a 83 * unique vnode allocated for each active file, each current directory, 88 * Vnode types. VNON means no type. 96 * Vnode tag types. 118 struct vnode; 127 * - stable, reference to the vnode is required 136 * v vnode lock 141 struct vnode { struct [all...] |