Skip to content

KFunc bpf_iter_num_next

v6.4

Get the next number from the iterator.

Definition

This kfunc returns the next number from the iterator it. If the iterator is exhausted, it returns NULL.

int *bpf_iter_num_next(struct bpf_iter_num *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_num_new for usage details.

Program types

The following program types can make use of this kfunc:

Example

See bpf_iter_num_new for examples.