[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250223164217.2139331-1-visitorckw@gmail.com>
Date: Mon, 24 Feb 2025 00:42:00 +0800
From: Kuan-Wei Chiu <visitorckw@...il.com>
To: tglx@...utronix.de,
mingo@...hat.com,
bp@...en8.de,
dave.hansen@...ux.intel.com,
x86@...nel.org,
jk@...abs.org,
joel@....id.au,
eajames@...ux.ibm.com,
andrzej.hajda@...el.com,
neil.armstrong@...aro.org,
rfoss@...nel.org,
maarten.lankhorst@...ux.intel.com,
mripard@...nel.org,
tzimmermann@...e.de,
airlied@...il.com,
simona@...ll.ch,
dmitry.torokhov@...il.com,
mchehab@...nel.org,
awalls@...metrocast.net,
hverkuil@...all.nl,
miquel.raynal@...tlin.com,
richard@....at,
vigneshr@...com,
louis.peens@...igine.com,
andrew+netdev@...n.ch,
davem@...emloft.net,
edumazet@...gle.com,
pabeni@...hat.com,
parthiban.veerasooran@...rochip.com,
arend.vanspriel@...adcom.com,
johannes@...solutions.net,
gregkh@...uxfoundation.org,
jirislaby@...nel.org,
yury.norov@...il.com,
akpm@...ux-foundation.org
Cc: hpa@...or.com,
alistair@...ple.id.au,
linux@...musvillemoes.dk,
Laurent.pinchart@...asonboard.com,
jonas@...boo.se,
jernej.skrabec@...il.com,
kuba@...nel.org,
linux-kernel@...r.kernel.org,
linux-fsi@...ts.ozlabs.org,
dri-devel@...ts.freedesktop.org,
linux-input@...r.kernel.org,
linux-media@...r.kernel.org,
linux-mtd@...ts.infradead.org,
oss-drivers@...igine.com,
netdev@...r.kernel.org,
linux-wireless@...r.kernel.org,
brcm80211@...ts.linux.dev,
brcm80211-dev-list.pdl@...adcom.com,
linux-serial@...r.kernel.org,
bpf@...r.kernel.org,
jserv@...s.ncku.edu.tw,
Kuan-Wei Chiu <visitorckw@...il.com>,
Yu-Chun Lin <eleanor15x@...il.com>
Subject: [PATCH 00/17] Introduce and use generic parity32/64 helper
Several parts of the kernel contain redundant implementations of parity
calculations for 32-bit and 64-bit values. Introduces generic
parity32() and parity64() helpers in bitops.h, providing a standardized
and optimized implementation.
Subsequent patches refactor various kernel components to replace
open-coded parity calculations with the new helpers, reducing code
duplication and improving maintainability.
Co-developed-by: Yu-Chun Lin <eleanor15x@...il.com>
Signed-off-by: Yu-Chun Lin <eleanor15x@...il.com>
Signed-off-by: Kuan-Wei Chiu <visitorckw@...il.com>
Kuan-Wei Chiu (17):
bitops: Add generic parity calculation for u32
bitops: Add generic parity calculation for u64
x86: Replace open-coded parity calculation with parity8()
media: media/test_drivers: Replace open-coded parity calculation with
parity8()
media: pci: cx18-av-vbi: Replace open-coded parity calculation with
parity8()
media: saa7115: Replace open-coded parity calculation with parity8()
serial: max3100: Replace open-coded parity calculation with parity8()
lib/bch: Replace open-coded parity calculation with parity32()
Input: joystick - Replace open-coded parity calculation with
parity32()
net: ethernet: oa_tc6: Replace open-coded parity calculation with
parity32()
wifi: brcm80211: Replace open-coded parity calculation with parity32()
rm/bridge: dw-hdmi: Replace open-coded parity calculation with
parity32()
mtd: ssfdc: Replace open-coded parity calculation with parity32()
fsi: i2cr: Replace open-coded parity calculation with parity32()
fsi: i2cr: Replace open-coded parity calculation with parity64()
Input: joystick - Replace open-coded parity calculation with
parity64()
nfp: bpf: Replace open-coded parity calculation with parity64()
arch/x86/kernel/bootflag.c | 18 ++------
drivers/fsi/fsi-master-i2cr.c | 18 ++------
.../drm/bridge/synopsys/dw-hdmi-ahb-audio.c | 8 +---
drivers/input/joystick/grip_mp.c | 17 +-------
drivers/input/joystick/sidewinder.c | 24 +++--------
drivers/media/i2c/saa7115.c | 12 +-----
drivers/media/pci/cx18/cx18-av-vbi.c | 12 +-----
.../media/test-drivers/vivid/vivid-vbi-gen.c | 8 +---
drivers/mtd/ssfdc.c | 17 +-------
drivers/net/ethernet/netronome/nfp/nfp_asm.c | 7 +--
drivers/net/ethernet/oa_tc6.c | 19 ++------
.../broadcom/brcm80211/brcmsmac/dma.c | 16 +------
drivers/tty/serial/max3100.c | 3 +-
include/linux/bitops.h | 43 +++++++++++++++++++
lib/bch.c | 14 +-----
15 files changed, 74 insertions(+), 162 deletions(-)
--
2.34.1
Powered by blists - more mailing lists