Searched refs:dir_bh (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/fs/affs/ |
H A D | amigaffs.c | 29 struct buffer_head *dir_bh; in affs_insert_hash() local 38 dir_bh = affs_bread(sb, dir->i_ino); in affs_insert_hash() 39 if (!dir_bh) in affs_insert_hash() 42 hash_ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[offset]); in affs_insert_hash() 44 affs_brelse(dir_bh); in affs_insert_hash() 45 dir_bh = affs_bread(sb, hash_ino); in affs_insert_hash() 46 if (!dir_bh) in affs_insert_hash() 48 hash_ino = be32_to_cpu(AFFS_TAIL(sb, dir_bh)->hash_chain); in affs_insert_hash() 54 if (dir->i_ino == dir_bh->b_blocknr) in affs_insert_hash() 55 AFFS_HEAD(dir_bh)->table[offset] = cpu_to_be32(ino); in affs_insert_hash() [all …]
|
H A D | dir.c | 49 struct buffer_head *dir_bh = NULL; in affs_readdir() local 76 dir_bh = affs_bread(sb, inode->i_ino); in affs_readdir() 77 if (!dir_bh) in affs_readdir() 89 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]); in affs_readdir() 106 ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[hash_pos]); in affs_readdir() 139 affs_brelse(dir_bh); in affs_readdir()
|
/openbmc/linux/fs/ocfs2/ |
H A D | acl.c | 355 struct buffer_head *dir_bh, in ocfs2_init_acl() argument 368 dir_bh); in ocfs2_init_acl()
|
H A D | xattr.c | 611 struct buffer_head *dir_bh, in ocfs2_calc_xattr_init() argument 628 acl_len = ocfs2_xattr_get_nolock(dir, dir_bh, in ocfs2_calc_xattr_init() 7210 struct buffer_head *dir_bh = NULL; in ocfs2_init_security_and_acl() local 7218 ret = ocfs2_inode_lock(dir, &dir_bh, 0); in ocfs2_init_security_and_acl() 7223 ret = ocfs2_init_acl(NULL, inode, dir, NULL, dir_bh, NULL, NULL); in ocfs2_init_security_and_acl() 7228 brelse(dir_bh); in ocfs2_init_security_and_acl()
|
H A D | namei.c | 2434 struct buffer_head *dir_bh, in ocfs2_prep_new_orphaned_file() argument 2462 ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac, in ocfs2_prep_new_orphaned_file()
|
/openbmc/linux/fs/ext4/ |
H A D | namei.c | 3633 struct buffer_head *dir_bh; member 3642 ent->dir_bh = ext4_get_first_dir_block(handle, ent->inode, in ext4_rename_dir_prepare() 3645 if (!ent->dir_bh) in ext4_rename_dir_prepare() 3649 BUFFER_TRACE(ent->dir_bh, "get_write_access"); in ext4_rename_dir_prepare() 3651 ent->dir_bh, EXT4_JTR_NONE); in ext4_rename_dir_prepare() 3660 BUFFER_TRACE(ent->dir_bh, "call ext4_handle_dirty_metadata"); in ext4_rename_dir_finish() 3665 ent->dir_bh); in ext4_rename_dir_finish() 3668 ent->dir_bh); in ext4_rename_dir_finish() 4011 if (old.dir_bh) { in ext4_rename() 4083 brelse(old.dir_bh); in ext4_rename() [all …]
|