Deleted Added
full compact
30c30
< __FBSDID("$FreeBSD: head/sys/compat/linux/linux_socket.c 276512 2015-01-01 20:53:38Z dchagin $");
---
> __FBSDID("$FreeBSD: head/sys/compat/linux/linux_socket.c 283413 2015-05-24 15:41:27Z dchagin $");
588,596d587
< struct linux_sendto_args {
< int s;
< l_uintptr_t msg;
< int len;
< int flags;
< l_uintptr_t to;
< int tolen;
< };
<
648,654c639
< struct linux_socket_args {
< int domain;
< int type;
< int protocol;
< };
<
< static int
---
> int
718,724c703
< struct linux_bind_args {
< int s;
< l_uintptr_t name;
< int namelen;
< };
<
< static int
---
> int
742,748d720
< struct linux_connect_args {
< int s;
< l_uintptr_t name;
< int namelen;
< };
< int linux_connect(struct thread *, struct linux_connect_args *);
<
793,798c765
< struct linux_listen_args {
< int s;
< int backlog;
< };
<
< static int
---
> int
859,865c826
< struct linux_accept_args {
< int s;
< l_uintptr_t addr;
< l_uintptr_t namelen;
< };
<
< static int
---
> int
873,880c834
< struct linux_accept4_args {
< int s;
< l_uintptr_t addr;
< l_uintptr_t namelen;
< int flags;
< };
<
< static int
---
> int
888,894c842
< struct linux_getsockname_args {
< int s;
< l_uintptr_t addr;
< l_uintptr_t namelen;
< };
<
< static int
---
> int
918,924c866
< struct linux_getpeername_args {
< int s;
< l_uintptr_t addr;
< l_uintptr_t namelen;
< };
<
< static int
---
> int
947,954c889
< struct linux_socketpair_args {
< int domain;
< int type;
< int protocol;
< l_uintptr_t rsv;
< };
<
< static int
---
> int
1009a945
> #if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1064a1001
> #endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */
1066c1003
< static int
---
> int
1090,1099c1027
< struct linux_recvfrom_args {
< int s;
< l_uintptr_t buf;
< int len;
< int flags;
< l_uintptr_t from;
< l_uintptr_t fromlen;
< };
<
< static int
---
> int
1139,1145c1067
< struct linux_sendmsg_args {
< int s;
< l_uintptr_t msg;
< int flags;
< };
<
< static int
---
> int
1282,1288c1204
< struct linux_recvmsg_args {
< int s;
< l_uintptr_t msg;
< int flags;
< };
<
< static int
---
> int
1455,1460c1371
< struct linux_shutdown_args {
< int s;
< int how;
< };
<
< static int
---
> int
1473,1481c1384
< struct linux_setsockopt_args {
< int s;
< int level;
< int optname;
< l_uintptr_t optval;
< int optlen;
< };
<
< static int
---
> int
1546,1554c1449
< struct linux_getsockopt_args {
< int s;
< int level;
< int optname;
< l_uintptr_t optval;
< l_uintptr_t optlen;
< };
<
< static int
---
> int
1656a1552
> #if defined(__i386__) || (defined(__amd64__) && defined(COMPAT_LINUX32))
1712a1609
> #endif /* __i386__ || (__amd64__ && COMPAT_LINUX32) */