powerpc: use non-racy method for proc entries creation
Use proc_create()/proc_create_data() to make sure that ->proc_fops and ->data be setup before gluing PDE to main tree. Add correct ->owner to proc_fops to fix reading/module unloading race. Signed-off-by: Denis V. Lunev <den@openvz.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
6f1c86ec31
commit
667471386d
@@ -468,10 +468,9 @@ static int __init rtas_init(void)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
entry = create_proc_entry("ppc64/rtas/error_log", S_IRUSR, NULL);
|
||||
if (entry)
|
||||
entry->proc_fops = &proc_rtas_log_operations;
|
||||
else
|
||||
entry = proc_create("ppc64/rtas/error_log", S_IRUSR, NULL,
|
||||
&proc_rtas_log_operations);
|
||||
if (!entry)
|
||||
printk(KERN_ERR "Failed to create error_log proc entry\n");
|
||||
|
||||
if (kernel_thread(rtasd, NULL, CLONE_FS) < 0)
|
||||
|
Reference in New Issue
Block a user