[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <573ac2b2-a2a8-3072-556d-9b890133afc0@netronome.com>
Date: Mon, 15 Apr 2019 10:20:53 +0100
From: Quentin Monnet <quentin.monnet@...ronome.com>
To: Benjamin Poirier <bpoirier@...e.com>,
Daniel Borkmann <daniel@...earbox.net>
Cc: Jakub Kicinski <jakub.kicinski@...ronome.com>,
David Ahern <dsahern@...il.com>, netdev@...r.kernel.org,
bpf@...r.kernel.org
Subject: Re: [PATCH v3 bpf-next 2/2] bpftool: Improve handling of ENOSPC on
reuseport_array map dumps
2019-04-15 16:15 UTC+0900 ~ Benjamin Poirier <bpoirier@...e.com>
> avoids outputting a series of
> value:
> No space left on device
>
> The value itself is not wrong but bpf_fd_reuseport_array_lookup_elem() can
> only return it if the map was created with value_size = 8. There's nothing
> bpftool can do about it. Instead of repeating this error for every key in
> the map, print an explanatory warning and a specialized error.
>
> example before:
> key: 00 00 00 00
> value:
> No space left on device
> key: 01 00 00 00
> value:
> No space left on device
> key: 02 00 00 00
> value:
> No space left on device
> Found 0 elements
>
> example after:
> Warning: cannot read values from reuseport_sockarray map with value_size != 8
> key: 00 00 00 00 value: <cannot read>
> key: 01 00 00 00 value: <cannot read>
> key: 02 00 00 00 value: <cannot read>
> Found 0 elements
>
> Signed-off-by: Benjamin Poirier <bpoirier@...e.com>
> ---
> tools/bpf/bpftool/map.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/tools/bpf/bpftool/map.c b/tools/bpf/bpftool/map.c
> index df958af56b6c..44b192e87708 100644
> --- a/tools/bpf/bpftool/map.c
> +++ b/tools/bpf/bpftool/map.c
> @@ -719,6 +719,9 @@ static int dump_map_elem(int fd, void *key, void *value,
>
> if (errno == ENOENT)
> msg = "<no entry>";
> + else if (lookup_errno == ENOSPC &&
> + map_info->type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY)
> + msg = "<cannot read>";
>
> print_entry_error(map_info, key,
> msg ? : strerror(lookup_errno));
> @@ -775,6 +778,10 @@ static int do_dump(int argc, char **argv)
> }
> }
>
> + if (info.type == BPF_MAP_TYPE_REUSEPORT_SOCKARRAY &&
> + info.value_size != 8)
> + p_info("Warning: cannot read values from %s map with value_size != 8",
> + map_type_name[info.type]);
> while (true) {
> err = bpf_map_get_next_key(fd, prev_key, key);
> if (err) {
>
All good for me now, thanks a lot!
Reviewed-by: Quentin Monnet <quentin.monnet@...ronome.com>
Powered by blists - more mailing lists