Patch "selftests: net: fix cmsg_so_mark.sh test hang" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    selftests: net: fix cmsg_so_mark.sh test hang

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     selftests-net-fix-cmsg_so_mark.sh-test-hang.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit d22fe71f51e00493f497bf767926ffd1018980d2
Author: Po-Hsu Lin <po-hsu.lin@xxxxxxxxxxxxx>
Date:   Thu Dec 29 13:41:06 2022 +0800

    selftests: net: fix cmsg_so_mark.sh test hang
    
    [ Upstream commit 1573c6882018f69991aead951d09423ce978adac ]
    
    This cmsg_so_mark.sh test will hang on non-amd64 systems because of the
    infinity loop for argument parsing in cmsg_sender.
    
    Variable "o" in cs_parse_args() for taking getopt() should be an int,
    otherwise it will be 255 when getopt() returns -1 on non-amd64 system
    and thus causing infinity loop.
    
    Link: https://lore.kernel.org/lkml/CA+G9fYsM2k7mrF7W4V_TrZ-qDauWM394=8yEJ=-t1oUg8_40YA@xxxxxxxxxxxxxx/t/
    Signed-off-by: Po-Hsu Lin <po-hsu.lin@xxxxxxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/testing/selftests/net/cmsg_sender.c b/tools/testing/selftests/net/cmsg_sender.c
index 75dd83e39207..24b21b15ed3f 100644
--- a/tools/testing/selftests/net/cmsg_sender.c
+++ b/tools/testing/selftests/net/cmsg_sender.c
@@ -110,7 +110,7 @@ static void __attribute__((noreturn)) cs_usage(const char *bin)
 
 static void cs_parse_args(int argc, char *argv[])
 {
-	char o;
+	int o;
 
 	while ((o = getopt(argc, argv, "46sS:p:m:M:d:tf:F:c:C:l:L:H:")) != -1) {
 		switch (o) {



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux