| /src/sbin/fsck_lfs/ | 
| lfs_user.h | 93 struct uvnode *lfs_valloc(struct lfs *, ino_t); 
 | 
| inode.c | 626         vp = lfs_valloc(fs, ino); 
 | 
| lfs.c | 906 lfs_valloc(struct lfs *fs, ino_t ino)  function in typeref:struct:uvnode * 923 		panic("lfs_valloc: inuse inode %d on the free list", new_ino);
 928 	/* Extend IFILE so that the next lfs_valloc will succeed. */
 
 | 
| /src/sys/ufs/lfs/ | 
| lfs_extern.h | 137 int lfs_valloc(struct vnode *, int, kauth_cred_t, ino_t *, int *); 
 | 
| lfs_alloc.c | 246 lfs_valloc(struct vnode *pvp, int mode, kauth_cred_t cred,  function in typeref:typename:int 271 	DLOG((DLOG_ALLOC, "lfs_valloc: allocate inode %" PRId64 "\n",
 283 		panic("lfs_valloc: inuse inode %" PRId64 " on the free list",
 288 	DLOG((DLOG_ALLOC, "lfs_valloc: headfree %" PRId64 " -> %ju\n",
 313 		 * lfs_valloc will succeed.
 346  * Called in the same context as lfs_valloc and therefore shares the
 449 	/* See comment in lfs_valloc */
 457 		 * lfs_valloc will succeed.
 
 | 
| lfs_vfsops.c | 1905 		error = lfs_valloc(dvp, mode, cred, &ino, &gen); 
 |