Lines Matching refs:id
356 u32 hash, id, trace_nr, trace_len; in BPF_CALL_3() local
386 id = hash & (smap->n_buckets - 1); in BPF_CALL_3()
387 bucket = READ_ONCE(smap->buckets[id]); in BPF_CALL_3()
392 return id; in BPF_CALL_3()
408 return id; in BPF_CALL_3()
417 return id; in BPF_CALL_3()
431 old_bucket = xchg(&smap->buckets[id], new_bucket); in BPF_CALL_3()
434 return id; in BPF_CALL_3()
524 u32 id = *(u32 *)key, trace_len; in bpf_stackmap_copy() local
526 if (unlikely(id >= smap->n_buckets)) in bpf_stackmap_copy()
529 bucket = xchg(&smap->buckets[id], NULL); in bpf_stackmap_copy()
537 old_bucket = xchg(&smap->buckets[id], bucket); in bpf_stackmap_copy()
548 u32 id; in stack_map_get_next_key() local
553 id = 0; in stack_map_get_next_key()
555 id = *(u32 *)key; in stack_map_get_next_key()
556 if (id >= smap->n_buckets || !smap->buckets[id]) in stack_map_get_next_key()
557 id = 0; in stack_map_get_next_key()
559 id++; in stack_map_get_next_key()
562 while (id < smap->n_buckets && !smap->buckets[id]) in stack_map_get_next_key()
563 id++; in stack_map_get_next_key()
565 if (id >= smap->n_buckets) in stack_map_get_next_key()
568 *(u32 *)next_key = id; in stack_map_get_next_key()
583 u32 id = *(u32 *)key; in stack_map_delete_elem() local
585 if (unlikely(id >= smap->n_buckets)) in stack_map_delete_elem()
588 old_bucket = xchg(&smap->buckets[id], NULL); in stack_map_delete_elem()