* [PATCH] lib/crc_kunit.c: update comment in crc_benchmark()
@ 2025-03-05 1:58 Eric Biggers
2025-03-06 17:21 ` Eric Biggers
0 siblings, 1 reply; 2+ messages in thread
From: Eric Biggers @ 2025-03-05 1:58 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-crypto, Ard Biesheuvel
From: Eric Biggers <ebiggers@google.com>
None of the CRC library functions use __pure anymore, so the comment in
crc_benchmark() is outdated. But the comment was not really correct
anyway, since the CRC computation could (in principle) be optimized out
regardless of __pure. Update the comment to have a proper explanation.
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
lib/crc_kunit.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/lib/crc_kunit.c b/lib/crc_kunit.c
index 40b4b41f2184..d5a5045fd9ab 100644
--- a/lib/crc_kunit.c
+++ b/lib/crc_kunit.c
@@ -222,12 +222,13 @@ crc_benchmark(struct kunit *test,
static const size_t lens_to_test[] = {
1, 16, 64, 127, 128, 200, 256, 511, 512, 1024, 3173, 4096, 16384,
};
size_t len, i, j, num_iters;
/*
- * Some of the CRC library functions are marked as __pure, so use
- * volatile to ensure that all calls are really made as intended.
+ * The CRC value that this function computes in a series of calls to
+ * crc_func is never actually used, so use volatile to ensure that the
+ * computations are done as intended and don't all get optimized out.
*/
volatile u64 crc = 0;
u64 t;
if (!IS_ENABLED(CONFIG_CRC_BENCHMARK))
base-commit: 13f3d13d88b5dcba104a204fcbee61c75f8407d0
--
2.48.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] lib/crc_kunit.c: update comment in crc_benchmark()
2025-03-05 1:58 [PATCH] lib/crc_kunit.c: update comment in crc_benchmark() Eric Biggers
@ 2025-03-06 17:21 ` Eric Biggers
0 siblings, 0 replies; 2+ messages in thread
From: Eric Biggers @ 2025-03-06 17:21 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-crypto, Ard Biesheuvel
On Tue, Mar 04, 2025 at 05:58:30PM -0800, Eric Biggers wrote:
> From: Eric Biggers <ebiggers@google.com>
>
> None of the CRC library functions use __pure anymore, so the comment in
> crc_benchmark() is outdated. But the comment was not really correct
> anyway, since the CRC computation could (in principle) be optimized out
> regardless of __pure. Update the comment to have a proper explanation.
>
> Signed-off-by: Eric Biggers <ebiggers@google.com>
> ---
> lib/crc_kunit.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
Applied to
https://web.git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git/log/?h=crc-next
- Eric
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-03-06 17:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-05 1:58 [PATCH] lib/crc_kunit.c: update comment in crc_benchmark() Eric Biggers
2025-03-06 17:21 ` Eric Biggers
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox