mirror of https://gitee.com/openkylin/linux.git
ionic: deinit rss only if selected
Don't bother de-initing RSS if it wasn't selected.
Fixes: aa3198819b
("ionic: Add RSS support")
Signed-off-by: Shannon Nelson <snelson@pensando.io>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ecd2d8b0fb
commit
ad6fd4d311
|
@ -2066,7 +2066,8 @@ static void ionic_lif_deinit(struct ionic_lif *lif)
|
|||
clear_bit(IONIC_LIF_F_INITED, lif->state);
|
||||
|
||||
ionic_rx_filters_deinit(lif);
|
||||
ionic_lif_rss_deinit(lif);
|
||||
if (lif->netdev->features & NETIF_F_RXHASH)
|
||||
ionic_lif_rss_deinit(lif);
|
||||
|
||||
napi_disable(&lif->adminqcq->napi);
|
||||
ionic_lif_qcq_deinit(lif, lif->notifyqcq);
|
||||
|
|
Loading…
Reference in New Issue