Skip to content

Commit 5683cd6

Browse files
committed
Merge tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux
Pull crypto library fix from Eric Biggers: "Fix a regression where the purgatory code sometimes fails to build" * tag 'libcrypto-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux: lib/crypto: sha256: Mark sha256_choose_blocks as __always_inline
2 parents 35e261c + 64f7548 commit 5683cd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/crypto/internal/sha2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void sha256_blocks_arch(u32 state[SHA256_STATE_WORDS],
2525
void sha256_blocks_simd(u32 state[SHA256_STATE_WORDS],
2626
const u8 *data, size_t nblocks);
2727

28-
static inline void sha256_choose_blocks(
28+
static __always_inline void sha256_choose_blocks(
2929
u32 state[SHA256_STATE_WORDS], const u8 *data, size_t nblocks,
3030
bool force_generic, bool force_simd)
3131
{

0 commit comments

Comments
 (0)