public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sparc32: Make no sendmsg/recvmsg syscalls for older Linux kernels than 4.4
@ 2016-11-07  7:43 Andreas Larsson
  2016-11-07 15:48 ` Joseph Myers
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Larsson @ 2016-11-07  7:43 UTC (permalink / raw)
  To: GNU C Library; +Cc: David Miller, Adhemerval Zanella, software

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-08 16:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-07  7:43 [PATCH] sparc32: Make no sendmsg/recvmsg syscalls for older Linux kernels than 4.4 Andreas Larsson
2016-11-07 15:48 ` Joseph Myers
2016-11-08 14:20   ` Andreas Larsson
2016-11-08 16:32     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).