Re: [PATCH v4 0/4] libbpf: API to partially consume items from ringbuffer

2024-04-06 Thread patchwork-bot+netdevbpf
Hello: This series was applied to bpf/bpf-next.git (master) by Andrii Nakryiko : On Sat, 6 Apr 2024 11:15:40 +0200 you wrote: > Introduce ring__consume_n() and ring_buffer__consume_n() API to > partially consume items from one (or more) ringbuffer(s). > > This can be useful, for example, to con

[PATCH v4 0/4] libbpf: API to partially consume items from ringbuffer

2024-04-06 Thread Andrea Righi
Introduce ring__consume_n() and ring_buffer__consume_n() API to partially consume items from one (or more) ringbuffer(s). This can be useful, for example, to consume just a single item or when we need to copy multiple items to a limited user-space buffer from the ringbuffer callback. Practical ex