[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210203153933.9443-1-unixbhaskar@gmail.com>
Date: Wed, 3 Feb 2021 21:09:33 +0530
From: Bhaskar Chowdhury <unixbhaskar@...il.com>
To: herbert@...dor.apana.org.au, davem@...emloft.net,
linux-crypto@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: rdunlap@...radead.org, Bhaskar Chowdhury <unixbhaskar@...il.com>
Subject: [PATCH] crypto: Fixed optimzation to optimization in the file crypto/xor.c
s/optimzation/optimization/
Signed-off-by: Bhaskar Chowdhury <unixbhaskar@...il.com>
---
crypto/xor.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/xor.c b/crypto/xor.c
index eacbf4f93990..c046d074f522 100644
--- a/crypto/xor.c
+++ b/crypto/xor.c
@@ -95,7 +95,7 @@ do_xor_speed(struct xor_block_template *tmpl, void *b1, void *b2)
for (i = 0; i < 3; i++) {
start = ktime_get();
for (j = 0; j < REPS; j++) {
- mb(); /* prevent loop optimzation */
+ mb(); /* prevent loop optimization */
tmpl->do_2(BENCH_SIZE, b1, b2);
mb();
}
--
2.26.2
Powered by blists - more mailing lists