mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 12:21:15 -04:00
staging: lustre: Fix sparse, using plain integer as NULL pointer in lov_object_fiemap()
Change 0 to NULL in lov_object_fiemap() in order to fix warning produced by sparse Signed-off-by: Andrii Vladyka <tulup@mail.ru> Signed-off-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e8cd29b774
commit
6e6e26f91b
@@ -1335,7 +1335,7 @@ static int lov_object_fiemap(const struct lu_env *env, struct cl_object *obj,
|
||||
int rc = 0;
|
||||
int cur_stripe;
|
||||
int stripe_count;
|
||||
struct fiemap_state fs = { 0 };
|
||||
struct fiemap_state fs = { NULL };
|
||||
|
||||
lsm = lov_lsm_addref(cl2lov(obj));
|
||||
if (!lsm)
|
||||
|
||||
Reference in New Issue
Block a user