10

After upgrde from 15.10 to 16.04, I noticed my netbook fan was constantly turning at full throtle. I checked the process mnitoor and noticed KswapD0 used 100% of one core.

What is the problem ? Because of this, my netbook is slow and i'm afraid of processor overheating.

dupont
  • 1,847
  • That certainly does sound like a bug you should report, but even if all cores are running at 100%, it should not overheat. If it does, your hardware is defective. – psusi Apr 24 '16 at 17:25
  • 2
    This happened to me on a AWS instance with low memory as folks in the link provided above in regards to BUG #1518457, after I updated from a 14.04 LTS to 16.04 LTS with a do -release-upgrade. Refer to the discussion thread for more detail. https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1518457 – prraw Aug 22 '16 at 20:41

1 Answers1

21

This seems to be something that commonly (but not exclusively) pops up w/ low memory systems. You can check out the bug that's tracking this issue: Bug #1518457: kswapd0 100% CPU usage

There isn't an actual fix yet, but there are a couple workarounds that may fix the problem for you:

  1. Add echo 1 > /proc/sys/vm/drop_caches to a regular crontab and/or run that command manually when kswapd acts up
  2. Comment out line 2 in /lib/udev/rules.d/40-vm-hotadd.rules (see the bug link for more discussion)
lhl
  • 211