syscall: RawSockaddr fix for ppc64, ppc64le
authorIan Lance Taylor <ian@gcc.gnu.org>
Mon, 3 Aug 2015 21:18:56 +0000 (21:18 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Mon, 3 Aug 2015 21:18:56 +0000 (21:18 +0000)
    The struct RawSockaddr contains a field Data which
    should be uint8 on ppc64 and ppc64le, but is declared
    as int8 in gccgo.  This change adds a two new files
    which contain the structure declaration for
    RawSockaddr, one with the correct types for for ppc64
    and ppc64le, and the other for non-ppc64 platforms.

    Fixes golang/go#11469

    Reviewed-on: https://go-review.googlesource.com/11946

From-SVN: r226533

gcc/go/gofrontend/MERGE
libgo/Makefile.am
libgo/Makefile.in
libgo/go/syscall/socket_linux.go
libgo/go/syscall/socket_linux_ppc64x_type.go [new file with mode: 0644]
libgo/go/syscall/socket_linux_type.go [new file with mode: 0644]

index 56ae88e5aadd036d60677e08ecfb07cc8b036d66..3c9b886cd62d0227095686eb122ca89a2df7ed04 100644 (file)
@@ -1,4 +1,4 @@
-7a6089333f4ab10449f9140c4639cfe741abcb25
+a850225433a66a58613c22185c3b09626f5545eb
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index fa4fcaa6404e581624a86c2e0cf9d7a2738cdf1c..1676624360da726feb87c6dcade0d2f2bdcb7c1b 100644 (file)
@@ -1676,7 +1676,17 @@ endif # !LIBGO_IS_LINUX
 # Define socket sizes and types.
 if LIBGO_IS_LINUX
 syscall_socket_file = go/syscall/socket_linux.go epoll.go
+if LIBGO_IS_PPC64LE
+syscall_socket_type_file = go/syscall/socket_linux_ppc64x_type.go
 else
+if LIBGO_IS_PPC64
+syscall_socket_type_file = go/syscall/socket_linux_ppc64x_type.go
+else
+syscall_socket_type_file = go/syscall/socket_linux_type.go
+endif
+endif
+else
+syscall_socket_type_file =
 if LIBGO_IS_SOLARIS
 syscall_socket_file = go/syscall/socket_solaris.go
 else
@@ -1762,6 +1772,7 @@ go_base_syscall_files = \
        $(syscall_size_file) \
        $(syscall_socket_file) \
        $(syscall_socket_os_file) \
+       $(syscall_socket_type_file) \
        $(syscall_uname_file) \
        $(syscall_netlink_file) \
        $(syscall_lsf_file) \
index 99ffbb276118264bad688990646cb9bb49707ea7..7f0ee54c1df79050a793b331457e824b4772eb1b 100644 (file)
@@ -1848,6 +1848,10 @@ go_unicode_utf8_files = \
 
 # Define socket sizes and types.
 @LIBGO_IS_LINUX_TRUE@syscall_socket_file = go/syscall/socket_linux.go epoll.go
+@LIBGO_IS_LINUX_FALSE@syscall_socket_type_file = 
+@LIBGO_IS_LINUX_TRUE@@LIBGO_IS_PPC64LE_FALSE@@LIBGO_IS_PPC64_FALSE@syscall_socket_type_file = go/syscall/socket_linux_type.go
+@LIBGO_IS_LINUX_TRUE@@LIBGO_IS_PPC64LE_FALSE@@LIBGO_IS_PPC64_TRUE@syscall_socket_type_file = go/syscall/socket_linux_ppc64x_type.go
+@LIBGO_IS_LINUX_TRUE@@LIBGO_IS_PPC64LE_TRUE@syscall_socket_type_file = go/syscall/socket_linux_ppc64x_type.go
 @LIBGO_IS_SOLARIS_FALSE@syscall_socket_os_file = go/syscall/socket_posix.go
 
 # Define socket functions.
@@ -1898,6 +1902,7 @@ go_base_syscall_files = \
        $(syscall_size_file) \
        $(syscall_socket_file) \
        $(syscall_socket_os_file) \
+       $(syscall_socket_type_file) \
        $(syscall_uname_file) \
        $(syscall_netlink_file) \
        $(syscall_lsf_file) \
index 8546abc3e062d23949e9066aa469b1adeb4b6a94..5064e77122167c0b667750c124ccee1da7e50aab 100644 (file)
@@ -136,11 +136,6 @@ type RawSockaddrNetlink struct {
        Groups uint32
 }
 
-type RawSockaddr struct {
-       Family uint16
-       Data   [14]int8
-}
-
 // BindToDevice binds the socket associated with fd to device.
 func BindToDevice(fd int, device string) (err error) {
        return SetsockoptString(fd, SOL_SOCKET, SO_BINDTODEVICE, device)
diff --git a/libgo/go/syscall/socket_linux_ppc64x_type.go b/libgo/go/syscall/socket_linux_ppc64x_type.go
new file mode 100644 (file)
index 0000000..8a707ce
--- /dev/null
@@ -0,0 +1,14 @@
+// socket_linux_ppc64x_type.go -- Socket handling specific to ppc64 GNU/Linux.
+
+// Copyright 2015 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package syscall
+
+// Type needed on ppc64le & ppc64
+
+type RawSockaddr struct {
+       Family uint16
+       Data   [14]uint8
+}
diff --git a/libgo/go/syscall/socket_linux_type.go b/libgo/go/syscall/socket_linux_type.go
new file mode 100644 (file)
index 0000000..45b8c6e
--- /dev/null
@@ -0,0 +1,14 @@
+// socket_linux_type.go -- Socket handling specific to GNU/Linux.
+
+// Copyright 2015 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package syscall
+
+// Type needed if not on ppc64le or ppc64
+
+type RawSockaddr struct {
+       Family uint16
+       Data   [14]int8
+}