staging/lustre/fld: Replace OBD_ALLOC_GFP with kzalloc
Part of effort to get rid of custom Lustre allocation macros. Signed-off-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c0a2472fa8
commit
3dc6f32522
@ -266,7 +266,7 @@ static void fld_cache_punch_hole(struct fld_cache *cache,
|
||||
const u64 new_end = range->lsr_end;
|
||||
struct fld_cache_entry *fldt;
|
||||
|
||||
OBD_ALLOC_GFP(fldt, sizeof(*fldt), GFP_ATOMIC);
|
||||
fldt = kzalloc(sizeof(*fldt), GFP_ATOMIC);
|
||||
if (!fldt) {
|
||||
kfree(f_new);
|
||||
/* overlap is not allowed, so dont mess up list. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user