Home
last modified time | relevance | path

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

/linux-2.4.37.9/fs/bfs/
Dinode.c49 block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; in bfs_read_inode()
57 off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK; in bfs_read_inode()
102 block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; in bfs_write_inode()
110 off = (ino - BFS_ROOT_INO)%BFS_INODES_PER_BLOCK; in bfs_write_inode()
155 block = (ino - BFS_ROOT_INO)/BFS_INODES_PER_BLOCK + 1; in bfs_delete_inode()
162 off = (ino - BFS_ROOT_INO)%BFS_INODES_PER_BLOCK; in bfs_delete_inode()
/linux-2.4.37.9/include/linux/
Dbfs_fs.h14 #define BFS_INODES_PER_BLOCK 8 macro