Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 fixes from Ingo Molnar:
"Two fixes: disable unreliable HPET on Intel Coffe Lake platforms, and
fix a lockdep splat in the resctrl code"

* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/resctrl: Fix potential lockdep warning
x86/quirks: Disable HPET on Intel Coffe Lake platforms

Changed files
+2 -4
arch
x86
kernel
-4
arch/x86/kernel/cpu/resctrl/rdtgroup.c
··· 461 461 } 462 462 463 463 rdtgrp = rdtgroup_kn_lock_live(of->kn); 464 - rdt_last_cmd_clear(); 465 464 if (!rdtgrp) { 466 465 ret = -ENOENT; 467 - rdt_last_cmd_puts("Directory was removed\n"); 468 466 goto unlock; 469 467 } 470 468 ··· 2646 2648 int ret; 2647 2649 2648 2650 prdtgrp = rdtgroup_kn_lock_live(prgrp_kn); 2649 - rdt_last_cmd_clear(); 2650 2651 if (!prdtgrp) { 2651 2652 ret = -ENODEV; 2652 - rdt_last_cmd_puts("Directory was removed\n"); 2653 2653 goto out_unlock; 2654 2654 } 2655 2655
+2
arch/x86/kernel/early-quirks.c
··· 710 710 */ 711 711 { PCI_VENDOR_ID_INTEL, 0x0f00, 712 712 PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, 713 + { PCI_VENDOR_ID_INTEL, 0x3ec4, 714 + PCI_CLASS_BRIDGE_HOST, PCI_ANY_ID, 0, force_disable_hpet}, 713 715 { PCI_VENDOR_ID_BROADCOM, 0x4331, 714 716 PCI_CLASS_NETWORK_OTHER, PCI_ANY_ID, 0, apple_airport_reset}, 715 717 {}