Lines Matching refs:bh
53 struct buffer_head *bh; in set_run() local
57 bh = sb_bread(sb, clus_to_blk(sbi, sbi->s_bitmap_ino) + map); in set_run()
58 if (!bh) in set_run()
66 mark_buffer_dirty(bh); in set_run()
67 brelse(bh); in set_run()
68 bh = sb_bread(sb, in set_run()
70 if (!bh) in set_run()
75 set_bit(bit, (unsigned long *)bh->b_data); in set_run()
78 clear_bit(bit, (unsigned long *)bh->b_data); in set_run()
81 mark_buffer_dirty(bh); in set_run()
82 brelse(bh); in set_run()
93 struct buffer_head *bh; in omfs_allocate_block() local
109 bh = sb_bread(sb, clus_to_blk(sbi, sbi->s_bitmap_ino) + map); in omfs_allocate_block()
110 if (!bh) in omfs_allocate_block()
113 set_bit(bit, (unsigned long *)bh->b_data); in omfs_allocate_block()
114 mark_buffer_dirty(bh); in omfs_allocate_block()
115 brelse(bh); in omfs_allocate_block()