mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
selftests/net: Fix broken test case in psock_fanout
The error return falue form sock_fanout_open is -1, not zero. One test case was checking for 0 instead of -1. Tested: Built and tested in clean client. Signed-off-by: Mike Maloney <maloney@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
799dbe3e1c
commit
472ecf084a
@ -305,7 +305,7 @@ static void test_unique_fanout_group_ids(void)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (sock_fanout_open(PACKET_FANOUT_CPU, first_group_id)) {
|
||||
if (sock_fanout_open(PACKET_FANOUT_CPU, first_group_id) != -1) {
|
||||
fprintf(stderr, "ERROR: joined group with wrong type.\n");
|
||||
exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user