diff options
author | Denis V. Lunev <den@openvz.org> | 2008-05-01 07:35:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-01 11:04:02 -0400 |
commit | 3dfcf9c4bf1fda4aa75861bcf6c50607dd322fe5 (patch) | |
tree | f370d205ad3b1725fab3c3ef797982ef84bd2171 /drivers/block/cciss.c | |
parent | 8a3e77cc212f3bc8eccc95e0d046405cf2a02764 (diff) |
cciss: assign PDE->data before gluing PDE into /proc tree
Simply replace proc_create and further data assigned with proc_create_data.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Cc: Alexey Dobriyan <adobriyan@openvz.org>
Cc: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Mike Miller <mike.miller@hp.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r-- | drivers/block/cciss.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index e539be5750dc..e336b05fe4a7 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -428,13 +428,9 @@ static void __devinit cciss_procinit(int i) | |||
428 | proc_cciss = proc_mkdir("driver/cciss", NULL); | 428 | proc_cciss = proc_mkdir("driver/cciss", NULL); |
429 | if (!proc_cciss) | 429 | if (!proc_cciss) |
430 | return; | 430 | return; |
431 | pde = proc_create(hba[i]->devname, S_IWUSR | S_IRUSR | S_IRGRP | | 431 | pde = proc_create_data(hba[i]->devname, S_IWUSR | S_IRUSR | S_IRGRP | |
432 | S_IROTH, proc_cciss, | 432 | S_IROTH, proc_cciss, |
433 | &cciss_proc_fops); | 433 | &cciss_proc_fops, hba[i]); |
434 | if (!pde) | ||
435 | return; | ||
436 | |||
437 | pde->data = hba[i]; | ||
438 | } | 434 | } |
439 | #endif /* CONFIG_PROC_FS */ | 435 | #endif /* CONFIG_PROC_FS */ |
440 | 436 | ||