projects
/
unionfs-odf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24d61bb
)
unionfs: Correction of API kernel_run to kthread_run
author
Yamini Allu
<yamini@dewey.fsl.cs.sunysb.edu>
Mon, 25 Feb 2008 15:19:36 +0000
(10:19 -0500)
committer
Rachita Kothiyal
<rachita@dewey.fsl.cs.sunysb.edu>
Thu, 1 May 2008 23:03:36 +0000
(19:03 -0400)
Signed-off-by: Yamini P. Allu <yamini@fsl.cs.sunysb.edu>
fs/unionfs/sioq.c
patch
|
blob
|
history
diff --git
a/fs/unionfs/sioq.c
b/fs/unionfs/sioq.c
index d44a899b65577655b81ca4523248a818f6831c7b..927eecc52c9ac2b748846fdf29386addd48a05eb 100644
(file)
--- a/
fs/unionfs/sioq.c
+++ b/
fs/unionfs/sioq.c
@@
-96,7
+96,7
@@
int run_sioa(struct sioa_args *args, void (*work) (void *),
args->process = NULL;
args->timeout = timeout;
args->work = work;
- args->process = k
ernel
_run(__run_sioa, args, "kunionfs_odf_cleanup");
+ args->process = k
thread
_run(__run_sioa, args, "kunionfs_odf_cleanup");
if (IS_ERR(args->process))
err = PTR_ERR(args->process);
return err;