提交 03a44825 编写于 作者: J Jan Engelhardt 提交者: Linus Torvalds

procfs: constify function pointer tables

Signed-off-by: NJan Engelhardt <jengelh@computergmbh.de>
Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
Acked-by: NMike Frysinger <vapier@gentoo.org>
Acked-By: NDavid Howells <dhowells@redhat.com>
Acked-by: NBryan Wu <bryan.wu@analog.com>
Acked-by: NJesper Nilsson <jesper.nilsson@axis.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 ec26e117
...@@ -1471,7 +1471,7 @@ c_stop(struct seq_file *f, void *v) ...@@ -1471,7 +1471,7 @@ c_stop(struct seq_file *f, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -700,7 +700,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -700,7 +700,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -180,7 +180,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -180,7 +180,7 @@ static void c_stop(struct seq_file *m, void *v)
extern int show_cpuinfo(struct seq_file *m, void *v); extern int show_cpuinfo(struct seq_file *m, void *v);
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -1113,7 +1113,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -1113,7 +1113,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -236,7 +236,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -236,7 +236,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -369,7 +369,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -369,7 +369,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -450,7 +450,7 @@ static void *c_next(struct seq_file *m, void *v, loff_t *pos) ...@@ -450,7 +450,7 @@ static void *c_next(struct seq_file *m, void *v, loff_t *pos)
static void c_stop(struct seq_file *m, void *v) static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -260,7 +260,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -260,7 +260,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -190,7 +190,7 @@ c_stop (struct seq_file *m, void *v) ...@@ -190,7 +190,7 @@ c_stop (struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = c_start, .start = c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -275,7 +275,7 @@ static void c_stop(struct seq_file *m, void *v) ...@@ -275,7 +275,7 @@ static void c_stop(struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start =c_start, .start =c_start,
.next = c_next, .next = c_next,
.stop = c_stop, .stop = c_stop,
......
...@@ -59,7 +59,7 @@ static void cpuinfo_stop (struct seq_file *m, void *v) ...@@ -59,7 +59,7 @@ static void cpuinfo_stop (struct seq_file *m, void *v)
{ {
} }
struct seq_operations cpuinfo_op = { const struct seq_operations cpuinfo_op = {
.start = cpuinfo_start, .start = cpuinfo_start,
.next = cpuinfo_next, .next = cpuinfo_next,
.stop = cpuinfo_stop, .stop = cpuinfo_stop,
......
...@@ -469,7 +469,7 @@ c_stop(struct seq_file *f, void *v) ...@@ -469,7 +469,7 @@ c_stop(struct seq_file *f, void *v)
{ {
} }
struct seq_operations cpuinfo_op = const struct seq_operations cpuinfo_op =
{ {
start: c_start, start: c_start,
next: c_next, next: c_next,
......
...@@ -506,7 +506,7 @@ static const struct inode_operations proc_def_inode_operations = { ...@@ -506,7 +506,7 @@ static const struct inode_operations proc_def_inode_operations = {
.setattr = proc_setattr, .setattr = proc_setattr,
}; };
extern struct seq_operations mounts_op; extern const struct seq_operations mounts_op;
struct proc_mounts { struct proc_mounts {
struct seq_file m; struct seq_file m;
int event; int event;
...@@ -585,7 +585,7 @@ static const struct file_operations proc_mounts_operations = { ...@@ -585,7 +585,7 @@ static const struct file_operations proc_mounts_operations = {
.poll = mounts_poll, .poll = mounts_poll,
}; };
extern struct seq_operations mountstats_op; extern const struct seq_operations mountstats_op;
static int mountstats_open(struct inode *inode, struct file *file) static int mountstats_open(struct inode *inode, struct file *file)
{ {
int ret = seq_open(file, &mountstats_op); int ret = seq_open(file, &mountstats_op);
......
...@@ -116,7 +116,7 @@ static void *nommu_vma_list_next(struct seq_file *m, void *v, loff_t *pos) ...@@ -116,7 +116,7 @@ static void *nommu_vma_list_next(struct seq_file *m, void *v, loff_t *pos)
return rb_next((struct rb_node *) v); return rb_next((struct rb_node *) v);
} }
static struct seq_operations proc_nommu_vma_list_seqop = { static const struct seq_operations proc_nommu_vma_list_seqop = {
.start = nommu_vma_list_start, .start = nommu_vma_list_start,
.next = nommu_vma_list_next, .next = nommu_vma_list_next,
.stop = nommu_vma_list_stop, .stop = nommu_vma_list_stop,
......
...@@ -222,7 +222,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off, ...@@ -222,7 +222,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
#undef K #undef K
} }
extern struct seq_operations fragmentation_op; extern const struct seq_operations fragmentation_op;
static int fragmentation_open(struct inode *inode, struct file *file) static int fragmentation_open(struct inode *inode, struct file *file)
{ {
(void)inode; (void)inode;
...@@ -236,7 +236,7 @@ static const struct file_operations fragmentation_file_operations = { ...@@ -236,7 +236,7 @@ static const struct file_operations fragmentation_file_operations = {
.release = seq_release, .release = seq_release,
}; };
extern struct seq_operations pagetypeinfo_op; extern const struct seq_operations pagetypeinfo_op;
static int pagetypeinfo_open(struct inode *inode, struct file *file) static int pagetypeinfo_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &pagetypeinfo_op); return seq_open(file, &pagetypeinfo_op);
...@@ -249,7 +249,7 @@ static const struct file_operations pagetypeinfo_file_ops = { ...@@ -249,7 +249,7 @@ static const struct file_operations pagetypeinfo_file_ops = {
.release = seq_release, .release = seq_release,
}; };
extern struct seq_operations zoneinfo_op; extern const struct seq_operations zoneinfo_op;
static int zoneinfo_open(struct inode *inode, struct file *file) static int zoneinfo_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &zoneinfo_op); return seq_open(file, &zoneinfo_op);
...@@ -274,7 +274,7 @@ static int version_read_proc(char *page, char **start, off_t off, ...@@ -274,7 +274,7 @@ static int version_read_proc(char *page, char **start, off_t off,
return proc_calc_metrics(page, start, off, count, eof, len); return proc_calc_metrics(page, start, off, count, eof, len);
} }
extern struct seq_operations cpuinfo_op; extern const struct seq_operations cpuinfo_op;
static int cpuinfo_open(struct inode *inode, struct file *file) static int cpuinfo_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &cpuinfo_op); return seq_open(file, &cpuinfo_op);
...@@ -327,7 +327,7 @@ static void devinfo_stop(struct seq_file *f, void *v) ...@@ -327,7 +327,7 @@ static void devinfo_stop(struct seq_file *f, void *v)
/* Nothing to do */ /* Nothing to do */
} }
static struct seq_operations devinfo_ops = { static const struct seq_operations devinfo_ops = {
.start = devinfo_start, .start = devinfo_start,
.next = devinfo_next, .next = devinfo_next,
.stop = devinfo_stop, .stop = devinfo_stop,
...@@ -346,7 +346,7 @@ static const struct file_operations proc_devinfo_operations = { ...@@ -346,7 +346,7 @@ static const struct file_operations proc_devinfo_operations = {
.release = seq_release, .release = seq_release,
}; };
extern struct seq_operations vmstat_op; extern const struct seq_operations vmstat_op;
static int vmstat_open(struct inode *inode, struct file *file) static int vmstat_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &vmstat_op); return seq_open(file, &vmstat_op);
...@@ -377,7 +377,7 @@ static int stram_read_proc(char *page, char **start, off_t off, ...@@ -377,7 +377,7 @@ static int stram_read_proc(char *page, char **start, off_t off,
#endif #endif
#ifdef CONFIG_BLOCK #ifdef CONFIG_BLOCK
extern struct seq_operations partitions_op; extern const struct seq_operations partitions_op;
static int partitions_open(struct inode *inode, struct file *file) static int partitions_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &partitions_op); return seq_open(file, &partitions_op);
...@@ -389,7 +389,7 @@ static const struct file_operations proc_partitions_operations = { ...@@ -389,7 +389,7 @@ static const struct file_operations proc_partitions_operations = {
.release = seq_release, .release = seq_release,
}; };
extern struct seq_operations diskstats_op; extern const struct seq_operations diskstats_op;
static int diskstats_open(struct inode *inode, struct file *file) static int diskstats_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &diskstats_op); return seq_open(file, &diskstats_op);
...@@ -403,7 +403,7 @@ static const struct file_operations proc_diskstats_operations = { ...@@ -403,7 +403,7 @@ static const struct file_operations proc_diskstats_operations = {
#endif #endif
#ifdef CONFIG_MODULES #ifdef CONFIG_MODULES
extern struct seq_operations modules_op; extern const struct seq_operations modules_op;
static int modules_open(struct inode *inode, struct file *file) static int modules_open(struct inode *inode, struct file *file)
{ {
return seq_open(file, &modules_op); return seq_open(file, &modules_op);
...@@ -430,7 +430,7 @@ static const struct file_operations proc_slabinfo_operations = { ...@@ -430,7 +430,7 @@ static const struct file_operations proc_slabinfo_operations = {
}; };
#ifdef CONFIG_DEBUG_SLAB_LEAK #ifdef CONFIG_DEBUG_SLAB_LEAK
extern struct seq_operations slabstats_op; extern const struct seq_operations slabstats_op;
static int slabstats_open(struct inode *inode, struct file *file) static int slabstats_open(struct inode *inode, struct file *file)
{ {
unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL); unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
...@@ -604,7 +604,7 @@ static void int_seq_stop(struct seq_file *f, void *v) ...@@ -604,7 +604,7 @@ static void int_seq_stop(struct seq_file *f, void *v)
} }
static struct seq_operations int_seq_ops = { static const struct seq_operations int_seq_ops = {
.start = int_seq_start, .start = int_seq_start,
.next = int_seq_next, .next = int_seq_next,
.stop = int_seq_stop, .stop = int_seq_stop,
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
static struct dentry_operations proc_sys_dentry_operations; static struct dentry_operations proc_sys_dentry_operations;
static const struct file_operations proc_sys_file_operations; static const struct file_operations proc_sys_file_operations;
static struct inode_operations proc_sys_inode_operations; static const struct inode_operations proc_sys_inode_operations;
static void proc_sys_refresh_inode(struct inode *inode, struct ctl_table *table) static void proc_sys_refresh_inode(struct inode *inode, struct ctl_table *table)
{ {
...@@ -446,7 +446,7 @@ static const struct file_operations proc_sys_file_operations = { ...@@ -446,7 +446,7 @@ static const struct file_operations proc_sys_file_operations = {
.readdir = proc_sys_readdir, .readdir = proc_sys_readdir,
}; };
static struct inode_operations proc_sys_inode_operations = { static const struct inode_operations proc_sys_inode_operations = {
.lookup = proc_sys_lookup, .lookup = proc_sys_lookup,
.permission = proc_sys_permission, .permission = proc_sys_permission,
.setattr = proc_sys_setattr, .setattr = proc_sys_setattr,
......
...@@ -117,7 +117,7 @@ static void t_stop(struct seq_file *m, void *v) ...@@ -117,7 +117,7 @@ static void t_stop(struct seq_file *m, void *v)
mutex_unlock(&tty_mutex); mutex_unlock(&tty_mutex);
} }
static struct seq_operations tty_drivers_op = { static const struct seq_operations tty_drivers_op = {
.start = t_start, .start = t_start,
.next = t_next, .next = t_next,
.stop = t_stop, .stop = t_stop,
......
...@@ -216,7 +216,7 @@ static void m_stop(struct seq_file *m, void *v) ...@@ -216,7 +216,7 @@ static void m_stop(struct seq_file *m, void *v)
} }
static int do_maps_open(struct inode *inode, struct file *file, static int do_maps_open(struct inode *inode, struct file *file,
struct seq_operations *ops) const struct seq_operations *ops)
{ {
struct proc_maps_private *priv; struct proc_maps_private *priv;
int ret = -ENOMEM; int ret = -ENOMEM;
...@@ -299,7 +299,7 @@ static int show_map(struct seq_file *m, void *v) ...@@ -299,7 +299,7 @@ static int show_map(struct seq_file *m, void *v)
return 0; return 0;
} }
static struct seq_operations proc_pid_maps_op = { static const struct seq_operations proc_pid_maps_op = {
.start = m_start, .start = m_start,
.next = m_next, .next = m_next,
.stop = m_stop, .stop = m_stop,
...@@ -434,7 +434,7 @@ static int show_smap(struct seq_file *m, void *v) ...@@ -434,7 +434,7 @@ static int show_smap(struct seq_file *m, void *v)
return ret; return ret;
} }
static struct seq_operations proc_pid_smaps_op = { static const struct seq_operations proc_pid_smaps_op = {
.start = m_start, .start = m_start,
.next = m_next, .next = m_next,
.stop = m_stop, .stop = m_stop,
...@@ -734,7 +734,7 @@ static int show_numa_map_checked(struct seq_file *m, void *v) ...@@ -734,7 +734,7 @@ static int show_numa_map_checked(struct seq_file *m, void *v)
return show_numa_map(m, v); return show_numa_map(m, v);
} }
static struct seq_operations proc_pid_numa_maps_op = { static const struct seq_operations proc_pid_numa_maps_op = {
.start = m_start, .start = m_start,
.next = m_next, .next = m_next,
.stop = m_stop, .stop = m_stop,
......
...@@ -198,7 +198,7 @@ static void *m_next(struct seq_file *m, void *_vml, loff_t *pos) ...@@ -198,7 +198,7 @@ static void *m_next(struct seq_file *m, void *_vml, loff_t *pos)
return vml ? vml->next : NULL; return vml ? vml->next : NULL;
} }
static struct seq_operations proc_pid_maps_ops = { static const struct seq_operations proc_pid_maps_ops = {
.start = m_start, .start = m_start,
.next = m_next, .next = m_next,
.stop = m_stop, .stop = m_stop,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册