mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
nfs/localio: eliminate need for nfs_local_fsync_work forward declaration
Move nfs_local_fsync_ctx_alloc() after nfs_local_fsync_work(). Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
parent
0978e5b85f
commit
79a66e1465
@ -44,7 +44,6 @@ struct nfs_local_fsync_ctx {
|
||||
struct work_struct work;
|
||||
struct completion *done;
|
||||
};
|
||||
static void nfs_local_fsync_work(struct work_struct *work);
|
||||
|
||||
static bool localio_enabled __read_mostly = true;
|
||||
module_param(localio_enabled, bool, 0644);
|
||||
@ -678,21 +677,6 @@ nfs_local_release_commit_data(struct nfsd_file *localio,
|
||||
call_ops->rpc_release(data);
|
||||
}
|
||||
|
||||
static struct nfs_local_fsync_ctx *
|
||||
nfs_local_fsync_ctx_alloc(struct nfs_commit_data *data,
|
||||
struct nfsd_file *localio, gfp_t flags)
|
||||
{
|
||||
struct nfs_local_fsync_ctx *ctx = kmalloc(sizeof(*ctx), flags);
|
||||
|
||||
if (ctx != NULL) {
|
||||
ctx->localio = localio;
|
||||
ctx->data = data;
|
||||
INIT_WORK(&ctx->work, nfs_local_fsync_work);
|
||||
ctx->done = NULL;
|
||||
}
|
||||
return ctx;
|
||||
}
|
||||
|
||||
static void
|
||||
nfs_local_fsync_ctx_free(struct nfs_local_fsync_ctx *ctx)
|
||||
{
|
||||
@ -717,6 +701,21 @@ nfs_local_fsync_work(struct work_struct *work)
|
||||
nfs_local_fsync_ctx_free(ctx);
|
||||
}
|
||||
|
||||
static struct nfs_local_fsync_ctx *
|
||||
nfs_local_fsync_ctx_alloc(struct nfs_commit_data *data,
|
||||
struct nfsd_file *localio, gfp_t flags)
|
||||
{
|
||||
struct nfs_local_fsync_ctx *ctx = kmalloc(sizeof(*ctx), flags);
|
||||
|
||||
if (ctx != NULL) {
|
||||
ctx->localio = localio;
|
||||
ctx->data = data;
|
||||
INIT_WORK(&ctx->work, nfs_local_fsync_work);
|
||||
ctx->done = NULL;
|
||||
}
|
||||
return ctx;
|
||||
}
|
||||
|
||||
int nfs_local_commit(struct nfsd_file *localio,
|
||||
struct nfs_commit_data *data,
|
||||
const struct rpc_call_ops *call_ops, int how)
|
||||
|
Loading…
Reference in New Issue
Block a user