summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/network/1814352
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/network/1814352')
-rw-r--r--results/classifier/deepseek-2-tmp/output/network/181435224
1 files changed, 0 insertions, 24 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/network/1814352 b/results/classifier/deepseek-2-tmp/output/network/1814352
deleted file mode 100644
index 73d4f8a6a..000000000
--- a/results/classifier/deepseek-2-tmp/output/network/1814352
+++ /dev/null
@@ -1,24 +0,0 @@
-
-SIOCGIFNAME takes a struct ifreq not an integer
-
-The ioctl SIOCGIFNAME takes a pointer to a struct ifreq, not an integer.  This leads to if_indextoname() not correctly returning interface names (well, not if they're longer than 4 characters including the trailing NULL ;-).
-
-This is observed on v3.1.0.
-
-The following one-line patch will be sent to the qemu-devel mailing list:
-
-"""
-diff --git a/linux-user/ioctls.h b/linux-user/ioctls.h
-index ae8951625f..37501f575c 100644
---- a/linux-user/ioctls.h
-+++ b/linux-user/ioctls.h
-@@ -178,7 +178,7 @@
- #endif /* CONFIG_USBFS */
- 
-   IOCTL(SIOCATMARK, IOC_R, MK_PTR(TYPE_INT))
--  IOCTL(SIOCGIFNAME, IOC_RW, MK_PTR(TYPE_INT))
-+  IOCTL(SIOCGIFNAME, IOC_RW, MK_PTR(MK_STRUCT(STRUCT_int_ifreq)))
-   IOCTL(SIOCGIFFLAGS, IOC_W | IOC_R, MK_PTR(MK_STRUCT(STRUCT_short_ifreq)))
-   IOCTL(SIOCSIFFLAGS, IOC_W, MK_PTR(MK_STRUCT(STRUCT_short_ifreq)))
-   IOCTL(SIOCGIFADDR, IOC_W | IOC_R, MK_PTR(MK_STRUCT(STRUCT_sockaddr_ifreq)))
-"""
\ No newline at end of file