Home
last modified time | relevance | path

Searched refs:nbuckets (Results 1 – 25 of 33) sorted by relevance

12

/OK3568_Linux_fs/kernel/fs/nfs/
H A Dpnfs_nfs.c105 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()
356 unsigned int nbuckets, struct page *page) in pnfs_bucket_search_commit_reqs() argument
364 for (i = 0, b = buckets; i < nbuckets; i++, b++) { in pnfs_bucket_search_commit_reqs()
393 array->nbuckets, page); in pnfs_generic_search_commit_reqs()
[all …]
H A Dinternal.h546 unsigned int nbuckets) in pnfs_bucket_clear_pnfs_ds_commit_verifiers() argument
550 for (i = 0; i < nbuckets; i++) in pnfs_bucket_clear_pnfs_ds_commit_verifiers()
561 array->nbuckets); in nfs_clear_pnfs_ds_commit_verifiers()
/OK3568_Linux_fs/kernel/kernel/bpf/
H A Dbpf_local_storage.c545 u32 nbuckets; in bpf_local_storage_map_alloc() local
554 nbuckets = roundup_pow_of_two(num_possible_cpus()); in bpf_local_storage_map_alloc()
556 nbuckets = max_t(u32, 2, nbuckets); in bpf_local_storage_map_alloc()
557 smap->bucket_log = ilog2(nbuckets); in bpf_local_storage_map_alloc()
558 cost = sizeof(*smap->buckets) * nbuckets + sizeof(*smap); in bpf_local_storage_map_alloc()
566 smap->buckets = kvcalloc(sizeof(*smap->buckets), nbuckets, in bpf_local_storage_map_alloc()
574 for (i = 0; i < nbuckets; i++) { in bpf_local_storage_map_alloc()
/OK3568_Linux_fs/kernel/fs/omfs/
H A Ddir.c27 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()
413 int nbuckets; in omfs_readdir() local
424 nbuckets = (dir->i_size - OMFS_DIR_START) / 8; in omfs_readdir()
436 for (; hchain < nbuckets; hchain++) { in omfs_readdir()
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dalloc.c90 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 Dsysfs.c68 read_attribute(nbuckets);
1020 sysfs_print(nbuckets, ca->sb.nbuckets); in SHOW()
1039 size_t n = ca->sb.nbuckets, i; in SHOW()
1047 ca->sb.nbuckets)); in SHOW()
1097 unused * 100 / (size_t) ca->sb.nbuckets, in SHOW()
1098 available * 100 / (size_t) ca->sb.nbuckets, in SHOW()
1099 dirty * 100 / (size_t) ca->sb.nbuckets, in SHOW()
1100 meta * 100 / (size_t) ca->sb.nbuckets, sum, in SHOW()
H A Dsuper.c98 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()
652 b < ca->buckets + ca->sb.nbuckets && d < end; in bch_prio_write()
703 b < ca->buckets + ca->sb.nbuckets; in prio_read()
2005 c->nbuckets = ca->sb.nbuckets; in run_cache_set()
2093 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7, in run_cache_set()
2275 free = roundup_pow_of_two(ca->sb.nbuckets) >> 10; in cache_alloc()
[all …]
H A Dbcache.h624 size_t nbuckets; member
786 DIV_ROUND_UP((size_t) (ca)->sb.nbuckets, prios_per_bucket(ca))
890 b < (ca)->buckets + (ca)->sb.nbuckets; b++)
H A Dextents.c59 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()
/OK3568_Linux_fs/kernel/lib/
H A Drhashtable.c148 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()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/os_dep/linux/
H A Drhashtable.c110 size_t nbuckets, in bucket_table_alloc() argument
117 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
126 tbl->size = nbuckets; in bucket_table_alloc()
137 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/os_dep/linux/
H A Drhashtable.c110 size_t nbuckets, in bucket_table_alloc() argument
117 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
126 tbl->size = nbuckets; in bucket_table_alloc()
137 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/os_dep/linux/
H A Drhashtable.c110 size_t nbuckets, in bucket_table_alloc() argument
117 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
126 tbl->size = nbuckets; in bucket_table_alloc()
137 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/os_dep/linux/
H A Drhashtable.c110 size_t nbuckets, in bucket_table_alloc() argument
117 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
126 tbl->size = nbuckets; in bucket_table_alloc()
137 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/os_dep/linux/
H A Drhashtable.c110 size_t nbuckets, in bucket_table_alloc() argument
117 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
126 tbl->size = nbuckets; in bucket_table_alloc()
137 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/os_dep/linux/
H A Drhashtable.c109 size_t nbuckets, in bucket_table_alloc() argument
116 size = sizeof(*tbl) + nbuckets * sizeof(tbl->buckets[0]); in bucket_table_alloc()
125 tbl->size = nbuckets; in bucket_table_alloc()
136 for (i = 0; i < nbuckets; i++) in bucket_table_alloc()
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dbcache.h188 __le64 nbuckets; /* device size */ member
248 __u64 nbuckets; /* device size */ member

12