unionfs: Correction of API kernel_run to kthread_run
authorYamini Allu <yamini@dewey.fsl.cs.sunysb.edu>
Mon, 25 Feb 2008 15:19:36 +0000 (10:19 -0500)
committerRachita 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

index d44a899b65577655b81ca4523248a818f6831c7b..927eecc52c9ac2b748846fdf29386addd48a05eb 100644 (file)
@@ -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 = kernel_run(__run_sioa, args, "kunionfs_odf_cleanup");
+       args->process = kthread_run(__run_sioa, args, "kunionfs_odf_cleanup");
        if (IS_ERR(args->process))
                err = PTR_ERR(args->process);
        return err;