diff options
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 8 |
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 | ||
965 | int raw_seq_open(struct inode *ino, struct file *file, struct raw_hashinfo *h) | 965 | int 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 | ||
981 | static int raw_v4_seq_open(struct inode *inode, struct file *file) | 981 | static 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 | ||
986 | static const struct file_operations raw_seq_fops = { | 986 | static const struct file_operations raw_seq_fops = { |