Author: dchagin
Date: Sun May 24 18:03:14 2015
New Revision: 283487
URL: https://svnweb.freebsd.org/changeset/base/283487

Log:
  Reduce duplication between MD Linux code by moving msg related
  struct definitions out into the compat/linux/linux_socket.h

Modified:
  head/sys/amd64/linux/linux.h
  head/sys/amd64/linux32/linux.h
  head/sys/compat/linux/linux_socket.h
  head/sys/i386/linux/linux.h

Modified: head/sys/amd64/linux/linux.h
==============================================================================
--- head/sys/amd64/linux/linux.h        Sun May 24 18:02:17 2015        
(r283486)
+++ head/sys/amd64/linux/linux.h        Sun May 24 18:03:14 2015        
(r283487)
@@ -447,22 +447,6 @@ struct l_sockaddr {
        char            sa_data[14];
 };
 
-struct l_msghdr {
-       l_uintptr_t     msg_name;
-       l_int           msg_namelen;
-       l_uintptr_t     msg_iov;
-       l_size_t        msg_iovlen;
-       l_uintptr_t     msg_control;
-       l_size_t        msg_controllen;
-       l_uint          msg_flags;
-};
-
-struct l_cmsghdr {
-       l_size_t        cmsg_len;
-       l_int           cmsg_level;
-       l_int           cmsg_type;
-};
-
 struct l_ifmap {
        l_ulong         mem_start;
        l_ulong         mem_end;

Modified: head/sys/amd64/linux32/linux.h
==============================================================================
--- head/sys/amd64/linux32/linux.h      Sun May 24 18:02:17 2015        
(r283486)
+++ head/sys/amd64/linux32/linux.h      Sun May 24 18:03:14 2015        
(r283487)
@@ -525,22 +525,6 @@ struct l_sockaddr {
        char            sa_data[14];
 } __packed;
 
-struct l_msghdr {
-       l_uintptr_t     msg_name;
-       l_int           msg_namelen;
-       l_uintptr_t     msg_iov;
-       l_size_t        msg_iovlen;
-       l_uintptr_t     msg_control;
-       l_size_t        msg_controllen;
-       l_uint          msg_flags;
-};
-
-struct l_cmsghdr {
-       l_size_t        cmsg_len;
-       l_int           cmsg_level;
-       l_int           cmsg_type;
-};
-
 struct l_ifmap {
        l_ulong         mem_start;
        l_ulong         mem_end;

Modified: head/sys/compat/linux/linux_socket.h
==============================================================================
--- head/sys/compat/linux/linux_socket.h        Sun May 24 18:02:17 2015        
(r283486)
+++ head/sys/compat/linux/linux_socket.h        Sun May 24 18:03:14 2015        
(r283487)
@@ -55,6 +55,22 @@
 #define LINUX_SCM_RIGHTS       0x01
 #define LINUX_SCM_CREDENTIALS   0x02
 
+struct l_msghdr {
+       l_uintptr_t     msg_name;
+       l_int           msg_namelen;
+       l_uintptr_t     msg_iov;
+       l_size_t        msg_iovlen;
+       l_uintptr_t     msg_control;
+       l_size_t        msg_controllen;
+       l_uint          msg_flags;
+};
+
+struct l_cmsghdr {
+       l_size_t        cmsg_len;
+       l_int           cmsg_level;
+       l_int           cmsg_type;
+};
+
 /* Ancilliary data object information macros */
 
 #define LINUX_CMSG_ALIGN(len)  roundup2(len, sizeof(l_ulong))

Modified: head/sys/i386/linux/linux.h
==============================================================================
--- head/sys/i386/linux/linux.h Sun May 24 18:02:17 2015        (r283486)
+++ head/sys/i386/linux/linux.h Sun May 24 18:03:14 2015        (r283487)
@@ -504,22 +504,6 @@ struct l_sockaddr {
        char            sa_data[14];
 };
 
-struct l_msghdr {
-       l_uintptr_t     msg_name;
-       l_int           msg_namelen;
-       l_uintptr_t     msg_iov;
-       l_size_t        msg_iovlen;
-       l_uintptr_t     msg_control;
-       l_size_t        msg_controllen;
-       l_uint          msg_flags;
-};
-
-struct l_cmsghdr {
-       l_size_t        cmsg_len;
-       l_int           cmsg_level;
-       l_int           cmsg_type;
-};
-
 struct l_ifmap {
        l_ulong         mem_start;
        l_ulong         mem_end;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to