From: Eric Biggers <ebiggers@kernel.org>
To: linux-kernel@vger.kernel.org
Cc: linux-crypto@vger.kernel.org, x86@kernel.org,
linux-block@vger.kernel.org, Ard Biesheuvel <ardb@kernel.org>,
Keith Busch <kbusch@kernel.org>,
Kent Overstreet <kent.overstreet@linux.dev>,
"Martin K . Petersen" <martin.petersen@oracle.com>
Subject: [PATCH v2 00/11] CRC64 library rework and x86 CRC optimization
Date: Wed, 29 Jan 2025 19:51:19 -0800 [thread overview]
Message-ID: <20250130035130.180676-1-ebiggers@kernel.org> (raw)
This patchset applies to commit 72deda0abee6e7 and is also available at:
git fetch https://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git crc-x86-v2
This is the next major set of CRC library improvements, targeting 6.15.
Patches 1-5 rework the CRC64 library along the lines of what I did for
CRC32 and CRC-T10DIF in 6.14. They add direct support for
architecture-specific optimizations, fix the naming of the NVME CRC64
variant, and eliminate a pointless use of the crypto API.
Patches 6-10 replace the existing x86 PCLMULQDQ optimized CRC code with
new code that is shared among the different CRC variants and also adds
VPCLMULQDQ support, greatly improving performance on recent CPUs.
Patch 11 wires up the same optimization to crc64_be() and crc64_nvme()
(a.k.a. the old "crc64_rocksoft") which previously were unoptimized,
improving the performance of those CRC functions by as much as 100x.
crc64_be is used by bcachefs, and crc64_nvme is used by blk-integrity.
Eric Biggers (11):
lib/crc64-rocksoft: stop wrapping the crypto API
crypto: crc64-rocksoft - remove from crypto API
lib/crc64: rename CRC64-Rocksoft to CRC64-NVME
lib/crc_kunit.c: add test and benchmark for CRC64-NVME
lib/crc64: add support for arch-optimized implementations
x86: move ZMM exclusion list into CPU feature flag
scripts/gen-crc-consts: add gen-crc-consts.py
x86/crc: add "template" for [V]PCLMULQDQ based CRC functions
x86/crc32: implement crc32_le using new template
x86/crc-t10dif: implement crc_t10dif using new template
x86/crc64: implement crc64_be and crc64_nvme using new template
MAINTAINERS | 1 +
arch/x86/Kconfig | 3 +-
arch/x86/crypto/aesni-intel_glue.c | 22 +-
arch/x86/include/asm/cpufeatures.h | 1 +
arch/x86/kernel/cpu/intel.c | 22 ++
arch/x86/lib/Makefile | 5 +-
arch/x86/lib/crc-pclmul-consts.h | 195 ++++++++++
arch/x86/lib/crc-pclmul-template.S | 578 ++++++++++++++++++++++++++++
arch/x86/lib/crc-pclmul-template.h | 81 ++++
arch/x86/lib/crc-t10dif-glue.c | 23 +-
arch/x86/lib/crc16-msb-pclmul.S | 6 +
arch/x86/lib/crc32-glue.c | 37 +-
arch/x86/lib/crc32-pclmul.S | 219 +----------
arch/x86/lib/crc64-glue.c | 50 +++
arch/x86/lib/crc64-pclmul.S | 7 +
arch/x86/lib/crct10dif-pcl-asm_64.S | 332 ----------------
block/Kconfig | 2 +-
block/t10-pi.c | 2 +-
crypto/Kconfig | 11 -
crypto/Makefile | 1 -
crypto/crc64_rocksoft_generic.c | 89 -----
crypto/testmgr.c | 7 -
crypto/testmgr.h | 12 -
include/linux/crc64.h | 38 +-
lib/Kconfig | 16 +-
lib/Makefile | 1 -
lib/crc64-rocksoft.c | 126 ------
lib/crc64.c | 49 +--
lib/crc_kunit.c | 30 +-
lib/gen_crc64table.c | 10 +-
scripts/gen-crc-consts.py | 214 ++++++++++
31 files changed, 1270 insertions(+), 920 deletions(-)
create mode 100644 arch/x86/lib/crc-pclmul-consts.h
create mode 100644 arch/x86/lib/crc-pclmul-template.S
create mode 100644 arch/x86/lib/crc-pclmul-template.h
create mode 100644 arch/x86/lib/crc16-msb-pclmul.S
create mode 100644 arch/x86/lib/crc64-glue.c
create mode 100644 arch/x86/lib/crc64-pclmul.S
delete mode 100644 arch/x86/lib/crct10dif-pcl-asm_64.S
delete mode 100644 crypto/crc64_rocksoft_generic.c
delete mode 100644 lib/crc64-rocksoft.c
create mode 100755 scripts/gen-crc-consts.py
base-commit: 72deda0abee6e705ae71a93f69f55e33be5bca5c
--
2.48.1
next reply other threads:[~2025-01-30 3:54 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-30 3:51 Eric Biggers [this message]
2025-01-30 3:51 ` [PATCH v2 01/11] lib/crc64-rocksoft: stop wrapping the crypto API Eric Biggers
2025-02-02 14:26 ` Ard Biesheuvel
2025-01-30 3:51 ` [PATCH v2 02/11] crypto: crc64-rocksoft - remove from " Eric Biggers
2025-02-02 14:27 ` Ard Biesheuvel
2025-01-30 3:51 ` [PATCH v2 03/11] lib/crc64: rename CRC64-Rocksoft to CRC64-NVME Eric Biggers
2025-02-02 14:28 ` Ard Biesheuvel
2025-02-08 18:59 ` Eric Biggers
2025-01-30 3:51 ` [PATCH v2 04/11] lib/crc_kunit.c: add test and benchmark for CRC64-NVME Eric Biggers
2025-02-02 14:29 ` Ard Biesheuvel
2025-01-30 3:51 ` [PATCH v2 05/11] lib/crc64: add support for arch-optimized implementations Eric Biggers
2025-02-02 14:31 ` Ard Biesheuvel
2025-01-30 3:51 ` [PATCH v2 06/11] x86: move ZMM exclusion list into CPU feature flag Eric Biggers
2025-01-30 3:51 ` [PATCH v2 07/11] scripts/gen-crc-consts: add gen-crc-consts.py Eric Biggers
2025-01-30 3:51 ` [PATCH v2 08/11] x86/crc: add "template" for [V]PCLMULQDQ based CRC functions Eric Biggers
2025-01-30 3:51 ` [PATCH v2 09/11] x86/crc32: implement crc32_le using new template Eric Biggers
2025-01-30 3:51 ` [PATCH v2 10/11] x86/crc-t10dif: implement crc_t10dif " Eric Biggers
2025-01-30 3:51 ` [PATCH v2 11/11] x86/crc64: implement crc64_be and crc64_nvme " Eric Biggers
2025-01-30 15:09 ` [PATCH v2 00/11] CRC64 library rework and x86 CRC optimization Keith Busch
2025-01-30 15:20 ` Martin K. Petersen
2025-02-04 19:54 ` Eric Biggers
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250130035130.180676-1-ebiggers@kernel.org \
--to=ebiggers@kernel.org \
--cc=ardb@kernel.org \
--cc=kbusch@kernel.org \
--cc=kent.overstreet@linux.dev \
--cc=linux-block@vger.kernel.org \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.