diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2020-12-01 01:33:35 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-12-02 07:21:45 +0300 |
commit | f6a8250ea1e42ad1f4f3bab01c851ec5fd48f0e7 (patch) | |
tree | 8ac1c6128617881180417463ec9ac139bf4a80c8 /tools/lib/bpf/ringbuf.c | |
parent | ed1182dc004dbcc7cfe64fb0e8ac520b25431715 (diff) | |
download | linux-f6a8250ea1e42ad1f4f3bab01c851ec5fd48f0e7.tar.xz |
libbpf: Fix ring_buffer__poll() to return number of consumed samples
Fix ring_buffer__poll() to return the number of non-discarded records
consumed, just like its documentation states. It's also consistent with
ring_buffer__consume() return. Fix up selftests with wrong expected results.
Fixes: bf99c936f947 ("libbpf: Add BPF ring buffer support")
Fixes: cb1c9ddd5525 ("selftests/bpf: Add BPF ringbuf selftests")
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Link: https://lore.kernel.org/bpf/20201130223336.904192-1-andrii@kernel.org
Diffstat (limited to 'tools/lib/bpf/ringbuf.c')
-rw-r--r-- | tools/lib/bpf/ringbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/ringbuf.c b/tools/lib/bpf/ringbuf.c index 5c6522c89af1..98537ff2679e 100644 --- a/tools/lib/bpf/ringbuf.c +++ b/tools/lib/bpf/ringbuf.c @@ -278,7 +278,7 @@ int ring_buffer__poll(struct ring_buffer *rb, int timeout_ms) err = ringbuf_process_ring(ring); if (err < 0) return err; - res += cnt; + res += err; } return cnt < 0 ? -errno : res; } |