Home
last modified time | relevance | path

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

/linux-4.19.296/fs/ntfs/
Daops.c349 struct buffer_head *tbh; in ntfs_read_block() local
353 tbh = arr[i]; in ntfs_read_block()
354 lock_buffer(tbh); in ntfs_read_block()
355 tbh->b_end_io = ntfs_end_buffer_async_read; in ntfs_read_block()
356 set_buffer_async_read(tbh); in ntfs_read_block()
360 tbh = arr[i]; in ntfs_read_block()
361 if (likely(!buffer_uptodate(tbh))) in ntfs_read_block()
362 submit_bh(REQ_OP_READ, 0, tbh); in ntfs_read_block()
364 ntfs_end_buffer_async_read(tbh, 1); in ntfs_read_block()
926 struct buffer_head *bh, *head, *tbh, *rec_start_bh; in ntfs_write_mst_block() local
[all …]
Dcompress.c665 struct buffer_head *tbh = bhs[i]; in ntfs_read_compressed_block() local
667 if (!trylock_buffer(tbh)) in ntfs_read_compressed_block()
669 if (unlikely(buffer_uptodate(tbh))) { in ntfs_read_compressed_block()
670 unlock_buffer(tbh); in ntfs_read_compressed_block()
673 get_bh(tbh); in ntfs_read_compressed_block()
674 tbh->b_end_io = end_buffer_read_sync; in ntfs_read_compressed_block()
675 submit_bh(REQ_OP_READ, 0, tbh); in ntfs_read_compressed_block()
680 struct buffer_head *tbh = bhs[i]; in ntfs_read_compressed_block() local
682 if (buffer_uptodate(tbh)) in ntfs_read_compressed_block()
684 wait_on_buffer(tbh); in ntfs_read_compressed_block()
[all …]
Dmft.c592 struct buffer_head *tbh = bhs[i_bhs]; in ntfs_sync_mft_mirror() local
594 if (!trylock_buffer(tbh)) in ntfs_sync_mft_mirror()
596 BUG_ON(!buffer_uptodate(tbh)); in ntfs_sync_mft_mirror()
597 clear_buffer_dirty(tbh); in ntfs_sync_mft_mirror()
598 get_bh(tbh); in ntfs_sync_mft_mirror()
599 tbh->b_end_io = end_buffer_write_sync; in ntfs_sync_mft_mirror()
600 submit_bh(REQ_OP_WRITE, 0, tbh); in ntfs_sync_mft_mirror()
604 struct buffer_head *tbh = bhs[i_bhs]; in ntfs_sync_mft_mirror() local
606 wait_on_buffer(tbh); in ntfs_sync_mft_mirror()
607 if (unlikely(!buffer_uptodate(tbh))) { in ntfs_sync_mft_mirror()
[all …]
/linux-4.19.296/fs/reiserfs/
Djournal.c980 struct buffer_head *tbh = NULL; in flush_commit_list() local
1058 tbh = journal_find_get_block(s, bn); in flush_commit_list()
1059 if (tbh) { in flush_commit_list()
1060 if (buffer_dirty(tbh)) { in flush_commit_list()
1062 ll_rw_block(REQ_OP_WRITE, 0, 1, &tbh); in flush_commit_list()
1065 put_bh(tbh) ; in flush_commit_list()
1073 tbh = journal_find_get_block(s, bn); in flush_commit_list()
1076 __wait_on_buffer(tbh); in flush_commit_list()
1083 if (buffer_dirty(tbh)) { in flush_commit_list()
1085 sync_dirty_buffer(tbh); in flush_commit_list()
[all …]