Home
last modified time | relevance | path

Searched refs:bh2 (Results 1 – 16 of 16) sorted by relevance

/fs/qnx6/
Dsuper_mmi.c37 struct buffer_head *bh1, *bh2 = NULL; in qnx6_mmi_fill_super() local
83 bh2 = sb_bread(s, offset); in qnx6_mmi_fill_super()
84 if (!bh2) { in qnx6_mmi_fill_super()
88 sb2 = (struct qnx6_mmi_super_block *)bh2->b_data; in qnx6_mmi_fill_super()
97 != crc32_be(0, (char *)(bh2->b_data + 8), 504)) { in qnx6_mmi_fill_super()
119 brelse(bh2); in qnx6_mmi_fill_super()
127 memcpy(bh2->b_data, qsb, sizeof(struct qnx6_super_block)); in qnx6_mmi_fill_super()
129 sbi->sb_buf = bh2; in qnx6_mmi_fill_super()
130 sbi->sb = (struct qnx6_super_block *)bh2->b_data; in qnx6_mmi_fill_super()
145 if (bh2 != NULL) in qnx6_mmi_fill_super()
[all …]
Dinode.c299 struct buffer_head *bh1 = NULL, *bh2 = NULL; in qnx6_fill_super() local
383 bh2 = sb_bread(s, offset); in qnx6_fill_super()
384 if (!bh2) { in qnx6_fill_super()
388 sb2 = (struct qnx6_super_block *)bh2->b_data; in qnx6_fill_super()
397 crc32_be(0, (char *)(bh2->b_data + 8), 504)) { in qnx6_fill_super()
407 brelse(bh2); in qnx6_fill_super()
411 sbi->sb_buf = bh2; in qnx6_fill_super()
412 sbi->sb = (struct qnx6_super_block *)bh2->b_data; in qnx6_fill_super()
474 if (bh2) in qnx6_fill_super()
475 brelse(bh2); in qnx6_fill_super()
/fs/jbd2/
Drevoke.c353 struct buffer_head *bh2; in jbd2_journal_revoke() local
357 bh2 = __find_get_block(bdev, blocknr, journal->j_blocksize); in jbd2_journal_revoke()
358 if (bh2) { in jbd2_journal_revoke()
360 if (bh2 != bh && buffer_revokevalid(bh2)) in jbd2_journal_revoke()
367 J_ASSERT_BH(bh2, buffer_revoked(bh2)); in jbd2_journal_revoke()
368 put_bh(bh2); in jbd2_journal_revoke()
461 struct buffer_head *bh2; in jbd2_journal_cancel_revoke() local
462 bh2 = __find_get_block(bh->b_bdev, bh->b_blocknr, bh->b_size); in jbd2_journal_cancel_revoke()
463 if (bh2) { in jbd2_journal_cancel_revoke()
464 if (bh2 != bh) in jbd2_journal_cancel_revoke()
[all …]
/fs/sysv/
Dsuper.c50 struct buffer_head *bh2 = sbi->s_bh2; in detected_xenix() local
54 if (bh1 != bh2) in detected_xenix()
59 sbd2 = (struct xenix_super_block *) (bh2->b_data - 512); in detected_xenix()
82 struct buffer_head *bh2 = sbi->s_bh2; in detected_sysv4() local
84 if (bh1 == bh2) in detected_sysv4()
87 sbd = (struct sysv4_super_block *) bh2->b_data; in detected_sysv4()
110 struct buffer_head *bh2 = sbi->s_bh2; in detected_sysv2() local
112 if (bh1 == bh2) in detected_sysv2()
115 sbd = (struct sysv2_super_block *) bh2->b_data; in detected_sysv2()
159 struct buffer_head *bh2 = sbi->s_bh2; in detected_v7() local
[all …]
/fs/omfs/
Dinode.c104 struct buffer_head *bh, *bh2; in __omfs_write_inode() local
150 bh2 = omfs_bread(inode->i_sb, inode->i_ino + i); in __omfs_write_inode()
151 if (!bh2) in __omfs_write_inode()
154 memcpy(bh2->b_data, bh->b_data, bh->b_size); in __omfs_write_inode()
155 mark_buffer_dirty(bh2); in __omfs_write_inode()
157 sync_dirty_buffer(bh2); in __omfs_write_inode()
158 if (buffer_req(bh2) && !buffer_uptodate(bh2)) in __omfs_write_inode()
161 brelse(bh2); in __omfs_write_inode()
429 struct buffer_head *bh, *bh2; in omfs_fill_super() local
508 bh2 = omfs_bread(sb, be64_to_cpu(omfs_sb->s_root_block)); in omfs_fill_super()
[all …]
Ddir.c163 struct buffer_head *bh, *bh2; in omfs_delete_entry() local
177 bh2 = omfs_scan_list(dir, block, name, namelen, &prev); in omfs_delete_entry()
178 if (IS_ERR(bh2)) { in omfs_delete_entry()
179 err = PTR_ERR(bh2); in omfs_delete_entry()
183 oi = (struct omfs_inode *) bh2->b_data; in omfs_delete_entry()
185 brelse(bh2); in omfs_delete_entry()
/fs/jfs/
Dresize.c85 struct buffer_head *bh, *bh2; in jfs_extendfs() local
521 bh2 = sb_bread(sb, SUPER2_OFF >> sb->s_blocksize_bits); in jfs_extendfs()
522 if (bh2) { in jfs_extendfs()
523 j_sb2 = (struct jfs_superblock *)bh2->b_data; in jfs_extendfs()
527 sync_dirty_buffer(bh2); in jfs_extendfs()
528 brelse(bh2); in jfs_extendfs()
/fs/ext4/
Dnamei.c1688 struct buffer_head *bh2; in do_split() local
1702 bh2 = ext4_append(handle, dir, &newblock); in do_split()
1703 if (IS_ERR(bh2)) { in do_split()
1706 return (struct ext4_dir_entry_2 *) bh2; in do_split()
1719 data2 = bh2->b_data; in do_split()
1770 swap(*bh, bh2); in do_split()
1774 err = ext4_handle_dirty_dirent_node(handle, dir, bh2); in do_split()
1780 brelse(bh2); in do_split()
1786 brelse(bh2); in do_split()
1916 struct buffer_head *bh2; in make_indexed_dir() local
[all …]
Dialloc.c218 struct buffer_head *bh2; in ext4_free_inode() local
289 gdp = ext4_get_group_desc(sb, block_group, &bh2); in ext4_free_inode()
291 BUFFER_TRACE(bh2, "get_write_access"); in ext4_free_inode()
292 fatal = ext4_journal_get_write_access(handle, bh2); in ext4_free_inode()
321 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata"); in ext4_free_inode()
322 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2); in ext4_free_inode()
/fs/hpfs/
Danode.c67 struct buffer_head *bh, *bh1, *bh2; in hpfs_add_sector_to_btree() local
144 } else if (!(ranode = hpfs_alloc_anode(s, /*a*/0, &ra, &bh2))) { in hpfs_add_sector_to_btree()
183 brelse(bh2); in hpfs_add_sector_to_btree()
228 brelse(bh2); in hpfs_add_sector_to_btree()
234 brelse(bh2); in hpfs_add_sector_to_btree()
263 mark_buffer_dirty(bh2); in hpfs_add_sector_to_btree()
264 brelse(bh2); in hpfs_add_sector_to_btree()
Dea.c320 struct buffer_head *bh1, *bh2; in hpfs_set_ea() local
326 if (!(b2 = hpfs_get_sector(s, new_sec + i, &bh2))) { in hpfs_set_ea()
333 mark_buffer_dirty(bh2); in hpfs_set_ea()
334 brelse(bh2); in hpfs_set_ea()
Dsuper.c546 struct buffer_head *bh0, *bh1, *bh2; in hpfs_fill_super() local
598 if (!(spareblock = hpfs_map_sector(s, 17, &bh2, 0))) goto bail3; in hpfs_fill_super()
672 mark_buffer_dirty(bh2); in hpfs_fill_super()
710 brelse(bh2); in hpfs_fill_super()
751 bail4: brelse(bh2); in hpfs_fill_super()
/fs/ext2/
Dialloc.c435 struct buffer_head *bh2; in ext2_new_inode() local
467 gdp = ext2_get_group_desc(sb, group, &bh2); in ext2_new_inode()
549 mark_buffer_dirty(bh2); in ext2_new_inode()
Dballoc.c480 struct buffer_head * bh2; in ext2_free_blocks() local
521 desc = ext2_get_group_desc (sb, block_group, &bh2); in ext2_free_blocks()
552 group_adjust_blocks(sb, block_group, desc, bh2, group_freed); in ext2_free_blocks()
/fs/ocfs2/
Dnamei.c102 struct buffer_head **bh2,
1116 struct buffer_head **bh2, in ocfs2_double_lock() argument
1130 if (*bh2) in ocfs2_double_lock()
1131 *bh2 = NULL; in ocfs2_double_lock()
1154 swap(bh2, bh1); in ocfs2_double_lock()
1158 status = ocfs2_inode_lock_nested(inode2, bh2, 1, in ocfs2_double_lock()
1177 brelse(*bh2); in ocfs2_double_lock()
1178 *bh2 = NULL; in ocfs2_double_lock()
/fs/
Dbuffer.c1291 struct buffer_head *bh2 = in bh_lru_install() local
1294 if (bh2 == bh) { in bh_lru_install()
1295 __brelse(bh2); in bh_lru_install()
1299 evictee = bh2; in bh_lru_install()
1301 bhs[out++] = bh2; in bh_lru_install()