staging: lustre: Fix incompatible argument in osc_match_base

sparse warn about _u32 used for two arguments in function
osc_match_base instead of enum ldlm_type and enum ldlm_mode as
used in the prototype.

Signed-off-by: Maxime Rossi Bellom <mrossibellom@gmail.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Maxime Rossi Bellom 2017-02-16 11:50:26 +01:00 committed by Greg Kroah-Hartman
parent 9ff7400bd3
commit 66dc935358

View file

@ -2081,9 +2081,9 @@ no_match:
} }
int osc_match_base(struct obd_export *exp, struct ldlm_res_id *res_id, int osc_match_base(struct obd_export *exp, struct ldlm_res_id *res_id,
__u32 type, union ldlm_policy_data *policy, __u32 mode, enum ldlm_type type, union ldlm_policy_data *policy,
__u64 *flags, void *data, struct lustre_handle *lockh, enum ldlm_mode mode, __u64 *flags, void *data,
int unref) struct lustre_handle *lockh, int unref)
{ {
struct obd_device *obd = exp->exp_obd; struct obd_device *obd = exp->exp_obd;
__u64 lflags = *flags; __u64 lflags = *flags;