x86/resctrl: Fix unused variable warning in cache_alloc_hsw_probe()
authorTony Luck <tony.luck@intel.com>
Wed, 1 Nov 2023 21:26:15 +0000 (14:26 -0700)
committerBorislav Petkov (AMD) <bp@alien8.de>
Mon, 22 Jan 2024 18:54:54 +0000 (19:54 +0100)
commit1b908debf53ff3cf0e43e0fa51e7319a23518e6c
tree1314d791b4725b6702aebd515bac93ed05cd3727
parent6613476e225e090cc9aad49be7fa504e290dd33d
x86/resctrl: Fix unused variable warning in cache_alloc_hsw_probe()

In a "W=1" build gcc throws a warning:

  arch/x86/kernel/cpu/resctrl/core.c: In function ‘cache_alloc_hsw_probe’:
  arch/x86/kernel/cpu/resctrl/core.c:139:16: warning: variable ‘h’ set but not used

Switch from wrmsr_safe() to wrmsrl_safe(), and from rdmsr() to rdmsrl()
using a single u64 argument for the MSR value instead of the pair of u32
for the high and low halves.

Signed-off-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Reviewed-by: Babu Moger <babu.moger@amd.com>
Acked-by: Reinette Chatre <reinette.chatre@intel.com>
Link: https://lore.kernel.org/r/ZULCd/TGJL9Dmncf@agluck-desk3
arch/x86/kernel/cpu/resctrl/core.c