diff options
author | Denis V. Lunev <den@openvz.org> | 2008-04-29 04:02:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:21 -0400 |
commit | 0d9f10f4eb65797cf2d238836f7439045a37722e (patch) | |
tree | 73d328b81b0d41e20d8d59454729e5f9f06bfae3 /arch | |
parent | 40ad35d34fa62097b4664c7c1690cbe404d73744 (diff) |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/avr32/mm/tlb.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/avr32/mm/tlb.c b/arch/avr32/mm/tlb.c index b835257a8fa3..cd12edbea9f2 100644 --- a/arch/avr32/mm/tlb.c +++ b/arch/avr32/mm/tlb.c | |||
@@ -369,11 +369,7 @@ static const struct file_operations proc_tlb_operations = { | |||
369 | 369 | ||
370 | static int __init proctlb_init(void) | 370 | static int __init proctlb_init(void) |
371 | { | 371 | { |
372 | struct proc_dir_entry *entry; | 372 | proc_create("tlb", 0, NULL, &proc_tlb_operations); |
373 | |||
374 | entry = create_proc_entry("tlb", 0, NULL); | ||
375 | if (entry) | ||
376 | entry->proc_fops = &proc_tlb_operations; | ||
377 | return 0; | 373 | return 0; |
378 | } | 374 | } |
379 | late_initcall(proctlb_init); | 375 | late_initcall(proctlb_init); |