diff options
Diffstat (limited to 'fs/proc/task_mmu.c')
-rw-r--r-- | fs/proc/task_mmu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c index a34c440f8d25..ae4d3f2c8cb2 100644 --- a/fs/proc/task_mmu.c +++ b/fs/proc/task_mmu.c | |||
@@ -216,7 +216,7 @@ static void m_stop(struct seq_file *m, void *v) | |||
216 | } | 216 | } |
217 | 217 | ||
218 | static int do_maps_open(struct inode *inode, struct file *file, | 218 | static int do_maps_open(struct inode *inode, struct file *file, |
219 | struct seq_operations *ops) | 219 | const struct seq_operations *ops) |
220 | { | 220 | { |
221 | struct proc_maps_private *priv; | 221 | struct proc_maps_private *priv; |
222 | int ret = -ENOMEM; | 222 | int ret = -ENOMEM; |
@@ -299,7 +299,7 @@ static int show_map(struct seq_file *m, void *v) | |||
299 | return 0; | 299 | return 0; |
300 | } | 300 | } |
301 | 301 | ||
302 | static struct seq_operations proc_pid_maps_op = { | 302 | static const struct seq_operations proc_pid_maps_op = { |
303 | .start = m_start, | 303 | .start = m_start, |
304 | .next = m_next, | 304 | .next = m_next, |
305 | .stop = m_stop, | 305 | .stop = m_stop, |
@@ -434,7 +434,7 @@ static int show_smap(struct seq_file *m, void *v) | |||
434 | return ret; | 434 | return ret; |
435 | } | 435 | } |
436 | 436 | ||
437 | static struct seq_operations proc_pid_smaps_op = { | 437 | static const struct seq_operations proc_pid_smaps_op = { |
438 | .start = m_start, | 438 | .start = m_start, |
439 | .next = m_next, | 439 | .next = m_next, |
440 | .stop = m_stop, | 440 | .stop = m_stop, |
@@ -734,7 +734,7 @@ static int show_numa_map_checked(struct seq_file *m, void *v) | |||
734 | return show_numa_map(m, v); | 734 | return show_numa_map(m, v); |
735 | } | 735 | } |
736 | 736 | ||
737 | static struct seq_operations proc_pid_numa_maps_op = { | 737 | static const struct seq_operations proc_pid_numa_maps_op = { |
738 | .start = m_start, | 738 | .start = m_start, |
739 | .next = m_next, | 739 | .next = m_next, |
740 | .stop = m_stop, | 740 | .stop = m_stop, |