提交 ec1b9466 编写于 作者: A Andrew Morton 提交者: Linus Torvalds

[PATCH] ia64: const f_ops fix

Tweak the proc setup code so things work OK with const
proc_dir_entry.proc_fops.
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 3c30a752
...@@ -93,19 +93,22 @@ static int coherence_id_open(struct inode *inode, struct file *file) ...@@ -93,19 +93,22 @@ static int coherence_id_open(struct inode *inode, struct file *file)
static struct proc_dir_entry static struct proc_dir_entry
*sn_procfs_create_entry(const char *name, struct proc_dir_entry *parent, *sn_procfs_create_entry(const char *name, struct proc_dir_entry *parent,
int (*openfunc)(struct inode *, struct file *), int (*openfunc)(struct inode *, struct file *),
int (*releasefunc)(struct inode *, struct file *)) int (*releasefunc)(struct inode *, struct file *),
ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *))
{ {
struct proc_dir_entry *e = create_proc_entry(name, 0444, parent); struct proc_dir_entry *e = create_proc_entry(name, 0444, parent);
if (e) { if (e) {
e->proc_fops = (struct file_operations *)kmalloc( struct file_operations *f;
sizeof(struct file_operations), GFP_KERNEL);
if (e->proc_fops) { f = kzalloc(sizeof(*f), GFP_KERNEL);
memset(e->proc_fops, 0, sizeof(struct file_operations)); if (f) {
e->proc_fops->open = openfunc; f->open = openfunc;
e->proc_fops->read = seq_read; f->read = seq_read;
e->proc_fops->llseek = seq_lseek; f->llseek = seq_lseek;
e->proc_fops->release = releasefunc; f->release = releasefunc;
f->write = write;
e->proc_fops = f;
} }
} }
...@@ -119,31 +122,29 @@ extern int sn_topology_release(struct inode *, struct file *); ...@@ -119,31 +122,29 @@ extern int sn_topology_release(struct inode *, struct file *);
void register_sn_procfs(void) void register_sn_procfs(void)
{ {
static struct proc_dir_entry *sgi_proc_dir = NULL; static struct proc_dir_entry *sgi_proc_dir = NULL;
struct proc_dir_entry *e;
BUG_ON(sgi_proc_dir != NULL); BUG_ON(sgi_proc_dir != NULL);
if (!(sgi_proc_dir = proc_mkdir("sgi_sn", NULL))) if (!(sgi_proc_dir = proc_mkdir("sgi_sn", NULL)))
return; return;
sn_procfs_create_entry("partition_id", sgi_proc_dir, sn_procfs_create_entry("partition_id", sgi_proc_dir,
partition_id_open, single_release); partition_id_open, single_release, NULL);
sn_procfs_create_entry("system_serial_number", sgi_proc_dir, sn_procfs_create_entry("system_serial_number", sgi_proc_dir,
system_serial_number_open, single_release); system_serial_number_open, single_release, NULL);
sn_procfs_create_entry("licenseID", sgi_proc_dir, sn_procfs_create_entry("licenseID", sgi_proc_dir,
licenseID_open, single_release); licenseID_open, single_release, NULL);
e = sn_procfs_create_entry("sn_force_interrupt", sgi_proc_dir, sn_procfs_create_entry("sn_force_interrupt", sgi_proc_dir,
sn_force_interrupt_open, single_release); sn_force_interrupt_open, single_release,
if (e) sn_force_interrupt_write_proc);
e->proc_fops->write = sn_force_interrupt_write_proc;
sn_procfs_create_entry("coherence_id", sgi_proc_dir, sn_procfs_create_entry("coherence_id", sgi_proc_dir,
coherence_id_open, single_release); coherence_id_open, single_release, NULL);
sn_procfs_create_entry("sn_topology", sgi_proc_dir, sn_procfs_create_entry("sn_topology", sgi_proc_dir,
sn_topology_open, sn_topology_release); sn_topology_open, sn_topology_release, NULL);
} }
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册