Home
last modified time | relevance | path

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

/fs/ext4/
Dinline.c1213 struct buffer_head *data_bh = NULL; in ext4_convert_inline_data_nolock() local
1255 data_bh = sb_getblk(inode->i_sb, map.m_pblk); in ext4_convert_inline_data_nolock()
1256 if (!data_bh) { in ext4_convert_inline_data_nolock()
1261 lock_buffer(data_bh); in ext4_convert_inline_data_nolock()
1262 error = ext4_journal_get_create_access(handle, data_bh); in ext4_convert_inline_data_nolock()
1264 unlock_buffer(data_bh); in ext4_convert_inline_data_nolock()
1268 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize); in ext4_convert_inline_data_nolock()
1271 memcpy(data_bh->b_data, buf, inline_size); in ext4_convert_inline_data_nolock()
1272 set_buffer_uptodate(data_bh); in ext4_convert_inline_data_nolock()
1273 unlock_buffer(data_bh); in ext4_convert_inline_data_nolock()
[all …]