Origin of a kworker-thread

前端 未结 5 1530
萌比男神i
萌比男神i 2021-02-05 07:41

On my newly installed system using kernel 3.2 I see a kworker-thread which is constantly consuming CPU. I\'d like to find out which part of kernel/module has created this workqu

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-05 08:16

    So, after some time I found the solution. In fact Anthon is right, it is the ACPI-subsystem which sends interrupts. On my system I disabled the following interrupts and the kworker-thread is calmed down.

    echo disable > /sys/firmware/acpi/interrupts/gpe1B
    echo disable > /sys/firmware/acpi/interrupts/gpe08
    

    However until now haven't identified what the bogus IRQs coming from gpe08 and gpe1B.

提交回复
热议问题