]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'bpf-annotate-kv-pair'
authorDaniel Borkmann <daniel@iogearbox.net>
Wed, 25 Jul 2018 04:57:56 +0000 (06:57 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Wed, 25 Jul 2018 05:00:27 +0000 (07:00 +0200)
commitf44cb1ff9c62598988bbc253705f98d8fdada6d1
treec19295299de7d53fcacffb42ea67b3c00206aeab
parent7b802952656b34252ab9745eee97c0a3282034eb
parentacfe2deee1488ad142e2a96dc9bc603bdff4576f
Merge branch 'bpf-annotate-kv-pair'

Martin KaFai Lau says:

====================
The series allows the BPF loader to figure out the btf_key_id
and btf_value_id from a map's name by using BPF_ANNOTATE_KV_PAIR()
similarly as in iproute2 commit f823f36012fb ("bpf: implement
btf handling and map annotation").

It also removes the old 'typedef' way which requires two separate
typedefs (one for the key and one for the value).

By doing this, iproute2 and libbpf have one consistent way to
figure out the btf_key_type_id and btf_value_type_id for a map.

The first two patches are some prep/cleanup works. The last patch
introduces BPF_ANNOTATE_KV_PAIR.

v3:
- Replace some more *int*_t and u* usages with the
  equivalent __[su]* in btf.c

v2:
- Fix the incorrect '&&' check on container_type
  in bpf_map_find_btf_info().
- Expose the existing static btf_type_by_id() instead of
  creating a new one.
====================

Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>