Quentin Monnet <quentin.mon...@netronome.com> writes:

> 2019-07-06 10:47 UTC+0200 ~ Toke Høiland-Jørgensen <t...@redhat.com>
>> From: Toke Høiland-Jørgensen <t...@redhat.com>
>> 
>> This adds a selftest, syncs the tools/ uapi header and adds the
>> devmap_hash name to bpftool for the new devmap_hash map type.
>> 
>> Signed-off-by: Toke Høiland-Jørgensen <t...@redhat.com>
>> ---
>>  tools/bpf/bpftool/map.c                 |    1 +
>>  tools/include/uapi/linux/bpf.h          |    1 +
>>  tools/testing/selftests/bpf/test_maps.c |   16 ++++++++++++++++
>>  3 files changed, 18 insertions(+)
>> 
>> diff --git a/tools/bpf/bpftool/map.c b/tools/bpf/bpftool/map.c
>> index 5da5a7311f13..c345f819b840 100644
>> --- a/tools/bpf/bpftool/map.c
>> +++ b/tools/bpf/bpftool/map.c
>> @@ -37,6 +37,7 @@ const char * const map_type_name[] = {
>>      [BPF_MAP_TYPE_ARRAY_OF_MAPS]            = "array_of_maps",
>>      [BPF_MAP_TYPE_HASH_OF_MAPS]             = "hash_of_maps",
>>      [BPF_MAP_TYPE_DEVMAP]                   = "devmap",
>> +    [BPF_MAP_TYPE_DEVMAP_HASH]              = "devmap_hash",
>>      [BPF_MAP_TYPE_SOCKMAP]                  = "sockmap",
>>      [BPF_MAP_TYPE_CPUMAP]                   = "cpumap",
>>      [BPF_MAP_TYPE_XSKMAP]                   = "xskmap",
>> diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h
>> index cecf42c871d4..8afaa0a19c67 100644
>> --- a/tools/include/uapi/linux/bpf.h
>> +++ b/tools/include/uapi/linux/bpf.h
>> @@ -134,6 +134,7 @@ enum bpf_map_type {
>>      BPF_MAP_TYPE_QUEUE,
>>      BPF_MAP_TYPE_STACK,
>>      BPF_MAP_TYPE_SK_STORAGE,
>> +    BPF_MAP_TYPE_DEVMAP_HASH,
>>  };
>>  
>>  /* Note that tracing related programs such as
>
> Hi Toke, thanks for the bpftool update!
>
> Could you please also complete the documentation and bash completion for
> the map type? We probably want to add the new name to the "bpftool map
> help" message [0], to the manual page [1], and to the bash completion
> file [2].

Sure, can do :)

-Toke

Reply via email to