diff options
author | Christoph Hellwig <hch@lst.de> | 2018-04-11 12:32:45 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-05-16 07:24:30 +0200 |
commit | a2dcdee3748b664bf011b4b12de64e945dd4c8c2 (patch) | |
tree | d113e8f1bff5bcb75f69f15532b3bf4d3be76f04 /include/net/ip_vs.h | |
parent | 1d98c16d444f99b7869b271c25f23f58c1ac68c1 (diff) | |
download | linux-stable-a2dcdee3748b664bf011b4b12de64e945dd4c8c2.tar.gz linux-stable-a2dcdee3748b664bf011b4b12de64e945dd4c8c2.tar.bz2 linux-stable-a2dcdee3748b664bf011b4b12de64e945dd4c8c2.zip |
net: move seq_file_single_net to <linux/seq_file_net.h>
This helper deals with single_{open,release}_net internals and thus
belongs here.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/net/ip_vs.h')
-rw-r--r-- | include/net/ip_vs.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h index eb0bec043c96..aea7a124e66b 100644 --- a/include/net/ip_vs.h +++ b/include/net/ip_vs.h @@ -41,18 +41,6 @@ static inline struct netns_ipvs *net_ipvs(struct net* net) return net->ipvs; } -/* This one needed for single_open_net since net is stored directly in - * private not as a struct i.e. seq_file_net can't be used. - */ -static inline struct net *seq_file_single_net(struct seq_file *seq) -{ -#ifdef CONFIG_NET_NS - return (struct net *)seq->private; -#else - return &init_net; -#endif -} - /* Connections' size value needed by ip_vs_ctl.c */ extern int ip_vs_conn_tab_size; |