summaryrefslogtreecommitdiff
path: root/drivers/pci/controller/dwc
diff options
context:
space:
mode:
authorNikolay Borisov <nik.borisov@suse.com>2025-11-24 16:25:17 +0200
committerBorislav Petkov (AMD) <bp@alien8.de>2025-11-24 17:00:37 +0100
commit69acbdbbefbda7b7b32faa706a8f68c399c9e47b (patch)
tree3b4d570a2f8504f128d1ad4cff94be2541a51504 /drivers/pci/controller/dwc
parent187d1b27a1e436822c31e43aa58505f6dd8987e2 (diff)
RAS/AMD/ATL: Replace bitwise_xor_bits() with hweight16()
Doing hweight16() and checking whether the lsb is set is functionally equivalent to what bitwise_xor_bits() does. In addition, it results in better generated code as before gcc would inline the function 4 times. With hweight16(), the resulting code boils down to 2 instructions - POPCNT and AND, and all relevant CPUs support POPCNT. An alternative would have been to use the __builtin_parity() function provided by both Clang/GCC, however under some circumstances the compiler can choose not to inline it but generate a library call which is unsupported in the kernel. No functional changes. [ bp: Massage commit message. ] Signed-off-by: Nikolay Borisov <nik.borisov@suse.com> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Link: https://patch.msgid.link/20251124142517.1708451-1-nik.borisov@suse.com
Diffstat (limited to 'drivers/pci/controller/dwc')
0 files changed, 0 insertions, 0 deletions