Lines Matching defs:cpumask
38 struct bpf_cpumask *cpumask;
40 cpumask = create_cpumask();
41 __sink(cpumask);
43 /* cpumask is never released. */
51 struct bpf_cpumask *cpumask;
53 cpumask = create_cpumask();
55 /* cpumask is released twice. */
56 bpf_cpumask_release(cpumask);
57 bpf_cpumask_release(cpumask);
66 struct bpf_cpumask *cpumask;
69 cpumask = bpf_cpumask_acquire((struct bpf_cpumask *)task->cpus_ptr);
70 __sink(cpumask);
89 struct bpf_cpumask *cpumask;
92 cpumask = create_cpumask();
93 if (!cpumask)
96 if (cpumask_map_insert(cpumask))
103 cpumask = bpf_kptr_xchg(&v->cpumask, NULL);
105 /* cpumask is never released. */
148 bpf_cpumask_test_cpu(0, (const struct cpumask *)local);
173 /* No NULL check is performed on global cpumask kptr. */
174 bpf_cpumask_test_cpu(0, (const struct cpumask *)local);
234 ret = bpf_cpumask_populate((struct cpumask *)invalid, &bits, sizeof(bits));
255 ret = bpf_cpumask_populate((struct cpumask *)local, garbage, 8);