2013-12-05 23:34:56

by Daniel Borkmann

[permalink] [raw]
Subject: [PATCH cryptodev] crypto: memneq: fix for archs without efficient unaligned access

Commit fe8c8a126806 introduced a possible build error for archs
that do not have CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS set. :/
Fix this up by bringing else braces outside of the ifdef.

Reported-by: Fengguang Wu <[email protected]>
Fixes: fe8c8a126806 ("crypto: more robust crypto_memneq")
Cc: Cesar Eduardo Barros <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
---
Sending stand-alone fix as original patch is already applied.

crypto/memneq.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/crypto/memneq.c b/crypto/memneq.c
index 570f6f3..afed1bd 100644
--- a/crypto/memneq.c
+++ b/crypto/memneq.c
@@ -108,8 +108,9 @@ static inline unsigned long __crypto_memneq_16(const void *a, const void *b)
OPTIMIZER_HIDE_VAR(neq);
neq |= *(unsigned int *)(a+12) ^ *(unsigned int *)(b+12);
OPTIMIZER_HIDE_VAR(neq);
- } else {
+ } else
#endif /* CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS */
+ {
neq |= *(unsigned char *)(a) ^ *(unsigned char *)(b);
OPTIMIZER_HIDE_VAR(neq);
neq |= *(unsigned char *)(a+1) ^ *(unsigned char *)(b+1);
--
1.8.3.1


2013-12-09 12:10:18

by Herbert Xu

[permalink] [raw]
Subject: Re: [PATCH cryptodev] crypto: memneq: fix for archs without efficient unaligned access

On Fri, Dec 06, 2013 at 12:33:33AM +0100, Daniel Borkmann wrote:
> Commit fe8c8a126806 introduced a possible build error for archs
> that do not have CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS set. :/
> Fix this up by bringing else braces outside of the ifdef.
>
> Reported-by: Fengguang Wu <[email protected]>
> Fixes: fe8c8a126806 ("crypto: more robust crypto_memneq")
> Cc: Cesar Eduardo Barros <[email protected]>
> Signed-off-by: Daniel Borkmann <[email protected]>

Patch applied. Thanks!
--
Email: Herbert Xu <[email protected]>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt