aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-02-29 11:39:17 -0800
committerDavid S. Miller <davem@davemloft.net>2008-02-29 11:39:17 -0800
commit665bba10872fe995773b10c491519f148110576d (patch)
tree6e252d41b2981dd53a3d637cbdbe49b506a8c4c0 /net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
parent[ATALK/DECNET]: Use seq_open_private in appletalk and decnet. (diff)
downloadlinux-dev-665bba10872fe995773b10c491519f148110576d.tar.xz
linux-dev-665bba10872fe995773b10c491519f148110576d.zip
[NETFILTER/RXRPC]: Don't use seq_release_private where inappropriate.
Some netfilter code and rxrpc one use seq_open() to open a proc file, but seq_release_private to release one. This is harmless, but ambiguous. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c')
-rw-r--r--net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
index 089252e82c01..9668c3a23efe 100644
--- a/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
+++ b/net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.c
@@ -379,7 +379,7 @@ static const struct file_operations ct_cpu_seq_fops = {
.open = ct_cpu_seq_open,
.read = seq_read,
.llseek = seq_lseek,
- .release = seq_release_private,
+ .release = seq_release,
};
int __init nf_conntrack_ipv4_compat_init(void)