[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <3e4672cb-9272-b487-0dcb-1bca1a663653@iogearbox.net>
Date: Thu, 30 Jun 2022 23:55:34 +0200
From: Daniel Borkmann <daniel@...earbox.net>
To: Quentin Monnet <quentin@...valent.com>,
Yafang Shao <laoar.shao@...il.com>, ast@...nel.org,
andrii@...nel.org, kafai@...com, songliubraving@...com, yhs@...com,
john.fastabend@...il.com, kpsingh@...nel.org
Cc: netdev@...r.kernel.org, bpf@...r.kernel.org
Subject: Re: [PATCH bpf-next 4/4] bpftool: Show also the name of type
BPF_OBJ_LINK
On 6/29/22 6:22 PM, Quentin Monnet wrote:
> On 29/06/2022 16:48, Yafang Shao wrote:
>> For example,
>> /sys/fs/bpf/maps.debug is a bpf link, when you run `bpftool map show` to
>> show it,
>> - before
>> $ bpftool map show pinned /sys/fs/bpf/maps.debug
>> Error: incorrect object type: unknown
>> - after
>> $ bpftool map show pinned /sys/fs/bpf/maps.debug
>> Error: incorrect object type: link
>>
>> Signed-off-by: Yafang Shao <laoar.shao@...il.com>
>> ---
>> tools/bpf/bpftool/common.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/tools/bpf/bpftool/common.c b/tools/bpf/bpftool/common.c
>> index a0d4acd7c54a..5e979269c89a 100644
>> --- a/tools/bpf/bpftool/common.c
>> +++ b/tools/bpf/bpftool/common.c
>> @@ -251,6 +251,7 @@ const char *get_fd_type_name(enum bpf_obj_type type)
>> [BPF_OBJ_UNKNOWN] = "unknown",
>> [BPF_OBJ_PROG] = "prog",
>> [BPF_OBJ_MAP] = "map",
>> + [BPF_OBJ_LINK] = "link",
>> };
>>
>> if (type < 0 || type >= ARRAY_SIZE(names) || !names[type])
>
> Reviewed-by: Quentin Monnet <quentin@...valent.com>
(Took this one in so far given fairly independent of the rest, thanks Yafang!)
Powered by blists - more mailing lists