Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.31 KB

bpf_cpumask_or.md

File metadata and controls

44 lines (30 loc) · 1.31 KB
title description
KFunc 'bpf_cpumask_or'
This page documents the 'bpf_cpumask_or' eBPF kfunc, including its defintion, usage, program types that can use it, and examples.

KFunc bpf_cpumask_or

:octicons-tag-24: v6.3

OR two cpumasks and store the result.

Definition

dst: The BPF cpumask where the result is being stored. src1: The first input. src2: The second input.

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

#!c void bpf_cpumask_or(struct bpf_cpumask *dst, const struct cpumask *src1, const struct cpumask *src2)

Usage

!!! example "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

!!! example "Docs could be improved" This part of the docs is incomplete, contributions are very welcome