]> git.baikalelectronics.ru Git - kernel.git/commit
selftests/net: GRO coalesce test
authorCoco Li <lixiaoyan@google.com>
Thu, 5 Aug 2021 07:36:40 +0000 (07:36 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Aug 2021 12:14:09 +0000 (13:14 +0100)
commit3f52169c8f7040b1f1b7e32c65c486efe9b00945
tree6576d1ec2d551becfde1acb60d1f151e85f85643
parent4e4fc337e1f87f93fa69ec6124f563ed21009395
selftests/net: GRO coalesce test

Implement a GRO testsuite that expects Linux kernel GRO behavior.
All tests pass with the kernel software GRO stack. Run against a device
with hardware GRO to verify that it matches the software stack.

gro.c generates packets and sends them out through a packet socket. The
receiver in gro.c (run separately) receives the packets on a packet
socket, filters them by destination ports using BPF and checks the
packet geometry to see whether GRO was applied.

gro.sh provides a wrapper to run the gro.c in NIC loopback mode.
It is not included in continuous testing because it modifies network
configuration around a physical NIC: gro.sh sets the NIC in loopback
mode, creates macvlan devices on the physical device in separate
namespaces, and sends traffic generated by gro.c between the two
namespaces to observe coalescing behavior.

GRO coalescing is time sensitive.
Some tests may prove flaky on some hardware.

Note that this test suite tests for software GRO unless hardware GRO is
enabled (ethtool -K $DEV rx-gro-hw on).

To test, run ./gro.sh.
The wrapper will output success or failed test names, and generate
log.txt and stderr.

Sample log.txt result:
...
pure data packet of same size: Test succeeded

large data packets followed by a smaller one: Test succeeded

small data packets followed by a larger one: Test succeeded
...

Sample stderr result:
...
carrier ready
running test ipv4 data
Expected {200 }, Total 1 packets
Received {200 }, Total 1 packets.
...

Signed-off-by: Coco Li <lixiaoyan@google.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/net/Makefile
tools/testing/selftests/net/gro.c [new file with mode: 0644]
tools/testing/selftests/net/gro.sh [new file with mode: 0755]
tools/testing/selftests/net/setup_loopback.sh [new file with mode: 0755]