Home
last modified time | relevance | path

Searched refs:new_bh (Results 1 – 12 of 12) sorted by relevance

/Linux-v4.19/fs/ext2/
Dxattr.c631 struct buffer_head *new_bh = NULL; in ext2_xattr_set2() local
636 new_bh = ext2_xattr_cache_find(inode, header); in ext2_xattr_set2()
637 if (new_bh) { in ext2_xattr_set2()
639 if (new_bh == old_bh) { in ext2_xattr_set2()
640 ea_bdebug(new_bh, "keeping this block"); in ext2_xattr_set2()
644 ea_bdebug(new_bh, "reusing block"); in ext2_xattr_set2()
648 unlock_buffer(new_bh); in ext2_xattr_set2()
651 le32_add_cpu(&HDR(new_bh)->h_refcount, 1); in ext2_xattr_set2()
652 ea_bdebug(new_bh, "refcount now=%d", in ext2_xattr_set2()
653 le32_to_cpu(HDR(new_bh)->h_refcount)); in ext2_xattr_set2()
[all …]
/Linux-v4.19/fs/bfs/
Ddir.c207 struct buffer_head *old_bh, *new_bh; in bfs_rename() local
215 old_bh = new_bh = NULL; in bfs_rename()
230 new_bh = bfs_find_entry(new_dir, &new_dentry->d_name, &new_de); in bfs_rename()
232 if (new_bh && !new_inode) { in bfs_rename()
233 brelse(new_bh); in bfs_rename()
234 new_bh = NULL; in bfs_rename()
236 if (!new_bh) { in bfs_rename()
255 brelse(new_bh); in bfs_rename()
/Linux-v4.19/fs/ocfs2/
Drefcounttree.c566 struct buffer_head *new_bh = NULL; in ocfs2_create_refcount_tree() local
613 new_bh = sb_getblk(inode->i_sb, first_blkno); in ocfs2_create_refcount_tree()
614 if (!new_bh) { in ocfs2_create_refcount_tree()
619 ocfs2_set_new_buffer_uptodate(&new_tree->rf_ci, new_bh); in ocfs2_create_refcount_tree()
621 ret = ocfs2_journal_access_rb(handle, &new_tree->rf_ci, new_bh, in ocfs2_create_refcount_tree()
629 rb = (struct ocfs2_refcount_block *)new_bh->b_data; in ocfs2_create_refcount_tree()
644 ocfs2_journal_dirty(handle, new_bh); in ocfs2_create_refcount_tree()
691 brelse(new_bh); in ocfs2_create_refcount_tree()
1293 struct buffer_head *new_bh = NULL; in ocfs2_expand_inline_ref_root() local
1313 new_bh = sb_getblk(sb, blkno); in ocfs2_expand_inline_ref_root()
[all …]
Ddir.c82 struct buffer_head **new_bh);
2251 struct buffer_head *new_bh = NULL; in ocfs2_fill_new_dir_el() local
2258 data_ac, NULL, &new_bh); in ocfs2_fill_new_dir_el()
2264 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh); in ocfs2_fill_new_dir_el()
2266 status = ocfs2_journal_access_db(handle, INODE_CACHE(inode), new_bh, in ocfs2_fill_new_dir_el()
2272 memset(new_bh->b_data, 0, osb->sb->s_blocksize); in ocfs2_fill_new_dir_el()
2274 de = ocfs2_fill_initial_dirents(inode, parent, new_bh->b_data, size); in ocfs2_fill_new_dir_el()
2286 ocfs2_init_dir_trailer(inode, new_bh, size); in ocfs2_fill_new_dir_el()
2289 ocfs2_journal_dirty(handle, new_bh); in ocfs2_fill_new_dir_el()
2302 *ret_new_bh = new_bh; in ocfs2_fill_new_dir_el()
[all …]
Dxattr.h93 struct buffer_head *new_bh,
Dxattr.c2879 struct buffer_head *new_bh = NULL; in ocfs2_create_xattr_block() local
2897 new_bh = sb_getblk(inode->i_sb, first_blkno); in ocfs2_create_xattr_block()
2898 if (!new_bh) { in ocfs2_create_xattr_block()
2904 ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), new_bh); in ocfs2_create_xattr_block()
2907 new_bh, in ocfs2_create_xattr_block()
2915 xblk = (struct ocfs2_xattr_block *)new_bh->b_data; in ocfs2_create_xattr_block()
2934 ocfs2_journal_dirty(ctxt->handle, new_bh); in ocfs2_create_xattr_block()
2946 *ret_bh = new_bh; in ocfs2_create_xattr_block()
2947 new_bh = NULL; in ocfs2_create_xattr_block()
2950 brelse(new_bh); in ocfs2_create_xattr_block()
[all …]
Docfs2_trace.h2311 TP_PROTO(unsigned long long new_blkno, void *new_bh,
2313 TP_ARGS(new_blkno, new_bh, newdi_blkno),
2316 __field(void *, new_bh)
2321 __entry->new_bh = new_bh;
2324 TP_printk("%llu %p %llu", __entry->new_blkno, __entry->new_bh,
/Linux-v4.19/fs/ext4/
Dxattr.c1855 struct buffer_head *new_bh = NULL; in ext4_xattr_block_set() local
1985 new_bh = ext4_xattr_block_cache_find(inode, header(s->base), in ext4_xattr_block_set()
1987 if (new_bh) { in ext4_xattr_block_set()
1989 if (new_bh == bs->bh) in ext4_xattr_block_set()
1990 ea_bdebug(new_bh, "keeping"); in ext4_xattr_block_set()
2002 BUFFER_TRACE(new_bh, "get_write_access"); in ext4_xattr_block_set()
2004 new_bh); in ext4_xattr_block_set()
2007 lock_buffer(new_bh); in ext4_xattr_block_set()
2026 unlock_buffer(new_bh); in ext4_xattr_block_set()
2030 brelse(new_bh); in ext4_xattr_block_set()
[all …]
/Linux-v4.19/fs/affs/
Dfile.c121 struct buffer_head *new_bh; in affs_alloc_extblock() local
128 new_bh = affs_getzeroblk(sb, blocknr); in affs_alloc_extblock()
129 if (!new_bh) { in affs_alloc_extblock()
134 AFFS_HEAD(new_bh)->ptype = cpu_to_be32(T_LIST); in affs_alloc_extblock()
135 AFFS_HEAD(new_bh)->key = cpu_to_be32(blocknr); in affs_alloc_extblock()
136 AFFS_TAIL(sb, new_bh)->stype = cpu_to_be32(ST_FILE); in affs_alloc_extblock()
137 AFFS_TAIL(sb, new_bh)->parent = cpu_to_be32(inode->i_ino); in affs_alloc_extblock()
138 affs_fix_checksum(sb, new_bh); in affs_alloc_extblock()
140 mark_buffer_dirty_inode(new_bh, inode); in affs_alloc_extblock()
152 return new_bh; in affs_alloc_extblock()
/Linux-v4.19/fs/jbd2/
Djournal.c363 struct buffer_head *new_bh; in jbd2_journal_write_metadata_buffer() local
380 new_bh = alloc_buffer_head(GFP_NOFS|__GFP_NOFAIL); in jbd2_journal_write_metadata_buffer()
383 atomic_set(&new_bh->b_count, 1); in jbd2_journal_write_metadata_buffer()
430 brelse(new_bh); in jbd2_journal_write_metadata_buffer()
466 set_bh_page(new_bh, new_page, new_offset); in jbd2_journal_write_metadata_buffer()
467 new_bh->b_size = bh_in->b_size; in jbd2_journal_write_metadata_buffer()
468 new_bh->b_bdev = journal->j_dev; in jbd2_journal_write_metadata_buffer()
469 new_bh->b_blocknr = blocknr; in jbd2_journal_write_metadata_buffer()
470 new_bh->b_private = bh_in; in jbd2_journal_write_metadata_buffer()
471 set_buffer_mapped(new_bh); in jbd2_journal_write_metadata_buffer()
[all …]
/Linux-v4.19/fs/reiserfs/
Dfix_node.c831 struct buffer_head *new_bh, *Sh = PATH_H_PBUFFER(tb->tb_path, h); in get_empty_nodes() local
892 new_bh = sb_getblk(sb, *blocknr); in get_empty_nodes()
893 RFALSE(buffer_dirty(new_bh) || in get_empty_nodes()
894 buffer_journaled(new_bh) || in get_empty_nodes()
895 buffer_journal_dirty(new_bh), in get_empty_nodes()
897 new_bh); in get_empty_nodes()
903 set_buffer_journal_new(new_bh); in get_empty_nodes()
904 tb->FEB[tb->cur_blknum++] = new_bh; in get_empty_nodes()
/Linux-v4.19/fs/nilfs2/
Dsegment.c1533 struct buffer_head *new_bh) in nilfs_list_replace_buffer() argument
1535 BUG_ON(!list_empty(&new_bh->b_assoc_buffers)); in nilfs_list_replace_buffer()
1537 list_replace_init(&old_bh->b_assoc_buffers, &new_bh->b_assoc_buffers); in nilfs_list_replace_buffer()