Commit 68fcadd1 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller

[TCP]: Place file operations directly into tcp_seq_afinfo.

No need to have separate never-used variable.
Signed-off-by: default avatarDenis V. Lunev <den@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 52d6f3f1
...@@ -1328,7 +1328,7 @@ struct tcp_seq_afinfo { ...@@ -1328,7 +1328,7 @@ struct tcp_seq_afinfo {
struct module *owner; struct module *owner;
char *name; char *name;
sa_family_t family; sa_family_t family;
struct file_operations *seq_fops; struct file_operations seq_fops;
struct seq_operations seq_ops; struct seq_operations seq_ops;
}; };
......
...@@ -2232,17 +2232,17 @@ int tcp_proc_register(struct net *net, struct tcp_seq_afinfo *afinfo) ...@@ -2232,17 +2232,17 @@ int tcp_proc_register(struct net *net, struct tcp_seq_afinfo *afinfo)
int rc = 0; int rc = 0;
struct proc_dir_entry *p; struct proc_dir_entry *p;
afinfo->seq_fops->owner = afinfo->owner; afinfo->seq_fops.owner = afinfo->owner;
afinfo->seq_fops->open = tcp_seq_open; afinfo->seq_fops.open = tcp_seq_open;
afinfo->seq_fops->read = seq_read; afinfo->seq_fops.read = seq_read;
afinfo->seq_fops->llseek = seq_lseek; afinfo->seq_fops.llseek = seq_lseek;
afinfo->seq_fops->release = seq_release_net; afinfo->seq_fops.release = seq_release_net;
afinfo->seq_ops.start = tcp_seq_start; afinfo->seq_ops.start = tcp_seq_start;
afinfo->seq_ops.next = tcp_seq_next; afinfo->seq_ops.next = tcp_seq_next;
afinfo->seq_ops.stop = tcp_seq_stop; afinfo->seq_ops.stop = tcp_seq_stop;
p = proc_net_fops_create(net, afinfo->name, S_IRUGO, afinfo->seq_fops); p = proc_net_fops_create(net, afinfo->name, S_IRUGO, &afinfo->seq_fops);
if (p) if (p)
p->data = afinfo; p->data = afinfo;
else else
...@@ -2253,7 +2253,6 @@ int tcp_proc_register(struct net *net, struct tcp_seq_afinfo *afinfo) ...@@ -2253,7 +2253,6 @@ int tcp_proc_register(struct net *net, struct tcp_seq_afinfo *afinfo)
void tcp_proc_unregister(struct net *net, struct tcp_seq_afinfo *afinfo) void tcp_proc_unregister(struct net *net, struct tcp_seq_afinfo *afinfo)
{ {
proc_net_remove(net, afinfo->name); proc_net_remove(net, afinfo->name);
memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops));
} }
static void get_openreq4(struct sock *sk, struct request_sock *req, static void get_openreq4(struct sock *sk, struct request_sock *req,
...@@ -2382,12 +2381,10 @@ out: ...@@ -2382,12 +2381,10 @@ out:
return 0; return 0;
} }
static struct file_operations tcp4_seq_fops;
static struct tcp_seq_afinfo tcp4_seq_afinfo = { static struct tcp_seq_afinfo tcp4_seq_afinfo = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "tcp", .name = "tcp",
.family = AF_INET, .family = AF_INET,
.seq_fops = &tcp4_seq_fops,
.seq_ops = { .seq_ops = {
.show = tcp4_seq_show, .show = tcp4_seq_show,
}, },
......
...@@ -2120,12 +2120,10 @@ out: ...@@ -2120,12 +2120,10 @@ out:
return 0; return 0;
} }
static struct file_operations tcp6_seq_fops;
static struct tcp_seq_afinfo tcp6_seq_afinfo = { static struct tcp_seq_afinfo tcp6_seq_afinfo = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "tcp6", .name = "tcp6",
.family = AF_INET6, .family = AF_INET6,
.seq_fops = &tcp6_seq_fops,
.seq_ops = { .seq_ops = {
.show = tcp6_seq_show, .show = tcp6_seq_show,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment