/src/usr.sbin/makefs/ffs/ |
ffs_extern.h | 51 /* ffs_alloc.c */ 52 int ffs_alloc(struct inode *, daddr_t, daddr_t, int, daddr_t *);
|
ffs_balloc.c | 189 error = ffs_alloc(ip, lbn, 229 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); 268 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); 298 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); 435 error = ffs_alloc(ip, lbn, 475 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); 514 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); 544 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb);
|
ffs_alloc.c | 1 /* $NetBSD: ffs_alloc.c,v 1.33 2025/06/27 19:55:38 andvar Exp $ */ 2 /* From: NetBSD: ffs_alloc.c,v 1.50 2001/09/06 02:16:01 lukem Exp */ 41 * @(#)ffs_alloc.c 8.19 (Berkeley) 7/13/95 50 __RCSID("$NetBSD: ffs_alloc.c,v 1.33 2025/06/27 19:55:38 andvar Exp $"); 101 ffs_alloc(struct inode *ip, daddr_t lbn __unused, daddr_t bpref, int size, function in typeref:typename:int
|
/src/sys/modules/ffs/ |
Makefile | 14 SRCS+= ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_subr.c ffs_tables.c \
|
/src/sys/rump/fs/lib/libffs/ |
Makefile | 9 SRCS= ffs_alloc.c ffs_appleufs.c ffs_balloc.c ffs_bswap.c ffs_inode.c \
|
/src/sys/ufs/ffs/ |
ffs_balloc.c | 249 error = ffs_alloc(ip, lbn, 286 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, 339 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, 395 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, flags, cred, 643 error = ffs_alloc(ip, lbn, 767 error = ffs_alloc(ip, lbn, 804 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, 857 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, 913 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, flags, cred,
|
ffs_extern.h | 89 /* ffs_alloc.c */ 90 int ffs_alloc(struct inode *, daddr_t, daddr_t , int, int, kauth_cred_t,
|
ffs_alloc.c | 1 /* $NetBSD: ffs_alloc.c,v 1.174 2025/06/27 19:55:38 andvar Exp $ */ 69 * @(#)ffs_alloc.c 8.19 (Berkeley) 7/13/95 73 __KERNEL_RCSID(0, "$NetBSD: ffs_alloc.c,v 1.174 2025/06/27 19:55:38 andvar Exp $"); 176 ffs_alloc(struct inode *ip, daddr_t lbn, daddr_t bpref, int size, function in typeref:typename:int 329 * Unlike in ffs_alloc(), here pages must always exist
|