aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/raw.c
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-01-31 06:48:55 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-31 22:27:26 -0500
commit3046d76746311ac7ff0cdc3ec42db15730528dbf (patch)
tree575b92705383d8ae67aee0511cdbf46bb4de9ef9 /net/ipv4/raw.c
parent8cd850efa4948d57a2ed836911cfd1ab299e89c6 (diff)
[RAW]: Wrong content of the /proc/net/raw6.
The address of IPv6 raw sockets was shown in the wrong format, from IPv4 ones. The problem has been introduced by the commit 42a73808ed4f30b739eb52bcbb33a02fe62ceef5 ("[RAW]: Consolidate proc interface.") Thanks to Adrian Bunk who originally noticed the problem. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r--net/ipv4/raw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
index 830f19e2fce9..a3002fe65b7f 100644
--- a/net/ipv4/raw.c
+++ b/net/ipv4/raw.c
@@ -962,13 +962,13 @@ static const struct seq_operations raw_seq_ops = {
962 .show = raw_seq_show, 962 .show = raw_seq_show,
963}; 963};
964 964
965int raw_seq_open(struct inode *ino, struct file *file, struct raw_hashinfo *h) 965int raw_seq_open(struct inode *ino, struct file *file,
966 struct raw_hashinfo *h, const struct seq_operations *ops)
966{ 967{
967 int err; 968 int err;
968 struct raw_iter_state *i; 969 struct raw_iter_state *i;
969 970
970 err = seq_open_net(ino, file, &raw_seq_ops, 971 err = seq_open_net(ino, file, ops, sizeof(struct raw_iter_state));
971 sizeof(struct raw_iter_state));
972 if (err < 0) 972 if (err < 0)
973 return err; 973 return err;
974 974
@@ -980,7 +980,7 @@ EXPORT_SYMBOL_GPL(raw_seq_open);
980 980
981static int raw_v4_seq_open(struct inode *inode, struct file *file) 981static int raw_v4_seq_open(struct inode *inode, struct file *file)
982{ 982{
983 return raw_seq_open(inode, file, &raw_v4_hashinfo); 983 return raw_seq_open(inode, file, &raw_v4_hashinfo, &raw_seq_ops);
984} 984}
985 985
986static const struct file_operations raw_seq_fops = { 986static const struct file_operations raw_seq_fops = {