Commit 0d9f10f4eb65797cf2d238836f7439045a37722e

Authored by Denis V. Lunev
Committed by Linus Torvalds
1 parent 40ad35d34f

avr32: proc: use non-racy method for /proc/tlb creation

Use proc_create() to make sure that ->proc_fops be setup before gluing PDE to
main tree.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
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>

Showing 1 changed file with 1 additions and 5 deletions Side-by-side Diff

... ... @@ -369,11 +369,7 @@
369 369  
370 370 static int __init proctlb_init(void)
371 371 {
372   - struct proc_dir_entry *entry;
373   -
374   - entry = create_proc_entry("tlb", 0, NULL);
375   - if (entry)
376   - entry->proc_fops = &proc_tlb_operations;
  372 + proc_create("tlb", 0, NULL, &proc_tlb_operations);
377 373 return 0;
378 374 }
379 375 late_initcall(proctlb_init);