| /fs/xfs/ |
| A D | xfs_fsmap.c | 521 info->high.rm_startblock = -1U; in __xfs_getfsmap_datadev() 522 info->high.rm_owner = ULLONG_MAX; in __xfs_getfsmap_datadev() 524 info->high.rm_blockcount = 0; in __xfs_getfsmap_datadev() 561 &info->high); in __xfs_getfsmap_datadev() 962 info->high.rm_startblock = -1U; in xfs_getfsmap_rtdev_rmapbt() 963 info->high.rm_owner = ULLONG_MAX; in xfs_getfsmap_rtdev_rmapbt() 965 info->high.rm_blockcount = 0; in xfs_getfsmap_rtdev_rmapbt() 978 info->high.rm_startblock = in xfs_getfsmap_rtdev_rmapbt() 980 info->high.rm_offset = in xfs_getfsmap_rtdev_rmapbt() 999 &info->high); in xfs_getfsmap_rtdev_rmapbt() [all …]
|
| A D | xfs_discard.c | 573 xfs_rtxnum_t high, in xfs_trim_rtextents() argument 593 error = xfs_rtalloc_query_range(rtg, tp, low, high, in xfs_trim_rtextents() 615 } while (!xfs_trim_should_stop() && low <= high); in xfs_trim_rtextents() 690 xfs_rtxnum_t high, in xfs_trim_rtgroup_extents() argument 719 error = xfs_rtalloc_query_range(rtg, tp, low, high, in xfs_trim_rtgroup_extents() 747 } while (!xfs_trim_should_stop() && low <= high); in xfs_trim_rtgroup_extents()
|
| A D | xfs_log_priv.h | 599 xfs_lsn_t high, in xlog_lsn_sub() argument 602 uint32_t hi_cycle = CYCLE_LSN(high); in xlog_lsn_sub() 603 uint32_t hi_block = BLOCK_LSN(high); in xlog_lsn_sub()
|
| A D | xfs_rtalloc.c | 46 int high, /* high log2 extent size */ in xfs_rtany_summary() argument 57 high = min(high, rsum_cache[bbno] - 1); in xfs_rtany_summary() 58 if (low > high) { in xfs_rtany_summary() 67 for (log = high; log >= low; log--) { in xfs_rtany_summary()
|
| A D | Kconfig | 9 XFS is a high performance journaling filesystem which originated 167 This may slow down scrub slightly due to the use of high precision
|
| /fs/xfs/scrub/ |
| A D | refcount.c | 297 struct xfs_rmap_irec high; in xchk_refcountbt_xref_rmap() local 308 memset(&high, 0xFF, sizeof(high)); in xchk_refcountbt_xref_rmap() 309 high.rm_startblock = irec->rc_startblock + irec->rc_blockcount - 1; in xchk_refcountbt_xref_rmap() 312 error = xfs_rmap_query_range(sc->sa.rmap_cur, &low, &high, in xchk_refcountbt_xref_rmap() 385 struct xfs_rmap_irec high; in xchk_refcountbt_xref_gaps() local 395 memset(&high, 0xFF, sizeof(high)); in xchk_refcountbt_xref_gaps() 396 high.rm_startblock = bno - 1; in xchk_refcountbt_xref_gaps() 398 error = xfs_rmap_query_range(sc->sa.rmap_cur, &low, &high, in xchk_refcountbt_xref_gaps()
|
| A D | rtrefcount.c | 311 struct xfs_rmap_irec high; in xchk_rtrefcountbt_xref_rmap() local 322 memset(&high, 0xFF, sizeof(high)); in xchk_rtrefcountbt_xref_rmap() 323 high.rm_startblock = irec->rc_startblock + irec->rc_blockcount - 1; in xchk_rtrefcountbt_xref_rmap() 326 error = xfs_rmap_query_range(sc->sr.rmap_cur, &low, &high, in xchk_rtrefcountbt_xref_rmap() 435 struct xfs_rmap_irec high; in xchk_rtrefcountbt_xref_gaps() local 445 memset(&high, 0xFF, sizeof(high)); in xchk_rtrefcountbt_xref_gaps() 446 high.rm_startblock = bno - 1; in xchk_rtrefcountbt_xref_gaps() 448 error = xfs_rmap_query_range(sc->sr.rmap_cur, &low, &high, in xchk_rtrefcountbt_xref_gaps()
|
| A D | rtrmap_repair.c | 494 struct xfs_refcount_irec high = { in xrep_rtrmap_find_refcount_rmaps() local 507 error = xfs_refcount_query_range(sc->sr.refc_cur, &low, &high, in xrep_rtrmap_find_refcount_rmaps()
|
| /fs/xfs/libxfs/ |
| A D | xfs_rmap.c | 397 struct xfs_rmap_irec high; member 448 info.high.rm_owner = owner; in xfs_rmap_find_left_neighbor() 455 info.high.rm_offset = 0; in xfs_rmap_find_left_neighbor() 456 info.high.rm_flags = flags; in xfs_rmap_find_left_neighbor() 486 error = xfs_rmap_query_range(cur, &info.high, &info.high, in xfs_rmap_find_left_neighbor() 544 info.high.rm_owner = owner; in xfs_rmap_lookup_le_range() 548 info.high.rm_offset = 0; in xfs_rmap_lookup_le_range() 549 info.high.rm_flags = flags; in xfs_rmap_lookup_le_range() 579 error = xfs_rmap_query_range(cur, &info.high, &info.high, in xfs_rmap_lookup_le_range() 2924 memset(&high, 0xFF, sizeof(high)); in xfs_rmap_has_records() [all …]
|
| A D | xfs_dir2_block.c | 371 int high; /* high index for binary srch */ in xfs_dir2_block_addname() local 459 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) { in xfs_dir2_block_addname() 460 mid = (low + high) >> 1; in xfs_dir2_block_addname() 466 high = mid - 1; in xfs_dir2_block_addname() 696 int high; /* binary search high index */ in xfs_dir2_block_lookup_int() local 717 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) { in xfs_dir2_block_lookup_int() 718 ASSERT(low <= high); in xfs_dir2_block_lookup_int() 719 mid = (low + high) >> 1; in xfs_dir2_block_lookup_int() 725 high = mid - 1; in xfs_dir2_block_lookup_int() 726 if (low > high) { in xfs_dir2_block_lookup_int()
|
| A D | xfs_refcount.c | 2069 union xfs_btree_irec high = { in xfs_refcount_recover_cow_leftovers() local 2115 error = xfs_btree_query_range(cur, &low, &high, in xfs_refcount_recover_cow_leftovers() 2179 union xfs_btree_irec high; in xfs_refcount_has_records() local 2183 memset(&high, 0xFF, sizeof(high)); in xfs_refcount_has_records() 2184 high.rc.rc_startblock = bno + len - 1; in xfs_refcount_has_records() 2185 low.rc.rc_domain = high.rc.rc_domain = domain; in xfs_refcount_has_records() 2187 return xfs_btree_has_records(cur, &low, &high, NULL, outcome); in xfs_refcount_has_records()
|
| A D | xfs_btree.c | 2031 int high; /* high entry number */ in xfs_btree_lookup() local 2036 high = xfs_btree_get_numrecs(block); in xfs_btree_lookup() 2037 if (!high) { in xfs_btree_lookup() 2054 while (low <= high) { in xfs_btree_lookup() 2061 keyno = (low + high) >> 1; in xfs_btree_lookup() 2078 high = keyno - 1; in xfs_btree_lookup() 2167 union xfs_btree_key *high; in xfs_btree_get_leaf_keys() local 2183 high = xfs_btree_high_key_from_key(cur, key); in xfs_btree_get_leaf_keys() 2197 union xfs_btree_key *high; in xfs_btree_get_node_keys() local 2211 high = xfs_btree_high_key_from_key(cur, key); in xfs_btree_get_node_keys() [all …]
|
| A D | xfs_dir2_leaf.c | 1606 int high; /* high leaf index */ in xfs_dir2_leaf_search_hash() local 1618 for (lep = leafhdr.ents, low = 0, high = leafhdr.count - 1, in xfs_dir2_leaf_search_hash() 1620 low <= high; ) { in xfs_dir2_leaf_search_hash() 1621 mid = (low + high) >> 1; in xfs_dir2_leaf_search_hash() 1627 high = mid - 1; in xfs_dir2_leaf_search_hash()
|
| /fs/smb/client/ |
| A D | compress.c | 100 const size_t low = 64, high = 200, threshold = slen * 90 / 100; in calc_byte_distribution() local 110 for (; i < high && bkt[i].count > 0; i++) { in calc_byte_distribution() 119 if (i >= high) in calc_byte_distribution()
|
| /fs/adfs/ |
| A D | inode.c | 177 unsigned int high, low; in adfs_adfs2unix_time() local 186 high = ADFS_I(inode)->loadaddr & 0xFF; /* top 8 bits of timestamp */ in adfs_adfs2unix_time() 192 nsec = (((s64) high << 32) | (s64) low) * 10000000; /* cs to ns */ in adfs_adfs2unix_time()
|
| /fs/erofs/ |
| A D | Kconfig | 22 scenarios which need high-performance read-only solutions, e.g. 23 smartphones with Android OS, LiveCDs and high-density hosts with 27 improve storage density and maintain relatively high compression 189 bool "EROFS high priority per-CPU kthread workers"
|
| /fs/orangefs/ |
| A D | Kconfig | 6 Orange is a parallel file system designed for use on high end
|
| /fs/isofs/ |
| A D | rock.c | 393 int high, low; in parse_rock_ridge_inode_internal() local 394 high = isonum_733(rr->u.PN.dev_high); in parse_rock_ridge_inode_internal() 406 if ((low & ~0xff) && high == 0) { in parse_rock_ridge_inode_internal() 411 MKDEV(high, low); in parse_rock_ridge_inode_internal()
|
| /fs/dlm/ |
| A D | lock.c | 2517 return max_t(int, high, hi); in grant_pending_convert() 2531 high = max_t(int, lkb->lkb_rqmode, high); in grant_pending_wait() 2537 return high; in grant_pending_wait() 2553 if (gr->lkb_highbast < high && in lock_requires_bast() 2562 int high = DLM_LOCK_IV; in grant_pending_locks() local 2571 high = grant_pending_convert(r, high, &cw, count); in grant_pending_locks() 2572 high = grant_pending_wait(r, high, &cw, count); in grant_pending_locks() 2574 if (high == DLM_LOCK_IV) in grant_pending_locks() 2585 if (cw && high == DLM_LOCK_PR && in grant_pending_locks() 2589 queue_bast(r, lkb, high); in grant_pending_locks() [all …]
|
| /fs/ceph/ |
| A D | Kconfig | 15 scalable file system designed to provide high performance,
|
| /fs/ntfs3/ |
| A D | namei.c | 29 e->ref.high = fname->home.high = 0; in fill_name_de()
|
| A D | ntfs.h | 177 __le16 high; // The high part of the number. member 186 return le32_to_cpu(ref->low) | ((u64)le16_to_cpu(ref->high) << 32); in ino_get() 305 return !r->low && !r->high && !r->seq; in is_rec_base()
|
| A D | ntfs_fs.h | 778 return le16_to_cpu(ref->high) == (mi->rno >> 32); in mi_is_ref() 780 return !ref->high; in mi_is_ref() 788 ref->high = cpu_to_le16(mi->rno >> 32); in mi_get_ref() 790 ref->high = 0; in mi_get_ref()
|
| /fs/netfs/ |
| A D | Kconfig | 7 helpers for high-level buffered I/O, abstracting out read
|
| /fs/bcachefs/ |
| A D | Kconfig | 104 normally want these enabled because they happen at very high rates.
|