diff options
author | Denis V. Lunev <den@openvz.org> | 2008-04-29 04:02:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:22 -0400 |
commit | c33fff0afbef4f0467c99e3f47ee7e98ae78c77e (patch) | |
tree | d6b5f8dc77aa21de95bbca76c6be6056026cc1d8 /kernel/dma.c | |
parent | ac41cfd19bf77424519b962f8205ede51fceaac6 (diff) |
kernel: 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.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/dma.c')
-rw-r--r-- | kernel/dma.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/kernel/dma.c b/kernel/dma.c index 6a82bb716dac..d2c60a822790 100644 --- a/kernel/dma.c +++ b/kernel/dma.c | |||
@@ -149,12 +149,7 @@ static const struct file_operations proc_dma_operations = { | |||
149 | 149 | ||
150 | static int __init proc_dma_init(void) | 150 | static int __init proc_dma_init(void) |
151 | { | 151 | { |
152 | struct proc_dir_entry *e; | 152 | proc_create("dma", 0, NULL, &proc_dma_operations); |
153 | |||
154 | e = create_proc_entry("dma", 0, NULL); | ||
155 | if (e) | ||
156 | e->proc_fops = &proc_dma_operations; | ||
157 | |||
158 | return 0; | 153 | return 0; |
159 | } | 154 | } |
160 | 155 | ||