staging: lustre: ldlm: remove unused 'work_list' arg from ldlm_process_flock_lock()

'work_list' is only set to NULL, and is never used.
So discard it.

Signed-off-by: NeilBrown <neilb@suse.com>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
NeilBrown 2017-10-23 11:53:49 +11:00 committed by Greg Kroah-Hartman
parent 09d61fdb86
commit f88faec4d4
1 changed files with 2 additions and 3 deletions

View File

@ -123,8 +123,7 @@ ldlm_flock_destroy(struct ldlm_lock *lock, enum ldlm_mode mode, __u64 flags)
* *
*/ */
static int ldlm_process_flock_lock(struct ldlm_lock *req, __u64 *flags, static int ldlm_process_flock_lock(struct ldlm_lock *req, __u64 *flags,
enum ldlm_error *err, enum ldlm_error *err)
struct list_head *work_list)
{ {
struct ldlm_resource *res = req->l_resource; struct ldlm_resource *res = req->l_resource;
struct ldlm_namespace *ns = ldlm_res_to_ns(res); struct ldlm_namespace *ns = ldlm_res_to_ns(res);
@ -596,7 +595,7 @@ granted:
/* We need to reprocess the lock to do merges or splits /* We need to reprocess the lock to do merges or splits
* with existing locks owned by this process. * with existing locks owned by this process.
*/ */
ldlm_process_flock_lock(lock, &noreproc, &err, NULL); ldlm_process_flock_lock(lock, &noreproc, &err);
} }
unlock_res_and_lock(lock); unlock_res_and_lock(lock);
return rc; return rc;