mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
bnxt_en: Add bnxt_set_max_func_irqs().
By refactoring existing code into this new function. The new function will be used in subsequent patches. v2: Fixed compile warning when CONFIG_BNXT_SRIOV is not set. Signed-off-by: Michael Chan <michael.chan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5b8e2f61b9
commit
33c2657eb6
@ -4743,6 +4743,16 @@ static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max,
|
||||
return 0;
|
||||
}
|
||||
|
||||
void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max_irqs)
|
||||
{
|
||||
#if defined(CONFIG_BNXT_SRIOV)
|
||||
if (BNXT_VF(bp))
|
||||
bp->vf.max_irqs = max_irqs;
|
||||
else
|
||||
#endif
|
||||
bp->pf.max_irqs = max_irqs;
|
||||
}
|
||||
|
||||
static int bnxt_setup_msix(struct bnxt *bp)
|
||||
{
|
||||
struct msix_entry *msix_ent;
|
||||
@ -6949,12 +6959,7 @@ static int bnxt_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
|
||||
bnxt_set_tpa_flags(bp);
|
||||
bnxt_set_ring_params(bp);
|
||||
if (BNXT_PF(bp))
|
||||
bp->pf.max_irqs = max_irqs;
|
||||
#if defined(CONFIG_BNXT_SRIOV)
|
||||
else
|
||||
bp->vf.max_irqs = max_irqs;
|
||||
#endif
|
||||
bnxt_set_max_func_irqs(bp, max_irqs);
|
||||
bnxt_set_dflt_rings(bp);
|
||||
|
||||
/* Default RSS hash cfg. */
|
||||
|
@ -1235,6 +1235,7 @@ int hwrm_send_message(struct bnxt *, void *, u32, int);
|
||||
int hwrm_send_message_silent(struct bnxt *, void *, u32, int);
|
||||
int bnxt_hwrm_set_coal(struct bnxt *);
|
||||
int bnxt_hwrm_func_qcaps(struct bnxt *);
|
||||
void bnxt_set_max_func_irqs(struct bnxt *bp, unsigned int max);
|
||||
void bnxt_tx_disable(struct bnxt *bp);
|
||||
void bnxt_tx_enable(struct bnxt *bp);
|
||||
int bnxt_hwrm_set_pause(struct bnxt *);
|
||||
|
Loading…
Reference in New Issue
Block a user