staging: netlogic: Change GFP_ATOMIC to GFP_KERNEL
Below is data path of xlr_config_spill xlr_net_probe -->xlr_config_fifo_spill_area --->xlr_config_spill We can use GFP_KERNEL as this function is getting called from xlr_net_probe and there are no locks. Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
321cab4b5e
commit
5d32630f17
|
@ -385,7 +385,7 @@ static void *xlr_config_spill(struct xlr_net_priv *priv, int reg_start_0,
|
|||
|
||||
base = priv->base_addr;
|
||||
spill_size = size;
|
||||
spill = kmalloc(spill_size + SMP_CACHE_BYTES, GFP_ATOMIC);
|
||||
spill = kmalloc(spill_size + SMP_CACHE_BYTES, GFP_KERNEL);
|
||||
if (!spill)
|
||||
return ZERO_SIZE_PTR;
|
||||
|
||||
|
|
Loading…
Reference in New Issue