aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/udp.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-03-24 15:30:27 -0700
committerDavid S. Miller <davem@davemloft.net>2008-03-24 15:30:27 -0700
commit7a6adb92fe301c10ca4dbd0d9f2422f5880595e7 (patch)
treeb2b82f828a6eeaa788ee1d378d45e612e4a6d527 /net/ipv4/udp.c
parent[NETNS]: Add namespace parameter to ip_options_get(...). (diff)
downloadlinux-dev-7a6adb92fe301c10ca4dbd0d9f2422f5880595e7.tar.xz
linux-dev-7a6adb92fe301c10ca4dbd0d9f2422f5880595e7.zip
[NETNS]: Add namespace parameter to ip_cmsg_send.
Pass the init_net there for now. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/ipv4/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index 9cd48b0bb7d4..d142b87e9eb8 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -607,7 +607,7 @@ int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
ipc.oif = sk->sk_bound_dev_if;
if (msg->msg_controllen) {
- err = ip_cmsg_send(msg, &ipc);
+ err = ip_cmsg_send(&init_net, msg, &ipc);
if (err)
return err;
if (ipc.opt)