This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] sparc32: Make no sendmsg/recvmsg syscalls for older Linux kernels than 4.4


The sendmsg and recvmsg systems calls were not available for 32-bit
sparc Linux kernels before Linux kernel version 4.4.

	* sysdeps/unix/sysv/linux/sparc/kernel-features.h: Undefine
	__ASSUME_SENDMSG_SYSCALL and __ASSUME_RECVMSG_SYSCALL for 32-bit
	sparc for older Linux kernels than 4.4.
---
 sysdeps/unix/sysv/linux/sparc/kernel-features.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/sysdeps/unix/sysv/linux/sparc/kernel-features.h b/sysdeps/unix/sysv/linux/sparc/kernel-features.h
index 69c9c7c..b7a79a7 100644
--- a/sysdeps/unix/sysv/linux/sparc/kernel-features.h
+++ b/sysdeps/unix/sysv/linux/sparc/kernel-features.h
@@ -36,4 +36,9 @@
 #if !defined __arch64__ && !defined __sparc_v9__
 # undef __ASSUME_REQUEUE_PI
 # undef __ASSUME_SET_ROBUST_LIST
+/* All direct socketcalls are available only with kernel 4.4.  */
+# if __LINUX_KERNEL_VERSION < 0x040400
+#  undef __ASSUME_SENDMSG_SYSCALL
+#  undef __ASSUME_RECVMSG_SYSCALL
+# endif
 #endif
-- 
2.8.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]