OSDN Git Service

bnxt_en: reinitialize IRQs when MTU is modified
authorVasundhara Volam <vasundhara-v.volam@broadcom.com>
Mon, 2 Mar 2020 03:07:17 +0000 (22:07 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 2 Mar 2020 03:15:27 +0000 (19:15 -0800)
commita9b952d267e59a3b405e644930f46d252cea7122
treeec2e16786fb453b7b2c1dc493b45ffc82e9f0d7d
parent249bc9744e165abe74ae326f43e9d70bad54c3b7
bnxt_en: reinitialize IRQs when MTU is modified

MTU changes may affect the number of IRQs so we must call
bnxt_close_nic()/bnxt_open_nic() with the irq_re_init parameter
set to true.  The reason is that a larger MTU may require
aggregation rings not needed with smaller MTU.  We may not be
able to allocate the required number of aggregation rings and
so we reduce the number of channels which will change the number
of IRQs.  Without this patch, it may crash eventually in
pci_disable_msix() when the IRQs are not properly unwound.

Fixes: c0c050c58d84 ("bnxt_en: New Broadcom ethernet driver.")
Signed-off-by: Vasundhara Volam <vasundhara-v.volam@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/broadcom/bnxt/bnxt.c