diff options
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r-- | net/ipv4/proc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index ccb199e9dd8b..ae68a691e8cd 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c | |||
@@ -79,7 +79,7 @@ static int sockstat_seq_open(struct inode *inode, struct file *file) | |||
79 | return single_open(file, sockstat_seq_show, NULL); | 79 | return single_open(file, sockstat_seq_show, NULL); |
80 | } | 80 | } |
81 | 81 | ||
82 | static struct file_operations sockstat_seq_fops = { | 82 | static const struct file_operations sockstat_seq_fops = { |
83 | .owner = THIS_MODULE, | 83 | .owner = THIS_MODULE, |
84 | .open = sockstat_seq_open, | 84 | .open = sockstat_seq_open, |
85 | .read = seq_read, | 85 | .read = seq_read, |
@@ -326,7 +326,7 @@ static int snmp_seq_open(struct inode *inode, struct file *file) | |||
326 | return single_open(file, snmp_seq_show, NULL); | 326 | return single_open(file, snmp_seq_show, NULL); |
327 | } | 327 | } |
328 | 328 | ||
329 | static struct file_operations snmp_seq_fops = { | 329 | static const struct file_operations snmp_seq_fops = { |
330 | .owner = THIS_MODULE, | 330 | .owner = THIS_MODULE, |
331 | .open = snmp_seq_open, | 331 | .open = snmp_seq_open, |
332 | .read = seq_read, | 332 | .read = seq_read, |
@@ -360,7 +360,7 @@ static int netstat_seq_open(struct inode *inode, struct file *file) | |||
360 | return single_open(file, netstat_seq_show, NULL); | 360 | return single_open(file, netstat_seq_show, NULL); |
361 | } | 361 | } |
362 | 362 | ||
363 | static struct file_operations netstat_seq_fops = { | 363 | static const struct file_operations netstat_seq_fops = { |
364 | .owner = THIS_MODULE, | 364 | .owner = THIS_MODULE, |
365 | .open = netstat_seq_open, | 365 | .open = netstat_seq_open, |
366 | .read = seq_read, | 366 | .read = seq_read, |