Lines Matching refs:bh
52 struct buffer_head *bh; in set_run() local
56 bh = sb_bread(sb, clus_to_blk(sbi, sbi->s_bitmap_ino) + map); in set_run()
57 if (!bh) in set_run()
65 mark_buffer_dirty(bh); in set_run()
66 brelse(bh); in set_run()
67 bh = sb_bread(sb, in set_run()
69 if (!bh) in set_run()
74 set_bit(bit, (unsigned long *)bh->b_data); in set_run()
77 clear_bit(bit, (unsigned long *)bh->b_data); in set_run()
80 mark_buffer_dirty(bh); in set_run()
81 brelse(bh); in set_run()
92 struct buffer_head *bh; in omfs_allocate_block() local
108 bh = sb_bread(sb, clus_to_blk(sbi, sbi->s_bitmap_ino) + map); in omfs_allocate_block()
109 if (!bh) in omfs_allocate_block()
112 set_bit(bit, (unsigned long *)bh->b_data); in omfs_allocate_block()
113 mark_buffer_dirty(bh); in omfs_allocate_block()
114 brelse(bh); in omfs_allocate_block()