Re: [PATCH] selftests/net: do_setcpu function not need to have a return value

2024-09-04 Thread Jakub Kicinski
On Tue, 3 Sep 2024 17:51:11 +0800 Liu Jing wrote: > in the do_setcpu, this function does not need to have a return value, > which is meaningless This test is flaky: https://netdev.bots.linux.dev/contest.html?executor=vmksft-net-dbg&test=msg-zerocopy-sh Could you please try to figure out what the

Re: [PATCH] selftests/net: do_setcpu function not need to have a return value

2024-09-03 Thread Simon Horman
On Tue, Sep 03, 2024 at 05:51:11PM +0800, Liu Jing wrote: > in the do_setcpu, this function does not need to have a return value, > which is meaningless > > Signed-off-by: Liu Jing Thanks, I also see that the caller does not check the return value. Reviewed-by: Simon Horman

[PATCH] selftests/net: do_setcpu function not need to have a return value

2024-09-03 Thread Liu Jing
in the do_setcpu, this function does not need to have a return value, which is meaningless Signed-off-by: Liu Jing --- tools/testing/selftests/net/msg_zerocopy.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/testing/selftests/net/msg_zerocopy.c b/tools/testing/self