[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>
This commit is contained in:
Родитель
9c2f5746b9
Коммит
f5aa23fd49
|
@ -753,7 +753,7 @@ struct net *dev_net(const struct net_device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline
|
static inline
|
||||||
void dev_net_set(struct net_device *dev, const struct net *net)
|
void dev_net_set(struct net_device *dev, struct net *net)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_NET_NS
|
#ifdef CONFIG_NET_NS
|
||||||
dev->nd_net = net;
|
dev->nd_net = net;
|
||||||
|
|
|
@ -219,7 +219,7 @@ struct net *twsk_net(const struct inet_timewait_sock *twsk)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline
|
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
|
#ifdef CONFIG_NET_NS
|
||||||
twsk->tw_net = net;
|
twsk->tw_net = net;
|
||||||
|
|
|
@ -1358,7 +1358,7 @@ struct net *sock_net(const struct sock *sk)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline
|
static inline
|
||||||
void sock_net_set(struct sock *sk, const struct net *net)
|
void sock_net_set(struct sock *sk, struct net *net)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_NET_NS
|
#ifdef CONFIG_NET_NS
|
||||||
sk->sk_net = net;
|
sk->sk_net = net;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче