aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto/nhpoly1305-avx2-glue.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/crypto/nhpoly1305-avx2-glue.c')
-rw-r--r--arch/x86/crypto/nhpoly1305-avx2-glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/crypto/nhpoly1305-avx2-glue.c b/arch/x86/crypto/nhpoly1305-avx2-glue.c
index f7567cbd35b6..80fcb85736e1 100644
--- a/arch/x86/crypto/nhpoly1305-avx2-glue.c
+++ b/arch/x86/crypto/nhpoly1305-avx2-glue.c
@@ -29,7 +29,7 @@ static int nhpoly1305_avx2_update(struct shash_desc *desc,
return crypto_nhpoly1305_update(desc, src, srclen);
do {
- unsigned int n = min_t(unsigned int, srclen, PAGE_SIZE);
+ unsigned int n = min_t(unsigned int, srclen, SZ_4K);
kernel_fpu_begin();
crypto_nhpoly1305_update_helper(desc, src, n, _nh_avx2);