Skip to content

Latest commit

 

History

History
55 lines (41 loc) · 2.24 KB

bpf_iter_num_next.md

File metadata and controls

55 lines (41 loc) · 2.24 KB
title description
KFunc 'bpf_iter_num_next'
This page documents the 'bpf_iter_num_next' eBPF kfunc, including its defintion, usage, program types that can use it, and examples.

KFunc bpf_iter_num_next

:octicons-tag-24: 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.

#!c 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.