/openbmc/linux/fs/nfs/ |
H A D | pnfs_nfs.c | 105 p->nbuckets = n; in pnfs_alloc_commit_array() 260 unsigned int nbuckets, in pnfs_bucket_scan_array() argument 266 for (i = 0; i < nbuckets && max != 0; i++) { in pnfs_bucket_scan_array() 289 array->nbuckets, max); in pnfs_generic_scan_commit_lists() 305 unsigned int nbuckets, in pnfs_bucket_recover_commit_reqs() argument 314 for (i = 0, b = buckets; i < nbuckets; i++, b++) { in pnfs_bucket_recover_commit_reqs() 344 array->nbuckets, in pnfs_generic_recover_commit_reqs() 393 array->nbuckets, folio); in pnfs_generic_search_commit_reqs() 431 unsigned int nbuckets, in pnfs_generic_retry_commit() argument 453 unsigned int nbuckets, in pnfs_bucket_alloc_ds_commits() argument [all …]
|
H A D | internal.h | 567 unsigned int nbuckets) in pnfs_bucket_clear_pnfs_ds_commit_verifiers() argument 571 for (i = 0; i < nbuckets; i++) in pnfs_bucket_clear_pnfs_ds_commit_verifiers() 582 array->nbuckets); in nfs_clear_pnfs_ds_commit_verifiers()
|
/openbmc/linux/fs/omfs/ |
H A D | dir.c | 27 int nbuckets = (dir->i_size - OMFS_DIR_START)/8; in omfs_get_bucket() local 28 int bucket = omfs_hash(name, namelen, nbuckets); in omfs_get_bucket() 218 int nbuckets = (inode->i_size - OMFS_DIR_START) / 8; in omfs_dir_is_empty() local 230 for (i = 0; i < nbuckets; i++, ptr++) in omfs_dir_is_empty() 414 int nbuckets; in omfs_readdir() local 425 nbuckets = (dir->i_size - OMFS_DIR_START) / 8; in omfs_readdir() 437 for (; hchain < nbuckets; hchain++) { in omfs_readdir()
|
/openbmc/linux/kernel/bpf/ |
H A D | bpf_local_storage.c | 798 u32 nbuckets; in bpf_local_storage_map_alloc() local 806 nbuckets = roundup_pow_of_two(num_possible_cpus()); in bpf_local_storage_map_alloc() 808 nbuckets = max_t(u32, 2, nbuckets); in bpf_local_storage_map_alloc() 809 smap->bucket_log = ilog2(nbuckets); in bpf_local_storage_map_alloc() 811 smap->buckets = bpf_map_kvcalloc(&smap->map, nbuckets, in bpf_local_storage_map_alloc() 818 for (i = 0; i < nbuckets; i++) { in bpf_local_storage_map_alloc()
|
/openbmc/linux/drivers/md/bcache/ |
H A D | alloc.c | 90 unsigned long next = c->nbuckets * c->cache->sb.bucket_size / 1024; in bch_rescale_priorities() 223 ca->fifo_last_bucket >= ca->sb.nbuckets) in invalidate_buckets_fifo() 231 if (++checked >= ca->sb.nbuckets) { in invalidate_buckets_fifo() 249 n %= (size_t) (ca->sb.nbuckets - ca->sb.first_bucket); in invalidate_buckets_random() 257 if (++checked >= ca->sb.nbuckets / 2) { in invalidate_buckets_random() 474 if (ca->set->avail_nbuckets < ca->set->nbuckets) { in __bch_bucket_free()
|
H A D | sysfs.c | 68 read_attribute(nbuckets); 1043 sysfs_print(nbuckets, ca->sb.nbuckets); in SHOW() 1062 size_t n = ca->sb.nbuckets, i; in SHOW() 1070 ca->sb.nbuckets)); in SHOW() 1122 unused * 100 / (size_t) ca->sb.nbuckets, in SHOW() 1123 available * 100 / (size_t) ca->sb.nbuckets, in SHOW() 1124 dirty * 100 / (size_t) ca->sb.nbuckets, in SHOW() 1125 meta * 100 / (size_t) ca->sb.nbuckets, sum, in SHOW()
|
H A D | bcache_ondisk.h | 189 __le64 nbuckets; /* device size */ member 249 __u64 nbuckets; /* device size */ member
|
H A D | super.c | 98 sb->nbuckets = le64_to_cpu(s->nbuckets); in read_super_common() 109 if (sb->nbuckets > LONG_MAX) in read_super_common() 113 if (sb->nbuckets < 1 << 7) in read_super_common() 134 sb->bucket_size * sb->nbuckets) in read_super_common() 153 if (sb->first_bucket + sb->keys > sb->nbuckets) in read_super_common() 649 b < ca->buckets + ca->sb.nbuckets && d < end; in bch_prio_write() 700 b < ca->buckets + ca->sb.nbuckets; in prio_read() 1982 c->nbuckets = ca->sb.nbuckets; in run_cache_set() 2070 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7, in run_cache_set() 2252 free = roundup_pow_of_two(ca->sb.nbuckets) >> 10; in cache_alloc() [all …]
|
H A D | bcache.h | 631 size_t nbuckets; member 793 DIV_ROUND_UP((size_t) (ca)->sb.nbuckets, prios_per_bucket(ca)) 890 b < (ca)->buckets + (ca)->sb.nbuckets; b++)
|
H A D | extents.c | 59 bucket >= ca->sb.nbuckets) in __ptr_invalid() 82 if (bucket >= ca->sb.nbuckets) in bch_ptr_status() 139 if (n >= b->c->cache->sb.first_bucket && n < b->c->cache->sb.nbuckets) in bch_bkey_dump()
|
H A D | btree.h | 197 atomic_set(&c->sectors_to_gc, c->cache->sb.bucket_size * c->nbuckets / 16); in set_gc_sectors()
|
H A D | writeback.c | 38 uint64_t cache_sectors = c->nbuckets * c->cache->sb.bucket_size - in __calc_target_rate() 103 int64_t dirty_buckets = c->nbuckets - c->avail_nbuckets; in __update_writeback_rate()
|
H A D | btree.c | 1299 stats->in_use = (c->nbuckets - c->avail_nbuckets) * 100 / c->nbuckets; in bch_update_bucket_in_use()
|
/openbmc/linux/lib/ |
H A D | rhashtable.c | 148 size_t nbuckets, in nested_bucket_table_alloc() argument 155 if (nbuckets < (1 << (shift + 1))) in nested_bucket_table_alloc() 170 tbl->nest = (ilog2(nbuckets) - 1) % shift + 1; in nested_bucket_table_alloc() 176 size_t nbuckets, in bucket_table_alloc() argument 184 tbl = kvzalloc(struct_size(tbl, buckets, nbuckets), gfp); in bucket_table_alloc() 186 size = nbuckets; in bucket_table_alloc() 189 tbl = nested_bucket_table_alloc(ht, nbuckets, gfp); in bucket_table_alloc() 190 nbuckets = 0; in bucket_table_alloc() 205 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-block-bcache | 124 What: /sys/block/<disk>/bcache/nbuckets
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | bcache.rst | 224 nbuckets: 106874 627 Size of the freelist as a percentage of nbuckets. Can be written to to 641 nbuckets
|
/openbmc/linux/include/linux/ |
H A D | nfs_xdr.h | 1306 unsigned int nbuckets; member
|