diff options
author | Prashant Bhole <bhole_prashant_q7@lab.ntt.co.jp> | 2019-04-16 20:22:59 -0400 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2019-04-16 22:48:26 -0400 |
commit | d1b7725dfea3e6c1aff2ee94baf3658aba450fbe (patch) | |
tree | 8af00b98facbc59b1a388f8cc248cf5f61ff3e18 | |
parent | d459b59ee0f5ed2fa96e77bbd919e095b1aeceb0 (diff) |
tools/bpftool: show btf_id in map listing
Let's print btf id of map similar to the way we are printing it
for programs.
Sample output:
user@test# bpftool map -f
61: lpm_trie flags 0x1
key 20B value 8B max_entries 1 memlock 4096B
133: array name test_btf_id flags 0x0
key 4B value 4B max_entries 4 memlock 4096B
pinned /sys/fs/bpf/test100
btf_id 174
170: array name test_btf_id flags 0x0
key 4B value 4B max_entries 4 memlock 4096B
btf_id 240
Signed-off-by: Prashant Bhole <bhole_prashant_q7@lab.ntt.co.jp>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
-rw-r--r-- | tools/bpf/bpftool/map.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/bpf/bpftool/map.c b/tools/bpf/bpftool/map.c index 846d2e5c64b4..10b6c9d3e525 100644 --- a/tools/bpf/bpftool/map.c +++ b/tools/bpf/bpftool/map.c | |||
@@ -531,6 +531,9 @@ static int show_map_close_json(int fd, struct bpf_map_info *info) | |||
531 | } | 531 | } |
532 | close(fd); | 532 | close(fd); |
533 | 533 | ||
534 | if (info->btf_id) | ||
535 | jsonw_int_field(json_wtr, "btf_id", info->btf_id); | ||
536 | |||
534 | if (!hash_empty(map_table.table)) { | 537 | if (!hash_empty(map_table.table)) { |
535 | struct pinned_obj *obj; | 538 | struct pinned_obj *obj; |
536 | 539 | ||
@@ -606,6 +609,9 @@ static int show_map_close_plain(int fd, struct bpf_map_info *info) | |||
606 | } | 609 | } |
607 | } | 610 | } |
608 | 611 | ||
612 | if (info->btf_id) | ||
613 | printf("\n\tbtf_id %d", info->btf_id); | ||
614 | |||
609 | printf("\n"); | 615 | printf("\n"); |
610 | return 0; | 616 | return 0; |
611 | } | 617 | } |