diff options
| author | Michael Ellerman <mpe@ellerman.id.au> | 2022-03-08 05:11:46 +0300 |
|---|---|---|
| committer | Michael Ellerman <mpe@ellerman.id.au> | 2022-03-08 05:13:08 +0300 |
| commit | 04a5b0ee97046293431685404ef7352917f1e243 (patch) | |
| tree | a08d6eb6bb8b37dce0fceb472fc3dd506ce1d295 /lib | |
| parent | c7fa848ff01dad9ed3146a6b1a7d3622131bcedd (diff) | |
| parent | 93b71801a8274cd9511557faf04365a5de487197 (diff) | |
| download | linux-04a5b0ee97046293431685404ef7352917f1e243.tar.xz | |
Merge branch 'kvm-ppc-cap-210' of https://git.kernel.org/pub/scm/virt/kvm/kvm into topic/ppc-kvm
Merge this branch from the KVM tree to bring in a new KVM capability
KVM_CAP_PPC_AIL_MODE_3.
It also brings in some unrelated KVM changes as well as v5.17-rc3.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/crypto/blake2s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/blake2s.c b/lib/crypto/blake2s.c index 9364f79937b8..c71c09621c09 100644 --- a/lib/crypto/blake2s.c +++ b/lib/crypto/blake2s.c @@ -18,14 +18,14 @@ void blake2s_update(struct blake2s_state *state, const u8 *in, size_t inlen) { - __blake2s_update(state, in, inlen, blake2s_compress); + __blake2s_update(state, in, inlen, false); } EXPORT_SYMBOL(blake2s_update); void blake2s_final(struct blake2s_state *state, u8 *out) { WARN_ON(IS_ENABLED(DEBUG) && !out); - __blake2s_final(state, out, blake2s_compress); + __blake2s_final(state, out, false); memzero_explicit(state, sizeof(*state)); } EXPORT_SYMBOL(blake2s_final); |
