Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4146b1b authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller
Browse files

[TCP]: Replace struct net on tcp_iter_state with seq_net_private.

parent 2cf83afe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1333,7 +1333,7 @@ struct tcp_seq_afinfo {
};

struct tcp_iter_state {
	struct net              *net;
	struct seq_net_private	p;
	sa_family_t		family;
	enum tcp_seq_states	state;
	struct sock		*syn_wait_sk;
+5 −6
Original line number Diff line number Diff line
@@ -1954,7 +1954,7 @@ static void *listening_get_next(struct seq_file *seq, void *cur)
	struct hlist_node *node;
	struct sock *sk = cur;
	struct tcp_iter_state* st = seq->private;
	struct net *net = st->net;
	struct net *net = seq_file_net(seq);

	if (!sk) {
		st->bucket = 0;
@@ -2035,7 +2035,7 @@ static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
static void *established_get_first(struct seq_file *seq)
{
	struct tcp_iter_state* st = seq->private;
	struct net *net = st->net;
	struct net *net = seq_file_net(seq);
	void *rc = NULL;

	for (st->bucket = 0; st->bucket < tcp_hashinfo.ehash_size; ++st->bucket) {
@@ -2076,7 +2076,7 @@ static void *established_get_next(struct seq_file *seq, void *cur)
	struct inet_timewait_sock *tw;
	struct hlist_node *node;
	struct tcp_iter_state* st = seq->private;
	struct net *net = st->net;
	struct net *net = seq_file_net(seq);

	++st->num;

@@ -2233,7 +2233,7 @@ static int tcp_seq_open(struct inode *inode, struct file *file)
	s->seq_ops.next		= tcp_seq_next;
	s->seq_ops.show		= afinfo->seq_show;
	s->seq_ops.stop		= tcp_seq_stop;
	s->net                  = net;
	s->p.net                = net;

	rc = seq_open(file, &s->seq_ops);
	if (rc)
@@ -2252,9 +2252,8 @@ static int tcp_seq_open(struct inode *inode, struct file *file)
static int tcp_seq_release(struct inode *inode, struct file *file)
{
	struct seq_file *seq = file->private_data;
	struct tcp_iter_state *s = seq->private;

	put_net(s->net);
	put_net(seq_file_net(seq));
	seq_release_private(inode, file);
	return 0;
}