linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] crypto: x86 assembler cleanups
@ 2013-01-19 11:38 Jussi Kivilinna
  2013-01-19 11:38 ` [PATCH 01/12] crypto: x86/aes - assembler clean-ups: use ENTRY/ENDPROC, localize jump targets Jussi Kivilinna
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Jussi Kivilinna @ 2013-01-19 11:38 UTC (permalink / raw)
  To: linux-crypto; +Cc: Herbert Xu, David S. Miller

Change x86 crypto implementations to use ENTRY()/ENDPROC() as linux/linkage.h 
recommends use of ENDPROC() for assembler functions.

While at it, also change jump targets to local labels for some implementations.

---

Jussi Kivilinna (12):
      crypto: x86/aes - assembler clean-ups: use ENTRY/ENDPROC, localize jump targets
      crypto: aesni-intel - add ENDPROC statements for assembler functions
      crypto: blowfish-x86_64: use ENTRY()/ENDPROC() for assembler functions and localize jump targets
      crypto: camellia-x86_64/aes-ni: use ENTRY()/ENDPROC() for assembler functions and localize jump targets
      crypto: cast5-avx: use ENTRY()/ENDPROC() for assembler functions and localize jump targets
      crypto: cast6-avx: use ENTRY()/ENDPROC() for assembler functions
      crypto: x86/crc32c - assembler clean-up: use ENTRY/ENDPROC
      crypto: x86/ghash - assembler clean-up: use ENDPROC at end of assember functions
      crypto: x86/salsa20 - assembler cleanup, use ENTRY/ENDPROC for assember functions and rename ECRYPT_* to salsa20_*
      crypto: x86/serpent - use ENTRY/ENDPROC for assember functions and localize jump targets
      crypto: x86/sha1 - assembler clean-ups: use ENTRY/ENDPROC
      crypto: x86/twofish - assembler clean-ups: use ENTRY/ENDPROC, localize jump labels


 arch/x86/crypto/aes-i586-asm_32.S            |   15 +++-----
 arch/x86/crypto/aes-x86_64-asm_64.S          |   30 ++++++++--------
 arch/x86/crypto/aesni-intel_asm.S            |   23 +++++++++++-
 arch/x86/crypto/blowfish-x86_64-asm_64.S     |   39 +++++++-------------
 arch/x86/crypto/camellia-aesni-avx-asm_64.S  |   38 +++++++-------------
 arch/x86/crypto/camellia-x86_64-asm_64.S     |   50 +++++++++++---------------
 arch/x86/crypto/cast5-avx-x86_64-asm_64.S    |   48 +++++++++----------------
 arch/x86/crypto/cast6-avx-x86_64-asm_64.S    |   35 ++++++------------
 arch/x86/crypto/crc32c-pcl-intel-asm_64.S    |    8 +++-
 arch/x86/crypto/ghash-clmulni-intel_asm.S    |    4 ++
 arch/x86/crypto/salsa20-i586-asm_32.S        |   28 +++++++--------
 arch/x86/crypto/salsa20-x86_64-asm_64.S      |   28 +++++++--------
 arch/x86/crypto/salsa20_glue.c               |    5 ---
 arch/x86/crypto/serpent-avx-x86_64-asm_64.S  |   35 ++++++------------
 arch/x86/crypto/serpent-sse2-i586-asm_32.S   |   20 ++++------
 arch/x86/crypto/serpent-sse2-x86_64-asm_64.S |   20 ++++------
 arch/x86/crypto/sha1_ssse3_asm.S             |   10 +++--
 arch/x86/crypto/twofish-avx-x86_64-asm_64.S  |   35 ++++++------------
 arch/x86/crypto/twofish-i586-asm_32.S        |   11 +++---
 arch/x86/crypto/twofish-x86_64-asm_64-3way.S |   20 ++++------
 arch/x86/crypto/twofish-x86_64-asm_64.S      |   11 +++---
 21 files changed, 219 insertions(+), 294 deletions(-)

--

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2013-01-20  0:13 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-19 11:38 [PATCH 00/12] crypto: x86 assembler cleanups Jussi Kivilinna
2013-01-19 11:38 ` [PATCH 01/12] crypto: x86/aes - assembler clean-ups: use ENTRY/ENDPROC, localize jump targets Jussi Kivilinna
2013-01-19 11:38 ` [PATCH 02/12] crypto: aesni-intel - add ENDPROC statements for assembler functions Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 03/12] crypto: blowfish-x86_64: use ENTRY()/ENDPROC() for assembler functions and localize jump targets Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 04/12] crypto: camellia-x86_64/aes-ni: " Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 05/12] crypto: cast5-avx: " Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 06/12] crypto: cast6-avx: use ENTRY()/ENDPROC() for assembler functions Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 07/12] crypto: x86/crc32c - assembler clean-up: use ENTRY/ENDPROC Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 08/12] crypto: x86/ghash - assembler clean-up: use ENDPROC at end of assember functions Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 09/12] crypto: x86/salsa20 - assembler cleanup, use ENTRY/ENDPROC for assember functions and rename ECRYPT_* to salsa20_* Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 10/12] crypto: x86/serpent - use ENTRY/ENDPROC for assember functions and localize jump targets Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 11/12] crypto: x86/sha1 - assembler clean-ups: use ENTRY/ENDPROC Jussi Kivilinna
2013-01-19 11:39 ` [PATCH 12/12] crypto: x86/twofish - assembler clean-ups: use ENTRY/ENDPROC, localize jump labels Jussi Kivilinna
2013-01-19 15:39 ` [PATCH 00/12] crypto: x86 assembler cleanups David Miller
2013-01-20  0:13   ` Herbert Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).