Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236802
b: refs/heads/master
c: 4b3fd57
h: refs/heads/master
v: v3
  • Loading branch information
Simon Horman committed Jan 22, 2011
1 parent b30ec8d commit c829cba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 091bb34c143674d37a59b2d4857534f7106c5d7d
refs/heads/master: 4b3fd57138c969dd940651fadf90db627254edbf
4 changes: 2 additions & 2 deletions trunk/net/netfilter/ipvs/ip_vs_sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ static struct socket *make_send_sock(struct net *net)
int result;

/* First create a socket */
result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
result = __sock_create(net, PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock, 1);
if (result < 0) {
pr_err("Error during creation of socket; terminating\n");
return ERR_PTR(result);
Expand Down Expand Up @@ -1351,7 +1351,7 @@ static struct socket *make_receive_sock(struct net *net)
int result;

/* First create a socket */
result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
result = __sock_create(net, PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock, 1);
if (result < 0) {
pr_err("Error during creation of socket; terminating\n");
return ERR_PTR(result);
Expand Down

0 comments on commit c829cba

Please sign in to comment.