diff options
author | Denis V. Lunev <den@openvz.org> | 2008-03-24 15:30:27 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-24 15:30:27 -0700 |
commit | 7a6adb92fe301c10ca4dbd0d9f2422f5880595e7 (patch) | |
tree | b2b82f828a6eeaa788ee1d378d45e612e4a6d527 /net/ipv4/raw.c | |
parent | f2c4802b3fdfb0d9596d932ca2af0ef6f8d60491 (diff) | |
download | linux-7a6adb92fe301c10ca4dbd0d9f2422f5880595e7.tar.bz2 |
[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 'net/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index b433b485a883..7d29a05bf887 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c @@ -499,7 +499,7 @@ static int raw_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) goto out; if (ipc.opt) |