Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 2.16 KB

bpf_iter_css_next.md

File metadata and controls

52 lines (40 loc) · 2.16 KB
title description
KFunc 'bpf_iter_css_next'
This page documents the 'bpf_iter_css_next' eBPF kfunc, including its defintion, usage, program types that can use it, and examples.

KFunc bpf_iter_css_next

:octicons-tag-24: v6.7

Iterate over cgroup subsystem states.

Definition

#!c struct cgroup_subsys_state *bpf_iter_css_next(struct bpf_iter_css *it)

!!! note The pointer returned by the kfunc may be NULL. Hence, it forces the user to do a NULL check on the pointer returned from the kfunc before making use of it (dereferencing or passing to another helper).

Usage

See bpf_iter_css_new for usage details.

Program types

The following program types can make use of this kfunc:

Example

See bpf_iter_css_new an example.