4

I've been running Ubuntu 19.10 for about three weeks on my new Thinkpad L13 Yoga. Been working great. Suddenly this evening, the wifi device is missing. Doesn't appear in the menu in the upper right. Not in Settings. Bluetooth is there, and I think it's provided by the same chip. The wifi here is the Intel 9560. I think the driver is iwl*. The kernel models appear to be running:

$ lsmod | fgrep iwl
iwlmvm 401408 0
mac80211 851968 1 iwlmvm
iwlwifi 348160 1 iwlmvm
cfg80211 712704 3 iwlmvm,iwlwifi,mac80211

Also,

lspci -knn | grep Net -A2
00:14.3 Network controller [0280]: Intel Corporation Device [8086:02f0]
Subsystem: Intel Corporation Device [8086:0030]
Kernel driver in use: iwlwifi

This L13 is set up for dual boot, and the wifi works normally in Windows 10.

I don't see that any updates were done between the time I used it this morning and this evening. I had it on wired ethernet this morning, though. I think the last time I used it on wifi was a couple of nights ago. But, I did have fwupd running, so maybe there was an update that I don't now about.

syslog gives messages:

Feb 20 09:02:21 yoga kernel: [    4.221887] iwlwifi 0000:00:14.3: Failed to start RT ucode: -110
Feb 20 09:02:21 yoga kernel: [    4.222207] iwlwifi 0000:00:14.3:Firmware not running - cannot dump error
Feb 20 09:02:21 yoga kernel: [    4.234862] iwlwifi 0000:00:14.3: Failed to run INIT ucode: -110

I've seen messages like this in searching for a solution, but nothing is working (in some cases, reports are older and their commands don't work). For example, I'd like to turn off power-saving mode for the wifi and I can't find a way to do that. There's even a kernel.org Bug 203891 that addresses this INIT ucode -110 and fixed it last year, but why would my wifi disappear a couple of days ago?

Thanks for your help.

Leonard
  • 308
  • 1
  • 2
  • 12
  • Looks like this has been reported in kernel.org: https://bugzilla.kernel.org/show_bug.cgi?id=206097 – Leonard Feb 20 '20 at 16:55
  • This also happened to me, suddenly, just a few hours ago – MRocklin Feb 21 '20 at 06:09
  • I tried lots of stuff, including reverting linux-firmware from 1.183.4 to 1.183.2. None of that helped. The only fix I have is to revert the Linux kernel (I guess - I mean I boot a previous kernel) from 5.3.0-40 to 5.3.0-29. – Leonard Feb 21 '20 at 15:46
  • Looks like kernel 5.3.0-40 was released on 2020-2-18, which appears to coincide when wifi disappeared for me. So, it looks like the kernel update broke wifi for the Intel 9560 hardware in my laptop. – Leonard Feb 21 '20 at 16:02

1 Answers1

4

Had the same issue on ThinkPad L13. Fixed it. The issue was in the latest update of the kernel.

  1. Reboot your machine and press shift or escape while it is loading to get to GRUB menu
  2. Choose Advanced options
  3. Load with a previous kernel, not the upper one (not a recovery one as well). Laptop should load normally with WiFi working
  4. Remove bad update

    sudo apt-get purge linux-image-5.3.0-40-generic

    sudo apt-get purge linux-headers-5.3.0-40-generic

timanix
  • 114
  • This solved my problem. Thanks a ton @timanix! – MRocklin Feb 21 '20 at 15:30
  • Had the same problem the same day. Suspected an update. Funny thing is that it happened on a working laptop. Didn't think the kernel got updated meanwhile. Your advice did help, thanks a lot! – culebrón Feb 23 '20 at 22:26