crypto: sha512 - use standard ror64()
authorAlexey Dobriyan <adobriyan@gmail.com>
Sat, 14 Jan 2012 18:44:49 +0000 (21:44 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Feb 2012 20:46:20 +0000 (12:46 -0800)
commit7c51cb723a36b2b8491354029df48a984e8e8f8a
tree922ece394c9f1f06bf73ef11c537677d2c8fc98e
parent3601bce60f271876c8dee6747ad5874aed96037f
crypto: sha512 - use standard ror64()

commit f2ea0f5f04c97b48c88edccba52b0682fbe45087 upstream.

Use standard ror64() instead of hand-written.
There is no standard ror64, so create it.

The difference is shift value being "unsigned int" instead of uint64_t
(for which there is no reason). gcc starts to emit native ROR instructions
which it doesn't do for some reason currently. This should make the code
faster.

Patch survives in-tree crypto test and ping flood with hmac(sha512) on.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
crypto/sha512_generic.c
include/linux/bitops.h