On Mon, 29 Jun 2020 14:18:01 -0700 Francesco Ruggeri wrote: > We observed a panic in igb_reset_task caused by this race condition > when doing a reboot -f: > > kworker reboot -f > > igb_reset_task > igb_reinit_locked > igb_down > napi_synchronize > __igb_shutdown > igb_clear_interrupt_scheme > igb_free_q_vectors > igb_free_q_vector > adapter->q_vector[v_idx] = NULL; > napi_disable > Panics trying to access > adapter->q_vector[v_idx].napi_state > > This commit applies to igb the same changes that were applied to ixgbe > in commit 8f4c5c9fb87a ("ixgbe: reinit_locked() should be called with > rtnl_lock") and commit 88adce4ea8f9 ("ixgbe: fix possible race in > reset subtask"). > > Signed-off-by: Francesco Ruggeri <frugg...@arista.com>
Thanks for the patch.. Would you mind adding a fixes tag here? Probably: Fixes: 9d5c824399de ("igb: PCI-Express 82575 Gigabit Ethernet driver") And as a matter of fact it looks like e1000e and e1000 have the same bug :/ Would you mind checking all Intel driver producing matches for all the affected ones?