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

/linux-master/net/core/
H A Dbpf_sk_storage.c699 unsigned int bucket_id; member in struct:bpf_iter_seq_sk_storage_map_info
712 u32 bucket_id = info->bucket_id; local
718 if (bucket_id >= n_buckets)
729 b = &smap->buckets[bucket_id++];
742 for (i = bucket_id; i < (1U << smap->bucket_log); i++) {
749 info->bucket_id = i;
759 info->bucket_id = i;
H A Dsock_map.c1313 u32 bucket_id; member in struct:sock_hash_seq_info
1332 info->bucket_id++;
1335 for (; info->bucket_id < htab->buckets_num; info->bucket_id++) {
1336 bucket = &htab->buckets[info->bucket_id];
/linux-master/kernel/bpf/
H A Dhashtab.c1989 u32 bucket_id; member in struct:bpf_iter_seq_hash_map_info
1999 u32 bucket_id = info->bucket_id; local
2006 if (bucket_id >= htab->n_buckets)
2020 b = &htab->buckets[bucket_id++];
2025 for (i = bucket_id; i < htab->n_buckets; i++) {
2033 info->bucket_id = i;
2044 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 197 milliseconds