Re: [PATCH bpf-next 0/2] bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE map

2018-01-19 Thread Daniel Borkmann
On 01/19/2018 12:08 AM, Yonghong Song wrote: > This patch set implements MAP_GET_NEXT_KEY command for LPM_TRIE map. > This command is really useful for key enumeration, and for key deletion > if what keys in the trie are unknown. > > Patch #1 implements the functionality in the kernel and patch #2

[PATCH bpf-next 0/2] bpf: implement MAP_GET_NEXT_KEY command for LPM_TRIE map

2018-01-18 Thread Yonghong Song
This patch set implements MAP_GET_NEXT_KEY command for LPM_TRIE map. This command is really useful for key enumeration, and for key deletion if what keys in the trie are unknown. Patch #1 implements the functionality in the kernel and patch #2 adds a test case in tools/testing/selftests/bpf. Yong