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

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'selftest-af_unix-misc-updates'

Kuniyuki Iwashima says:

====================
selftest: af_unix: Misc updates.

Patch 1 add .gitignore under tools/testing/selftests/net/af_unix/.

Patch 2 make so_peek_off.c less flaky.
====================

Link: https://patch.msgid.link/20251124212805.486235-1-kuniyu@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+10 -10
-8
tools/testing/selftests/net/.gitignore
··· 4 4 bind_wildcard 5 5 busy_poller 6 6 cmsg_sender 7 - diag_uid 8 7 epoll_busy_poll 9 8 fin_ack_lat 10 9 hwtstamp_config ··· 16 17 ipv6_flowlabel_mgr 17 18 ipv6_fragmentation 18 19 log.txt 19 - msg_oob 20 20 msg_zerocopy 21 21 netlink-dumps 22 22 nettest ··· 32 34 reuseport_dualstack 33 35 rxtimestamp 34 36 sctp_hello 35 - scm_inq 36 - scm_pidfd 37 - scm_rights 38 37 sk_bind_sendto_listen 39 38 sk_connect_zero_addr 40 39 sk_so_peek_off ··· 39 44 socket 40 45 so_incoming_cpu 41 46 so_netns_cookie 42 - so_peek_off 43 47 so_txtime 44 48 so_rcv_listener 45 49 stress_reuseport_listen ··· 57 63 udpgso 58 64 udpgso_bench_rx 59 65 udpgso_bench_tx 60 - unix_connect 61 - unix_connreset
+8
tools/testing/selftests/net/af_unix/.gitignore
··· 1 + diag_uid 2 + msg_oob 3 + scm_inq 4 + scm_pidfd 5 + scm_rights 6 + so_peek_off 7 + unix_connect 8 + unix_connreset
+2 -2
tools/testing/selftests/net/af_unix/so_peek_off.c
··· 36 36 FIXTURE_SETUP(so_peek_off) 37 37 { 38 38 struct timeval timeout = { 39 - .tv_sec = 0, 40 - .tv_usec = 3000, 39 + .tv_sec = 5, 40 + .tv_usec = 0, 41 41 }; 42 42 int ret; 43 43