staging/lustre: Declare lov_getstripe lump argument as __user
This is a user pointer, so that makes sparse a lot happier. Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9751424142
commit
55f37f01f9
|
@ -197,7 +197,7 @@ int lov_packmd(struct obd_export *exp, struct lov_mds_md **lmm,
|
|||
int lov_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
|
||||
struct lov_mds_md *lmm, int lmm_bytes);
|
||||
int lov_getstripe(struct obd_export *exp,
|
||||
struct lov_stripe_md *lsm, struct lov_user_md *lump);
|
||||
struct lov_stripe_md *lsm, struct lov_user_md __user *lump);
|
||||
int lov_alloc_memmd(struct lov_stripe_md **lsmp, __u16 stripe_count,
|
||||
int pattern, int magic);
|
||||
int lov_free_memmd(struct lov_stripe_md **lsmp);
|
||||
|
|
|
@ -376,7 +376,7 @@ int lov_unpackmd(struct obd_export *exp, struct lov_stripe_md **lsmp,
|
|||
* lmm_magic must be LOV_USER_MAGIC.
|
||||
*/
|
||||
int lov_getstripe(struct obd_export *exp, struct lov_stripe_md *lsm,
|
||||
struct lov_user_md *lump)
|
||||
struct lov_user_md __user *lump)
|
||||
{
|
||||
/*
|
||||
* XXX huge struct allocated on stack.
|
||||
|
|
Loading…
Reference in New Issue