All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net] bpf: add get_next_key callback to LPM map
@ 2017-03-05 17:41 Alexei Starovoitov
  2017-03-05 18:44 ` David Miller
  2017-03-06  9:30 ` Daniel Borkmann
  0 siblings, 2 replies; 5+ messages in thread
From: Alexei Starovoitov @ 2017-03-05 17:41 UTC (permalink / raw)
  To: David S . Miller; +Cc: Daniel Borkmann, Daniel Mack, Dmitry Vyukov, netdev

map_get_next_key callback is mandatory. Supply dummy handler.

Fixes: b95a5c4db09b ("bpf: add a longest prefix match trie map implementation")
Reported-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
---
 kernel/bpf/lpm_trie.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kernel/bpf/lpm_trie.c b/kernel/bpf/lpm_trie.c
index 8bfe0afaee10..b37bd9ab7f57 100644
--- a/kernel/bpf/lpm_trie.c
+++ b/kernel/bpf/lpm_trie.c
@@ -500,9 +500,15 @@ static void trie_free(struct bpf_map *map)
 	raw_spin_unlock(&trie->lock);
 }
 
+static int trie_get_next_key(struct bpf_map *map, void *key, void *next_key)
+{
+	return -ENOTSUPP;
+}
+
 static const struct bpf_map_ops trie_ops = {
 	.map_alloc = trie_alloc,
 	.map_free = trie_free,
+	.map_get_next_key = trie_get_next_key,
 	.map_lookup_elem = trie_lookup_elem,
 	.map_update_elem = trie_update_elem,
 	.map_delete_elem = trie_delete_elem,
-- 
2.8.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-03-06  9:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-05 17:41 [PATCH net] bpf: add get_next_key callback to LPM map Alexei Starovoitov
2017-03-05 18:44 ` David Miller
2017-03-05 18:58   ` Alexei Starovoitov
2017-03-06  1:55     ` David Miller
2017-03-06  9:30 ` Daniel Borkmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.