Skip to content

KFunc bpf_cpumask_intersects

v6.3

Check two cpumasks for overlap.

Definition

src1: The first input. src2: The second input.

Return: * true - src1 and src2 have at least one of the same bits set. * false - src1 and src2 don't have any of the same bits set.

struct bpf_cpumask pointers may be safely passed to src1 and src2.

bool bpf_cpumask_intersects(const struct cpumask *src1, const struct cpumask *src2)

Usage

Docs could be improved

This part of the docs is incomplete, contributions are very welcome

Program types

The following program types can make use of this kfunc:

Example

Docs could be improved

This part of the docs is incomplete, contributions are very welcome