This is the mail archive of the glibc-cvs@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]

GNU C Library master sources branch master updated. glibc-2.24-16-gacaff9b


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  acaff9b658720e4c887f4e44e6f28962d6f372d3 (commit)
      from  bdf20beac183c705abef5aef8de2db5fac00bc8b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=acaff9b658720e4c887f4e44e6f28962d6f372d3

commit acaff9b658720e4c887f4e44e6f28962d6f372d3
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Wed Aug 3 12:12:22 2016 +0000

    Define PF_QIPCRTR, AF_QIPCRTR from Linux 4.7 in bits/socket.h.
    
    This patch adds the new PF_QIPCRTR and AF_QIPCRTR from Linux 4.7 to
    sysdeps/unix/sysv/linux/bits/socket.h.
    
    Tested for x86_64 and x86 (testsuite, and that installed stripped
    shared libraries are unchanged by the patch).
    
    	* sysdeps/unix/sysv/linux/bits/socket.h (PF_QIPCRTR): New macro.
    	(PF_MAX): Update value.
    	(AF_QIPCRTR): New macro.

diff --git a/ChangeLog b/ChangeLog
index bebb915..63673cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-08-03  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/unix/sysv/linux/bits/socket.h (PF_QIPCRTR): New macro.
+	(PF_MAX): Update value.
+	(AF_QIPCRTR): New macro.
+
 2016-08-03  Aurelien Jarno  <aurelien@aurel32.net>
 
 	* sysdeps/ieee754/dbl-64/s_trunc.c: Avoid alias renamed.
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h
index 2eb95f7..2266047 100644
--- a/sysdeps/unix/sysv/linux/bits/socket.h
+++ b/sysdeps/unix/sysv/linux/bits/socket.h
@@ -83,7 +83,8 @@ typedef __socklen_t socklen_t;
 #define PF_NFC		39	/* NFC sockets.  */
 #define PF_VSOCK	40	/* vSockets.  */
 #define PF_KCM		41	/* Kernel Connection Multiplexor.  */
-#define PF_MAX		42	/* For now..  */
+#define PF_QIPCRTR	42	/* Qualcomm IPC Router.  */
+#define PF_MAX		43	/* For now..  */
 
 /* Address families.  */
 #define AF_UNSPEC	PF_UNSPEC
@@ -131,6 +132,7 @@ typedef __socklen_t socklen_t;
 #define AF_NFC		PF_NFC
 #define AF_VSOCK	PF_VSOCK
 #define AF_KCM		PF_KCM
+#define AF_QIPCRTR	PF_QIPCRTR
 #define AF_MAX		PF_MAX
 
 /* Socket level values.  Others are defined in the appropriate headers.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                             |    6 ++++++
 sysdeps/unix/sysv/linux/bits/socket.h |    4 +++-
 2 files changed, 9 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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