aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net/psock_fanout.c
diff options
context:
space:
mode:
authorWillem de Bruijn <willemb@google.com>2015-05-18 15:42:11 -0400
committerDavid S. Miller <davem@davemloft.net>2015-05-18 17:04:18 -0400
commita2ad5d2ad96e8d5b3b8f33583a82eae78dce4d49 (patch)
treefa6614a7213ed6a6b56c4a4c31ba4535058e1ddf /tools/testing/selftests/net/psock_fanout.c
parentsfc: nicer log message on Siena SR-IOV probe fail (diff)
downloadlinux-dev-a2ad5d2ad96e8d5b3b8f33583a82eae78dce4d49.tar.xz
linux-dev-a2ad5d2ad96e8d5b3b8f33583a82eae78dce4d49.zip
selftests/net: expect headroom in psock_fanout rollover
psock_fanout tests the various fanout modes. Change the test for rollover mode to expect early rollover due to socket pressure as implemented in 2ccdbaa6d55b ("packet: rollover lock contention avoidance"). Signed-off-by: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net/psock_fanout.c')
-rw-r--r--tools/testing/selftests/net/psock_fanout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/psock_fanout.c b/tools/testing/selftests/net/psock_fanout.c
index 6f6733331d95..08c2a36ef7a9 100644
--- a/tools/testing/selftests/net/psock_fanout.c
+++ b/tools/testing/selftests/net/psock_fanout.c
@@ -272,7 +272,7 @@ int main(int argc, char **argv)
const int expect_hash[2][2] = { { 15, 5 }, { 20, 5 } };
const int expect_hash_rb[2][2] = { { 15, 5 }, { 20, 15 } };
const int expect_lb[2][2] = { { 10, 10 }, { 18, 17 } };
- const int expect_rb[2][2] = { { 20, 0 }, { 20, 15 } };
+ const int expect_rb[2][2] = { { 15, 5 }, { 20, 15 } };
const int expect_cpu0[2][2] = { { 20, 0 }, { 20, 0 } };
const int expect_cpu1[2][2] = { { 0, 20 }, { 0, 20 } };
int port_off = 2, tries = 5, ret;