Skip to content

Commit

Permalink
i40e: Delete an error message for a failed memory allocation in i40e_…
Browse files Browse the repository at this point in the history
…init_interrupt_scheme()

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
  • Loading branch information
Markus Elfring authored and Jeff Kirsher committed Jan 23, 2018
1 parent 7b0b1a6 commit 557450c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/net/ethernet/intel/i40e/i40e_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10394,10 +10394,9 @@ static int i40e_init_interrupt_scheme(struct i40e_pf *pf)
/* set up vector assignment tracking */
size = sizeof(struct i40e_lump_tracking) + (sizeof(u16) * vectors);
pf->irq_pile = kzalloc(size, GFP_KERNEL);
if (!pf->irq_pile) {
dev_err(&pf->pdev->dev, "error allocating irq_pile memory\n");
if (!pf->irq_pile)
return -ENOMEM;
}

pf->irq_pile->num_entries = vectors;
pf->irq_pile->search_hint = 0;

Expand Down

0 comments on commit 557450c

Please sign in to comment.