Home
last modified time | relevance | path

Searched refs:BFS_INODES_PER_BLOCK (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/fs/bfs/
Dinode.c52 block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; in bfs_iget()
60 off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; in bfs_iget()
108 *p = sb_bread(sb, 1 + ino / BFS_INODES_PER_BLOCK); in find_inode()
114 return (struct bfs_inode *)(*p)->b_data + ino % BFS_INODES_PER_BLOCK; in find_inode()
390 int block = (i - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1; in bfs_fill_super()
391 int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; in bfs_fill_super()
/linux-6.1.9/include/uapi/linux/
Dbfs_fs.h17 #define BFS_INODES_PER_BLOCK 8 macro