Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: net: Fix minor typos in MPTCP and psock tests

Fixes minor spelling errors:
- `simult_flows.sh`: "al testcases" -> "all testcases"
- `psock_tpacket.c`: "accross" -> "across"

Signed-off-by: Suchit Karunakaran <suchitkarunakaran@gmail.com>
Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20250218165923.20740-1-suchitkarunakaran@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Suchit and committed by
Jakub Kicinski
23dcacff bf5b5104

+2 -2
+1 -1
tools/testing/selftests/net/mptcp/simult_flows.sh
··· 28 28 29 29 usage() { 30 30 echo "Usage: $0 [ -b ] [ -c ] [ -d ] [ -i]" 31 - echo -e "\t-b: bail out after first error, otherwise runs al testcases" 31 + echo -e "\t-b: bail out after first error, otherwise runs all testcases" 32 32 echo -e "\t-c: capture packets for each test using tcpdump (default: no capture)" 33 33 echo -e "\t-d: debug this script" 34 34 echo -e "\t-i: use 'ip mptcp' instead of 'pm_nl_ctl'"
+1 -1
tools/testing/selftests/net/psock_tpacket.c
··· 12 12 * 13 13 * Datapath: 14 14 * Open a pair of packet sockets and send resp. receive an a priori known 15 - * packet pattern accross the sockets and check if it was received resp. 15 + * packet pattern across the sockets and check if it was received resp. 16 16 * sent correctly. Fanout in combination with RX_RING is currently not 17 17 * tested here. 18 18 *