From: Yamini Allu Date: Mon, 25 Feb 2008 15:19:36 +0000 (-0500) Subject: unionfs: Correction of API kernel_run to kthread_run X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=3eb303704a4a3916795e0928acec1967713a8bca;p=unionfs-odf.git unionfs: Correction of API kernel_run to kthread_run Signed-off-by: Yamini P. Allu --- diff --git a/fs/unionfs/sioq.c b/fs/unionfs/sioq.c index d44a899b65..927eecc52c 100644 --- 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 = 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;