Skip to content

Instantly share code, notes, and snippets.

@StefanoBelli
Last active June 24, 2023 09:08
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save StefanoBelli/0aab46b858a797c4eedb90e8799dffa2 to your computer and use it in GitHub Desktop.
Save StefanoBelli/0aab46b858a797c4eedb90e8799dffa2 to your computer and use it in GitHub Desktop.
Temporary fix for ACPI (GPE iinterrupts) failure , disable GPE6f interrupts, probably motherboard faulty ACPI implementation (reflash/update BIOS) [[!!You should take action!!]]. Install this in /usr/lib/systemd/system and run systemctl enable disable_gpe6F
[Unit]
Description=Disable GPE6F interrupts
[Service]
Type=oneshot
ExecStart=/bin/bash -c "echo disable > /sys/firmware/acpi/interrupts/gpe6F"
[Install]
WantedBy=multi-user.target
@tgharib
Copy link

tgharib commented Jul 3, 2021

Additional helpful note for potential future readers: if BIOS update does not solve issue, you can either keep this systemd service or add acpi_mask_gpe=0x6F as kernel boot parameter.

@aLluveras
Copy link

In my experience, this issue is reflected in 20-30% of CPU usage for the Linux kworker process or for the System process on a Windows machine.
Also, this approach is useful for any interrupts that might be hogging your CPU, use grep . -r /sys/firmware/acpi/interrupts/ to find out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment