Re: [PATCH net-next] test: bpf: extend "load 64-bit immediate" testcase

2015-05-11 Thread David Miller
From: Xi Wang Date: Sat, 9 May 2015 04:14:30 -0400 > Extend the testcase to catch a signedness bug in the arm64 JIT: > > test_bpf: #58 load 64-bit immediate jited:1 ret -1 != 1 FAIL (1 times) > > This is useful to ensure other JITs won't have a similar bug. > > Link: https://lkml.org/lkml/201

Re: [PATCH net-next] test: bpf: extend "load 64-bit immediate" testcase

2015-05-09 Thread Daniel Borkmann
On 05/09/2015 10:14 AM, Xi Wang wrote: Extend the testcase to catch a signedness bug in the arm64 JIT: test_bpf: #58 load 64-bit immediate jited:1 ret -1 != 1 FAIL (1 times) This is useful to ensure other JITs won't have a similar bug. Link: https://lkml.org/lkml/2015/5/8/458 Cc: Alexei Starov

Re: [PATCH net-next] test: bpf: extend "load 64-bit immediate" testcase

2015-05-09 Thread Alexei Starovoitov
On 5/9/15 1:14 AM, Xi Wang wrote: Extend the testcase to catch a signedness bug in the arm64 JIT: test_bpf: #58 load 64-bit immediate jited:1 ret -1 != 1 FAIL (1 times) This is useful to ensure other JITs won't have a similar bug. Link: https://lkml.org/lkml/2015/5/8/458 Cc: Alexei Starovoitov

[PATCH net-next] test: bpf: extend "load 64-bit immediate" testcase

2015-05-09 Thread Xi Wang
Extend the testcase to catch a signedness bug in the arm64 JIT: test_bpf: #58 load 64-bit immediate jited:1 ret -1 != 1 FAIL (1 times) This is useful to ensure other JITs won't have a similar bug. Link: https://lkml.org/lkml/2015/5/8/458 Cc: Alexei Starovoitov Cc: Will Deacon Signed-off-by: Xi