]> Git Repo - linux.git/commitdiff
avr32: proc: use non-racy method for /proc/tlb creation
authorDenis V. Lunev <[email protected]>
Tue, 29 Apr 2008 08:02:22 +0000 (01:02 -0700)
committerLinus Torvalds <[email protected]>
Tue, 29 Apr 2008 15:06:21 +0000 (08:06 -0700)
Use proc_create() to make sure that ->proc_fops be setup before gluing PDE to
main tree.

Signed-off-by: Denis V. Lunev <[email protected]>
Cc: Haavard Skinnemoen <[email protected]>
Cc: Alexey Dobriyan <[email protected]>
Cc: "Eric W. Biederman" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/avr32/mm/tlb.c

index b835257a8fa39d88d794ad2667ef9f46a4e6028c..cd12edbea9f26c403bdc5a3c85f034e76766fc9a 100644 (file)
@@ -369,11 +369,7 @@ static const struct file_operations proc_tlb_operations = {
 
 static int __init proctlb_init(void)
 {
-       struct proc_dir_entry *entry;
-
-       entry = create_proc_entry("tlb", 0, NULL);
-       if (entry)
-               entry->proc_fops = &proc_tlb_operations;
+       proc_create("tlb", 0, NULL, &proc_tlb_operations);
        return 0;
 }
 late_initcall(proctlb_init);
This page took 0.056661 seconds and 4 git commands to generate.