linux/drivers/net/ethernet/intel
Kohei Enju 528eb4e19e igc: don't fail igc_probe() on LED setup error
When igc_led_setup() fails, igc_probe() fails and triggers kernel panic
in free_netdev() since unregister_netdev() is not called. [1]
This behavior can be tested using fault-injection framework, especially
the failslab feature. [2]

Since LED support is not mandatory, treat LED setup failures as
non-fatal and continue probe with a warning message, consequently
avoiding the kernel panic.

[1]
 kernel BUG at net/core/dev.c:12047!
 Oops: invalid opcode: 0000 [#1] SMP NOPTI
 CPU: 0 UID: 0 PID: 937 Comm: repro-igc-led-e Not tainted 6.17.0-rc4-enjuk-tnguy-00865-gc4940196ab02 #64 PREEMPT(voluntary)
 Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
 RIP: 0010:free_netdev+0x278/0x2b0
 [...]
 Call Trace:
  <TASK>
  igc_probe+0x370/0x910
  local_pci_probe+0x3a/0x80
  pci_device_probe+0xd1/0x200
 [...]

[2]
 #!/bin/bash -ex

 FAILSLAB_PATH=/sys/kernel/debug/failslab/
 DEVICE=0000:00:05.0
 START_ADDR=$(grep " igc_led_setup" /proc/kallsyms \
         | awk '{printf("0x%s", $1)}')
 END_ADDR=$(printf "0x%x" $((START_ADDR + 0x100)))

 echo $START_ADDR > $FAILSLAB_PATH/require-start
 echo $END_ADDR > $FAILSLAB_PATH/require-end
 echo 1 > $FAILSLAB_PATH/times
 echo 100 > $FAILSLAB_PATH/probability
 echo N > $FAILSLAB_PATH/ignore-gfp-wait

 echo $DEVICE > /sys/bus/pci/drivers/igc/bind

Fixes: ea578703b0 ("igc: Add support for LEDs on i225/i226")
Signed-off-by: Kohei Enju <enjuk@amazon.com>
Reviewed-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Reviewed-by: Vitaly Lifshits <vitaly.lifshits@intel.com>
Reviewed-by: Kurt Kanzenbach <kurt@linutronix.de>
Tested-by: Mor Bar-Gabay <morx.bar.gabay@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
2025-09-16 14:01:53 -07:00
..
e1000 e1000: Move cancel_work_sync to avoid deadlock 2025-06-10 09:10:47 -07:00
e1000e e1000e: fix heap overflow in e1000_set_eeprom 2025-09-02 11:09:00 -07:00
fm10k Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net 2025-07-17 11:00:33 -07:00
i40e i40e: remove redundant memory barrier when cleaning Tx descs 2025-09-16 14:01:53 -07:00
iavf iavf: use libie_aq_str 2025-07-24 09:43:40 -07:00
ice ice: fix Rx page leak on multi-buffer frames 2025-09-16 14:01:46 -07:00
idpf idpf: set mac type when adding and removing MAC filters 2025-09-02 11:05:51 -07:00
igb igb: fix link test skipping when interface is admin down 2025-09-09 09:48:30 -07:00
igbvf igbvf: remove unused fields from struct igbvf_adapter 2025-07-18 09:02:28 -07:00
igc igc: don't fail igc_probe() on LED setup error 2025-09-16 14:01:53 -07:00
ixgbe ixgbe: destroy aci.lock later within ixgbe_remove path 2025-09-16 14:01:53 -07:00
ixgbevf net: Fix typos 2025-07-25 10:29:07 -07:00
libeth libeth: xsk: add XSkFQ refill and XSk wakeup helpers 2025-06-16 11:40:15 -07:00
libie libie: add adminq helper for converting err to str 2025-07-24 09:38:29 -07:00
Kconfig i40e: use libie_aq_str 2025-07-24 09:45:43 -07:00
Makefile
e100.c treewide, timers: Rename from_timer() to timer_container_of() 2025-06-08 09:07:37 +02:00