Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47986
b: refs/heads/master
c: 77f1f67
h: refs/heads/master
v: v3
  • Loading branch information
Chuck Lever authored and Linus Torvalds committed Feb 12, 2007
1 parent 9390941 commit cc46c10
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 95756482c9bfa375418c5a32455494a3042f65cd
refs/heads/master: 77f1f67a1a56defa210c3d8857f3e5eee3990a99
16 changes: 8 additions & 8 deletions trunk/net/sunrpc/svcsock.c
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ EXPORT_SYMBOL_GPL(svc_addsock);
* Create socket for RPC service.
*/
static int svc_create_socket(struct svc_serv *serv, int protocol,
struct sockaddr_in *sin, int flags)
struct sockaddr *sin, int len, int flags)
{
struct svc_sock *svsk;
struct socket *sock;
Expand All @@ -1710,8 +1710,7 @@ static int svc_create_socket(struct svc_serv *serv, int protocol,

dprintk("svc: svc_create_socket(%s, %d, %s)\n",
serv->sv_program->pg_name, protocol,
__svc_print_addr((struct sockaddr *) sin, buf,
sizeof(buf)));
__svc_print_addr(sin, buf, sizeof(buf)));

if (protocol != IPPROTO_UDP && protocol != IPPROTO_TCP) {
printk(KERN_WARNING "svc: only UDP and TCP "
Expand All @@ -1720,15 +1719,15 @@ static int svc_create_socket(struct svc_serv *serv, int protocol,
}
type = (protocol == IPPROTO_UDP)? SOCK_DGRAM : SOCK_STREAM;

if ((error = sock_create_kern(PF_INET, type, protocol, &sock)) < 0)
error = sock_create_kern(sin->sa_family, type, protocol, &sock);
if (error < 0)
return error;

svc_reclassify_socket(sock);

if (type == SOCK_STREAM)
sock->sk->sk_reuse = 1; /* allow address reuse */
error = kernel_bind(sock, (struct sockaddr *) sin,
sizeof(*sin));
sock->sk->sk_reuse = 1; /* allow address reuse */
error = kernel_bind(sock, sin, len);
if (error < 0)
goto bummer;

Expand Down Expand Up @@ -1818,7 +1817,8 @@ int svc_makesock(struct svc_serv *serv, int protocol, unsigned short port,
};

dprintk("svc: creating socket proto = %d\n", protocol);
return svc_create_socket(serv, protocol, &sin, flags);
return svc_create_socket(serv, protocol, (struct sockaddr *) &sin,
sizeof(sin), flags);
}

/*
Expand Down

0 comments on commit cc46c10

Please sign in to comment.