Commit 5e01c959 authored by John L. Hammond's avatar John L. Hammond Committed by Greg Kroah-Hartman

staging: lustre: lmv: access lum_stripe_offset as little endian

By the time that a struct lmv_user_md reaches lmv_placement_policy()
it has already been converted to little endian. Therefore use the
appropriate macros around accesses to this this field. This issue was
found by rewriting the definition of struct lmv_user_md to use the
__leXX typedefs and running sparse.
Signed-off-by: default avatarJohn L. Hammond <john.hammond@intel.com>
Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-4738
Reviewed-on: http://review.whamcloud.com/9671Reviewed-by: default avatarDmitry Eremin <dmitry.eremin@intel.com>
Reviewed-by: default avatarSwapnil Pimpale <spimpale@ddn.com>
Reviewed-by: default avatarOleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ec35d45
...@@ -1242,15 +1242,15 @@ static int lmv_placement_policy(struct obd_device *obd, ...@@ -1242,15 +1242,15 @@ static int lmv_placement_policy(struct obd_device *obd,
struct lmv_user_md *lum; struct lmv_user_md *lum;
lum = op_data->op_data; lum = op_data->op_data;
if (lum->lum_stripe_offset != (__u32)-1) { if (le32_to_cpu(lum->lum_stripe_offset) != (__u32)-1) {
*mds = lum->lum_stripe_offset; *mds = le32_to_cpu(lum->lum_stripe_offset);
} else { } else {
/* /*
* -1 means default, which will be in the same MDT with * -1 means default, which will be in the same MDT with
* the stripe * the stripe
*/ */
*mds = op_data->op_mds; *mds = op_data->op_mds;
lum->lum_stripe_offset = op_data->op_mds; lum->lum_stripe_offset = cpu_to_le32(op_data->op_mds);
} }
} else { } else {
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment