aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/inet_timewait_sock.h
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-03-26 00:48:17 -0700
committerDavid S. Miller <davem@davemloft.net>2008-03-26 00:48:17 -0700
commitf5aa23fd49063745f85644dd7a9330acd706add6 (patch)
tree51ff4c7006fe7f7551b29f24ec1830e19dc7a278 /include/net/inet_timewait_sock.h
parent[NETNS]: Compilation fix for include/linux/netdevice.h. (diff)
downloadlinux-dev-f5aa23fd49063745f85644dd7a9330acd706add6.tar.xz
linux-dev-f5aa23fd49063745f85644dd7a9330acd706add6.zip
[NETNS]: Compilation warnings under CONFIG_NET_NS.
Recent commits from YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> have been introduced a several compilation warnings 'assignment discards qualifiers from pointer target type' due to extra const modifier in the inline call parameters of {dev|sock|twsk}_net_set. Drop it. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/inet_timewait_sock.h')
-rw-r--r--include/net/inet_timewait_sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h
index 07fe0d1a4f03..95c660c9719b 100644
--- a/include/net/inet_timewait_sock.h
+++ b/include/net/inet_timewait_sock.h
@@ -219,7 +219,7 @@ struct net *twsk_net(const struct inet_timewait_sock *twsk)
}
static inline
-void twsk_net_set(struct inet_timewait_sock *twsk, const struct net *net)
+void twsk_net_set(struct inet_timewait_sock *twsk, struct net *net)
{
#ifdef CONFIG_NET_NS
twsk->tw_net = net;