Home
last modified time | relevance | path

Searched refs:bhp (Results 1 – 14 of 14) sorted by relevance

/linux-4.4.14/fs/gfs2/
Dmeta_io.h56 struct buffer_head **bhp);
64 struct buffer_head **bhp);
67 struct buffer_head **bhp) in gfs2_meta_inode_buffer() argument
69 return gfs2_meta_indirect_buffer(ip, 0, ip->i_no_addr, bhp); in gfs2_meta_inode_buffer()
Dmeta_io.c201 struct buffer_head **bhp) in gfs2_meta_read() argument
207 *bhp = NULL; in gfs2_meta_read()
211 *bhp = bh = gfs2_getbuf(gl, blkno, CREATE); in gfs2_meta_read()
230 *bhp = NULL; in gfs2_meta_read()
337 struct buffer_head **bhp) in gfs2_meta_indirect_buffer() argument
350 *bhp = bh; in gfs2_meta_indirect_buffer()
Ddir.h54 struct buffer_head **bhp);
Dxattr.c622 static int ea_alloc_blk(struct gfs2_inode *ip, struct buffer_head **bhp) in ea_alloc_blk() argument
634 *bhp = gfs2_meta_new(ip->i_gl, block); in ea_alloc_blk()
635 gfs2_trans_add_meta(ip->i_gl, *bhp); in ea_alloc_blk()
636 gfs2_metatype_set(*bhp, GFS2_METATYPE_EA, GFS2_FORMAT_EA); in ea_alloc_blk()
637 gfs2_buffer_clear_tail(*bhp, sizeof(struct gfs2_meta_header)); in ea_alloc_blk()
639 ea = GFS2_EA_BH2FIRST(*bhp); in ea_alloc_blk()
Ddir.c93 struct buffer_head **bhp) in gfs2_dir_get_new_buffer() argument
101 *bhp = bh; in gfs2_dir_get_new_buffer()
106 struct buffer_head **bhp) in gfs2_dir_get_existing_buffer() argument
118 *bhp = bh; in gfs2_dir_get_existing_buffer()
722 struct buffer_head **bhp) in get_leaf() argument
726 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_WAIT, bhp); in get_leaf()
727 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) { in get_leaf()
/linux-4.4.14/fs/nilfs2/
Dalloc.c211 struct buffer_head **bhp, in nilfs_palloc_get_block() argument
220 *bhp = prev->bh; in nilfs_palloc_get_block()
226 ret = nilfs_mdt_get_block(inode, blkoff, create, init_block, bhp); in nilfs_palloc_get_block()
234 get_bh(*bhp); in nilfs_palloc_get_block()
235 prev->bh = *bhp; in nilfs_palloc_get_block()
271 int create, struct buffer_head **bhp) in nilfs_palloc_get_desc_block() argument
278 bhp, &cache->prev_desc, &cache->lock); in nilfs_palloc_get_desc_block()
290 int create, struct buffer_head **bhp) in nilfs_palloc_get_bitmap_block() argument
296 create, NULL, bhp, in nilfs_palloc_get_bitmap_block()
324 int create, struct buffer_head **bhp) in nilfs_palloc_get_entry_block() argument
[all …]
Dcpfile.c141 struct buffer_head **bhp) in nilfs_cpfile_get_header_block() argument
143 return nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp); in nilfs_cpfile_get_header_block()
149 struct buffer_head **bhp) in nilfs_cpfile_get_checkpoint_block() argument
153 create, nilfs_cpfile_block_init, bhp); in nilfs_cpfile_get_checkpoint_block()
176 struct buffer_head **bhp) in nilfs_cpfile_find_checkpoint_block() argument
187 ret = nilfs_mdt_find_block(cpfile, start, end, &blkoff, bhp); in nilfs_cpfile_find_checkpoint_block()
230 struct buffer_head **bhp) in nilfs_cpfile_get_checkpoint() argument
277 *bhp = cp_bh; in nilfs_cpfile_get_checkpoint()
Dbtree.c72 __u64 ptr, struct buffer_head **bhp) in nilfs_btree_get_new_block() argument
82 *bhp = bh; in nilfs_btree_get_new_block()
475 struct buffer_head **bhp, in __nilfs_btree_get_block() argument
525 *bhp = bh; in __nilfs_btree_get_block()
530 struct buffer_head **bhp) in nilfs_btree_get_block() argument
532 return __nilfs_btree_get_block(btree, ptr, bhp, NULL); in nilfs_btree_get_block()
1728 struct buffer_head **bhp, in nilfs_btree_prepare_convert_and_insert() argument
1748 *bhp = NULL; in nilfs_btree_prepare_convert_and_insert()
1760 *bhp = bh; in nilfs_btree_prepare_convert_and_insert()
Dsufile.c95 struct buffer_head **bhp) in nilfs_sufile_get_header_block() argument
97 return nilfs_mdt_get_block(sufile, 0, 0, NULL, bhp); in nilfs_sufile_get_header_block()
102 int create, struct buffer_head **bhp) in nilfs_sufile_get_segment_usage_block() argument
106 create, NULL, bhp); in nilfs_sufile_get_segment_usage_block()
Dsegbuf.c122 struct buffer_head **bhp) in nilfs_segbuf_extend_payload() argument
132 *bhp = bh; in nilfs_segbuf_extend_payload()
/linux-4.4.14/fs/hpfs/
Dmap.c163 struct fnode *hpfs_map_fnode(struct super_block *s, ino_t ino, struct buffer_head **bhp) in hpfs_map_fnode() argument
169 if ((fnode = hpfs_map_sector(s, ino, bhp, FNODE_RD_AHEAD))) { in hpfs_map_fnode()
216 brelse(*bhp); in hpfs_map_fnode()
220 struct anode *hpfs_map_anode(struct super_block *s, anode_secno ano, struct buffer_head **bhp) in hpfs_map_anode() argument
224 if ((anode = hpfs_map_sector(s, ano, bhp, ANODE_RD_AHEAD))) in hpfs_map_anode()
247 brelse(*bhp); in hpfs_map_anode()
Dbuffer.c70 void *hpfs_map_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp, in hpfs_map_sector() argument
81 *bhp = bh = sb_bread(s, hpfs_search_hotfix_map(s, secno)); in hpfs_map_sector()
92 void *hpfs_get_sector(struct super_block *s, unsigned secno, struct buffer_head **bhp) in hpfs_get_sector() argument
101 if ((*bhp = bh = sb_getblk(s, hpfs_search_hotfix_map(s, secno))) != NULL) { in hpfs_get_sector()
/linux-4.4.14/fs/jbd2/
Drecovery.c132 static int jread(struct buffer_head **bhp, journal_t *journal, in jread() argument
139 *bhp = NULL; in jread()
173 *bhp = bh; in jread()
/linux-4.4.14/fs/ocfs2/
Dquota_global.c150 struct buffer_head **bhp) in ocfs2_read_quota_phys_block() argument
154 *bhp = NULL; in ocfs2_read_quota_phys_block()
155 rc = ocfs2_read_blocks(INODE_CACHE(inode), p_block, 1, bhp, 0, in ocfs2_read_quota_phys_block()