Searched refs:bucket_id (Results 1 - 5 of 5) sorted by relevance

/linux-master/net/core/
H A Dbpf_sk_storage.c704 unsigned int bucket_id; member in struct:bpf_iter_seq_sk_storage_map_info
717 u32 bucket_id = info->bucket_id; local
723 if (bucket_id >= n_buckets)
734 b = &smap->buckets[bucket_id++];
747 for (i = bucket_id; i < (1U << smap->bucket_log); i++) {
754 info->bucket_id = i;
764 info->bucket_id = i;
H A Dsock_map.c1301 u32 bucket_id; member in struct:sock_hash_seq_info
1320 info->bucket_id++;
1323 for (; info->bucket_id < htab->buckets_num; info->bucket_id++) {
1324 bucket = &htab->buckets[info->bucket_id];
/linux-master/kernel/bpf/
H A Dhashtab.c1980 u32 bucket_id; member in struct:bpf_iter_seq_hash_map_info
1990 u32 bucket_id = info->bucket_id; local
1997 if (bucket_id >= htab->n_buckets)
2011 b = &htab->buckets[bucket_id++];
2016 for (i = bucket_id; i < htab->n_buckets; i++) {
2024 info->bucket_id = i;
2035 info->bucket_id = i;
/linux-master/kernel/sched/
H A Dcore.c1434 uc_se->bucket_id = uclamp_bucket_id(value);
1470 int bucket_id = UCLAMP_BUCKETS - 1; local
1476 for ( ; bucket_id >= 0; bucket_id--) {
1477 if (!bucket[bucket_id].tasks)
1479 return bucket[bucket_id].value;
1576 * task's uclamp::bucket_id is refcounted on that rq. This also immediately
1596 bucket = &uc_rq->bucket[uc_se->bucket_id];
1652 * bucket[uc_se->bucket_id].
1659 bucket = &uc_rq->bucket[uc_se->bucket_id];
[all...]
/linux-master/include/linux/
H A Dsched.h692 * @bucket_id: bucket index corresponding to the "assigned" value
696 * The bucket_id is the index of the clamp bucket matching the clamp value
703 * to the "effective" bucket_id.
714 unsigned int bucket_id : bits_per(UCLAMP_BUCKETS); member in struct:uclamp_se

Completed in 219 milliseconds