Home
last modified time | relevance | path

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

/linux/fs/btrfs/
H A Draid-stripe-tree.c73 u64 found_start; in btrfs_delete_raid_extent() local
114 found_start = key.objectid; in btrfs_delete_raid_extent()
115 found_end = found_start + key.offset; in btrfs_delete_raid_extent()
128 if (found_start > start) { in btrfs_delete_raid_extent()
144 found_start = key.objectid; in btrfs_delete_raid_extent()
145 found_end = found_start + key.offset; in btrfs_delete_raid_extent()
146 ASSERT(found_start <= start); in btrfs_delete_raid_extent()
157 found_start, found_end); in btrfs_delete_raid_extent()
170 if (found_start < start && found_end > end) { in btrfs_delete_raid_extent()
172 u64 diff_start = start - found_start; in btrfs_delete_raid_extent()
[all...]
H A Dfree-space-tree.c525 u64 found_start, found_end; in btrfs_free_space_test_bit() local
532 found_start = key.objectid; in btrfs_free_space_test_bit()
534 ASSERT(offset >= found_start && offset < found_end); in btrfs_free_space_test_bit()
537 i = div_u64(offset - found_start, in btrfs_free_space_test_bit()
551 u64 found_start, found_end; in free_space_modify_bits() local
558 found_start = key.objectid; in free_space_modify_bits()
560 ASSERT(*start >= found_start && *start < found_end); in free_space_modify_bits()
561 ASSERT(end > found_start); in free_space_modify_bits()
567 first = (*start - found_start) >> fs_info->sectorsize_bits; in free_space_modify_bits()
568 last = (end - found_start) >> fs_inf in free_space_modify_bits()
723 u64 found_start, found_end; remove_free_space_extent() local
884 u64 found_start, found_end; add_free_space_extent() local
[all...]
H A Dextent_io.c1276 u64 *found_start, u32 *found_len) in find_next_delalloc_bitmap() argument
1292 *found_start = folio_start + (first_set << fs_info->sectorsize_bits); in find_next_delalloc_bitmap()
1380 u64 found_start; in writepage_delalloc() local
1390 found_start = page_start; in writepage_delalloc()
1391 found_len = last_delalloc_end + 1 - found_start; in writepage_delalloc()
1395 delalloc_start, &found_start, &found_len); in writepage_delalloc()
1404 if (found_start + found_len >= page_end) in writepage_delalloc()
1405 found_len = last_delalloc_end + 1 - found_start; in writepage_delalloc()
1413 last_finished_delalloc_end = found_start; in writepage_delalloc()
1416 found_start, in writepage_delalloc()
[all...]
H A Ddev-replace.c791 u64 found_start; in btrfs_set_target_alloc_state() local
798 &found_start, &found_end, in btrfs_set_target_alloc_state()
800 ret = btrfs_set_extent_bit(&tgtdev->alloc_state, found_start, in btrfs_set_target_alloc_state()
H A Ddisk-io.c263 u64 found_start = btrfs_header_bytenr(eb); in btree_csum_one_bio() local
284 if (WARN_ON_ONCE(found_start != eb->start)) in btree_csum_one_bio()
362 u64 found_start; in btrfs_validate_extent_buffer() local
372 found_start = btrfs_header_bytenr(eb); in btrfs_validate_extent_buffer()
373 if (found_start != eb->start) { in btrfs_validate_extent_buffer()
376 eb->read_mirror, eb->start, found_start); in btrfs_validate_extent_buffer()
4166 u64 found_start; in warn_about_uncommitted_trans() local
4171 &found_start, &found_end, in warn_about_uncommitted_trans()
4173 dirty_bytes += found_end + 1 - found_start; in warn_about_uncommitted_trans()
H A Dfile.c3659 u64 found_start; in find_desired_extent() local
3672 &found_start); in find_desired_extent()
3674 start = found_start; in find_desired_extent()
3700 u64 found_start; in find_desired_extent() local
3713 &found_start); in find_desired_extent()
3715 start = found_start; in find_desired_extent()
/linux/include/trace/events/
H A Dbtrfs.h2480 u64 found_start, u64 found_end),
2482 TP_ARGS(fs_info, start, end, found_start, found_end),
2487 __field( u64, found_start )
2494 __entry->found_start = found_start;
2498 TP_printk_btrfs("start=%llu end=%llu found_start=%llu found_end=%llu",
2499 __entry->start, __entry->end, __entry->found_start,