* [PATCH] bpf: testing: fix devmap tests
@ 2017-07-27  0:32 John Fastabend
  2017-07-27  0:35 ` John Fastabend
  2017-07-27  0:40 ` Daniel Borkmann
  0 siblings, 2 replies; 4+ messages in thread
From: John Fastabend @ 2017-07-27  0:32 UTC (permalink / raw)
  To: netdev; +Cc: john.r.fastabend, jakub.kicinski, daniel
Apparently through one of my revisions of the initial patches
series I lost the devmap test. We can add more testing later but
for now lets fix the simple one we have.
Fixes: 546ac1ffb70d "bpf: add devmap, a map for storing net device references"
Reported-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: John Fastabend <john.fastabend@gmail.com>
---
 tools/testing/selftests/bpf/test_maps.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h
index ce2988b..1579cab 100644
--- a/tools/include/uapi/linux/bpf.h
+++ b/tools/include/uapi/linux/bpf.h
@@ -104,6 +104,7 @@ enum bpf_map_type {
 	BPF_MAP_TYPE_LPM_TRIE,
 	BPF_MAP_TYPE_ARRAY_OF_MAPS,
 	BPF_MAP_TYPE_HASH_OF_MAPS,
+	BPF_MAP_TYPE_DEVMAP,
 };
 
 enum bpf_prog_type {
diff --git a/tools/testing/selftests/bpf/test_maps.c b/tools/testing/selftests/bpf/test_maps.c
index 36d6ac3..c991ab6 100644
--- a/tools/testing/selftests/bpf/test_maps.c
+++ b/tools/testing/selftests/bpf/test_maps.c
@@ -440,7 +440,7 @@ static void test_arraymap_percpu_many_keys(void)
 
 static void test_devmap(int task, void *data)
 {
-	int next_key, fd;
+	int fd;
 	__u32 key, value;
 
 	fd = bpf_create_map(BPF_MAP_TYPE_DEVMAP, sizeof(key), sizeof(value),
@@ -620,6 +620,8 @@ static void run_all_tests(void)
 
 	test_arraymap_percpu_many_keys();
 
+	test_devmap(0, NULL);
+
 	test_map_large();
 	test_map_parallel();
 	test_map_stress();
^ permalink raw reply related	[flat|nested] 4+ messages in thread
* Re: [PATCH] bpf: testing: fix devmap tests
  2017-07-27  0:32 [PATCH] bpf: testing: fix devmap tests John Fastabend
@ 2017-07-27  0:35 ` John Fastabend
  2017-07-29 21:13   ` David Miller
  2017-07-27  0:40 ` Daniel Borkmann
  1 sibling, 1 reply; 4+ messages in thread
From: John Fastabend @ 2017-07-27  0:35 UTC (permalink / raw)
  To: netdev; +Cc: jakub.kicinski, daniel
On 07/26/2017 05:32 PM, John Fastabend wrote:
> Apparently through one of my revisions of the initial patches
> series I lost the devmap test. We can add more testing later but
> for now lets fix the simple one we have.
> 
> Fixes: 546ac1ffb70d "bpf: add devmap, a map for storing net device references"
> Reported-by: Jakub Kicinski <jakub.kicinski@netronome.com>
> Signed-off-by: John Fastabend <john.fastabend@gmail.com>
> ---
Forgot prefix, this is for net-next. Sorry about that.
Thanks,
John
^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [PATCH] bpf: testing: fix devmap tests
  2017-07-27  0:32 [PATCH] bpf: testing: fix devmap tests John Fastabend
  2017-07-27  0:35 ` John Fastabend
@ 2017-07-27  0:40 ` Daniel Borkmann
  1 sibling, 0 replies; 4+ messages in thread
From: Daniel Borkmann @ 2017-07-27  0:40 UTC (permalink / raw)
  To: John Fastabend, netdev; +Cc: john.r.fastabend, jakub.kicinski
On 07/27/2017 02:32 AM, John Fastabend wrote:
> Apparently through one of my revisions of the initial patches
> series I lost the devmap test. We can add more testing later but
> for now lets fix the simple one we have.
>
> Fixes: 546ac1ffb70d "bpf: add devmap, a map for storing net device references"
> Reported-by: Jakub Kicinski <jakub.kicinski@netronome.com>
> Signed-off-by: John Fastabend <john.fastabend@gmail.com>
Looks good, thanks!
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
^ permalink raw reply	[flat|nested] 4+ messages in thread
* Re: [PATCH] bpf: testing: fix devmap tests
  2017-07-27  0:35 ` John Fastabend
@ 2017-07-29 21:13   ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2017-07-29 21:13 UTC (permalink / raw)
  To: john.fastabend; +Cc: netdev, jakub.kicinski, daniel
From: John Fastabend <john.fastabend@gmail.com>
Date: Wed, 26 Jul 2017 17:35:41 -0700
> On 07/26/2017 05:32 PM, John Fastabend wrote:
>> Apparently through one of my revisions of the initial patches
>> series I lost the devmap test. We can add more testing later but
>> for now lets fix the simple one we have.
>> 
>> Fixes: 546ac1ffb70d "bpf: add devmap, a map for storing net device references"
>> Reported-by: Jakub Kicinski <jakub.kicinski@netronome.com>
>> Signed-off-by: John Fastabend <john.fastabend@gmail.com>
>> ---
> 
> Forgot prefix, this is for net-next. Sorry about that.
It's ok.
Aplpied, thanks John.
^ permalink raw reply	[flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-07-29 21:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-27  0:32 [PATCH] bpf: testing: fix devmap tests John Fastabend
2017-07-27  0:35 ` John Fastabend
2017-07-29 21:13   ` David Miller
2017-07-27  0:40 ` Daniel Borkmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).