All of lore.kernel.org
 help / color / mirror / Atom feed
From: Herbert Xu <herbert@gondor.apana.org.au>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	"David S. Miller" <davem@davemloft.net>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Crypto Mailing List <linux-crypto@vger.kernel.org>
Subject: Crypto Update for 3.10
Date: Thu, 2 May 2013 09:47:03 +0800	[thread overview]
Message-ID: <20130502014703.GA2033@gondor.apana.org.au> (raw)
In-Reply-To: <20130223023331.GA11002@gondor.apana.org.au>

Hi Linus:

Here is the crypto update for 3.10:

* XTS mode optimisation for twofish/cast6/camellia/aes on x86.
* AVX2/x86_64 implementation for blowfish/twofish/serpent/camellia.
* SSSE3/AVX/AVX2 optimisations for sha256/sha512.
* Added driver for SAHARA2 crypto accelerator.
* Fix for GMAC when used in non-IPsec secnarios.
* Added generic CMAC implementation (including IPsec glue).
* IP update for crypto/atmel.
* Support for more than one device in hwrng/timeriomem.
* Added Broadcom BCM2835 RNG driver.
* Misc fixes.


Please pull from

git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git


Alexander Clouter (2):
      hwrng: timeriomem - update to support more than one device
      hwrng: timeriomem - added devicetree hooks

Fabio Estevam (1):
      hwrng: mxc-rnga - Use devm_ioremap_resource()

Herbert Xu (1):
      crypto: crc32c - Kill pointless CRYPTO_CRC32C_X86_64 option

Javier Martin (1):
      crypto: sahara - Add driver for SAHARA2 accelerator.

Jingoo Han (1):
      hwrng: exynos - add CONFIG_PM_SLEEP/CONFIG_PM_RUNTIME to suspend/resume

Joel A Fernandes (2):
      crypto: omap-sham - Use pm_runtime_put instead of pm_runtime_put_sync in tasklet
      crypto: omap-aes - Use pm_runtime_put instead of pm_runtime_put_sync in tasklet

Jussi Kivilinna (20):
      crypto: x86/crc32-pclmul - assembly clean-ups: use ENTRY/ENDPROC
      crypto: x86 - build AVX block cipher implementations only if assembler supports AVX instructions
      crypto: gcm - make GMAC work when dst and src are different
      crypto: gcm - fix rfc4543 to handle async crypto correctly
      crypto: testmgr - add AES GMAC test vectors
      crypto: testmgr - add empty test vectors for null ciphers
      crypto: add CMAC support to CryptoAPI
      xfrm: add rfc4494 AES-CMAC-96 support
      crypto: x86 - add more optimized XTS-mode for serpent-avx
      crypto: x86/twofish-avx - use optimized XTS code
      crypto: cast6-avx: use new optimized XTS code
      crypto: x86/camellia-aesni-avx - add more optimized XTS code
      crypto: aesni_intel - add more optimized XTS mode for x86-64
      crypto: aesni_intel - fix Kconfig problem with CRYPTO_GLUE_HELPER_X86
      crypto: testmgr - extend camellia test-vectors for camellia-aesni/avx2
      crypto: tcrypt - add async cipher speed tests for blowfish
      crypto: blowfish - add AVX2/x86_64 implementation of blowfish cipher
      crypto: twofish - add AVX2/x86_64 assembler implementation of twofish cipher
      crypto: serpent - add AVX2/x86_64 assembler implementation of serpent cipher
      crypto: camellia - add AVX2/AES-NI/x86_64 assembler implementation of camellia cipher

Kim Phillips (2):
      crypto: caam - change key gen functions to return signed int
      crypto: caam - static constify error data

Lubomir Rintel (1):
      hwrng: bcm2835 - Add Broadcom BCM2835 RNG driver

Mathias Krause (1):
      crypto: user - constify netlink dispatch table

Mihnea Dobrescu-Balaur (1):
      crypto: ux500 - replace kmalloc and then memcpy with kmemdup

Nicolas Royer (4):
      ARM: AT91SAM9G45: same platform data structure for all crypto peripherals
      crypto: atmel-aes - add support for latest release of the IP (0x130)
      crypto: atmel-tdes - add support for latest release of the IP (0x700)
      crypto: atmel-sha - add support for latest release of the IP (0x410)

Paul Bolle (1):
      crypto: caam - fix typo "CRYPTO_AHASH"

Sachin Kamat (3):
      crypto: omap-aes - Use module_platform_driver macro
      crypto: omap-sham - Use module_platform_driver macro
      crypto: picoxcell - Use of_match_ptr() macro

Sandy Wu (1):
      crypto: crc32-pclmul - Use gas macro for pclmulqdq

Syam Sidhardhan (1):
      crypto: bfin_crc - Fix possible NULL pointer dereference

Tang Chen (1):
      hwrng: Fix a wrong comment in Documentation/hw_random.txt

Tim Chen (11):
      crypto: crc32c - Update the links to the white papers on CRC32C calculations with PCLMULQDQ instructions.
      crypto: sha256 - Expose SHA256 generic routine to be callable externally.
      crypto: sha256 - Optimized sha256 x86_64 assembly routine using Supplemental SSE3 instructions.
      crypto: sha256 - Optimized sha256 x86_64 assembly routine with AVX instructions.
      crypto: sha256 - Optimized sha256 x86_64 routine using AVX2's RORX instructions
      crypto: sha256 - Create module providing optimized SHA256 routines using SSSE3, AVX or AVX2 instructions.
      crypto: sha512 - Expose generic sha512 routine to be callable from other modules
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using Supplemental SSE3 instructions.
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using AVX instructions.
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using AVX2 RORX instruction.
      crypto: sha512 - Create module providing optimized SHA512 routines using SSSE3, AVX or AVX2 instructions.

Vakul Garg (3):
      crypto: caam - set RDB bit in security configuration register
      crypto: caam - Fix missing init of '.type' in AEAD algos.
      crypto: caam - fix job ring cleanup code

Wei Yongjun (1):
      crypto: ux500 - fix error return code in hash_dma_final()

 .../devicetree/bindings/crypto/fsl-imx-sahara.txt  |   15 +
 .../devicetree/bindings/hwrng/timeriomem_rng.txt   |   18 +
 .../devicetree/bindings/rng/brcm,bcm2835.txt       |   13 +
 Documentation/hw_random.txt                        |    2 +-
 arch/arm/mach-at91/at91sam9g45_devices.c           |   14 +-
 arch/x86/crypto/Makefile                           |   57 +-
 arch/x86/crypto/aesni-intel_asm.S                  |  117 ++
 arch/x86/crypto/aesni-intel_glue.c                 |   80 ++
 arch/x86/crypto/blowfish-avx2-asm_64.S             |  449 +++++++
 .../{blowfish_glue.c => blowfish_avx2_glue.c}      |  402 ++++---
 arch/x86/crypto/blowfish_glue.c                    |   32 +-
 arch/x86/crypto/camellia-aesni-avx-asm_64.S        |  180 +++-
 arch/x86/crypto/camellia-aesni-avx2-asm_64.S       | 1368 ++++++++++++++++++++
 ...aesni_avx_glue.c => camellia_aesni_avx2_glue.c} |  182 ++--
 arch/x86/crypto/camellia_aesni_avx_glue.c          |  104 +-
 arch/x86/crypto/cast6-avx-x86_64-asm_64.S          |   48 +-
 arch/x86/crypto/cast6_avx_glue.c                   |   91 +-
 arch/x86/crypto/crc32-pclmul_asm.S                 |    6 +-
 arch/x86/crypto/crc32c-pcl-intel-asm_64.S          |   10 +-
 arch/x86/crypto/glue_helper-asm-avx.S              |   61 +-
 arch/x86/crypto/glue_helper-asm-avx2.S             |  180 +++
 arch/x86/crypto/glue_helper.c                      |   97 ++-
 arch/x86/crypto/serpent-avx-x86_64-asm_64.S        |   45 +-
 ...t-avx-x86_64-asm_64.S => serpent-avx2-asm_64.S} |  207 ++--
 .../{serpent_avx_glue.c => serpent_avx2_glue.c}    |  323 +++---
 arch/x86/crypto/serpent_avx_glue.c                 |  145 ++-
 arch/x86/crypto/sha256-avx-asm.S                   |  496 +++++++
 arch/x86/crypto/sha256-avx2-asm.S                  |  772 +++++++++++
 arch/x86/crypto/sha256-ssse3-asm.S                 |  506 ++++++++
 arch/x86/crypto/sha256_ssse3_glue.c                |  275 ++++
 arch/x86/crypto/sha512-avx-asm.S                   |  423 ++++++
 arch/x86/crypto/sha512-avx2-asm.S                  |  743 +++++++++++
 arch/x86/crypto/sha512-ssse3-asm.S                 |  421 ++++++
 arch/x86/crypto/sha512_ssse3_glue.c                |  282 ++++
 arch/x86/crypto/twofish-avx-x86_64-asm_64.S        |   48 +-
 arch/x86/crypto/twofish-avx2-asm_64.S              |  600 +++++++++
 .../{twofish_avx_glue.c => twofish_avx2_glue.c}    |  269 ++--
 arch/x86/crypto/twofish_avx_glue.c                 |  101 +-
 arch/x86/include/asm/cpufeature.h                  |    1 +
 arch/x86/include/asm/crypto/blowfish.h             |   43 +
 arch/x86/include/asm/crypto/camellia.h             |   19 +
 arch/x86/include/asm/crypto/glue_helper.h          |   24 +
 arch/x86/include/asm/crypto/serpent-avx.h          |   29 +
 arch/x86/include/asm/crypto/twofish.h              |   18 +
 crypto/Kconfig                                     |  133 ++-
 crypto/Makefile                                    |    1 +
 crypto/cmac.c                                      |  315 +++++
 crypto/crypto_user.c                               |    4 +-
 crypto/gcm.c                                       |  116 ++-
 crypto/sha256_generic.c                            |   11 +-
 crypto/sha512_generic.c                            |   13 +-
 crypto/tcrypt.c                                    |   30 +-
 crypto/testmgr.c                                   |   95 ++-
 crypto/testmgr.h                                   | 1314 ++++++++++++++++++-
 drivers/char/hw_random/Kconfig                     |   12 +
 drivers/char/hw_random/Makefile                    |    1 +
 drivers/char/hw_random/bcm2835-rng.c               |  113 ++
 drivers/char/hw_random/exynos-rng.c                |    3 +-
 drivers/char/hw_random/mxc-rnga.c                  |   21 +-
 drivers/char/hw_random/timeriomem-rng.c            |  190 ++-
 drivers/crypto/Kconfig                             |   18 +-
 drivers/crypto/Makefile                            |    1 +
 drivers/crypto/atmel-aes.c                         |  471 +++++--
 drivers/crypto/atmel-sha-regs.h                    |    7 +-
 drivers/crypto/atmel-sha.c                         |  586 +++++++--
 drivers/crypto/atmel-tdes-regs.h                   |    2 +
 drivers/crypto/atmel-tdes.c                        |  394 +++++-
 drivers/crypto/bfin_crc.c                          |    6 +-
 drivers/crypto/caam/Kconfig                        |    2 +-
 drivers/crypto/caam/caamalg.c                      |    6 +
 drivers/crypto/caam/caamhash.c                     |    4 +-
 drivers/crypto/caam/ctrl.c                         |    3 +
 drivers/crypto/caam/error.c                        |   10 +-
 drivers/crypto/caam/intern.h                       |    1 +
 drivers/crypto/caam/jr.c                           |    4 +
 drivers/crypto/caam/key_gen.c                      |    2 +-
 drivers/crypto/caam/key_gen.h                      |    2 +-
 drivers/crypto/caam/regs.h                         |    4 +-
 drivers/crypto/omap-aes.c                          |   15 +-
 drivers/crypto/omap-sham.c                         |   15 +-
 drivers/crypto/picoxcell_crypto.c                  |    4 +-
 drivers/crypto/sahara.c                            | 1070 +++++++++++++++
 drivers/crypto/ux500/hash/hash_core.c              |    6 +-
 include/crypto/sha.h                               |    5 +
 include/linux/platform_data/atmel-aes.h            |   22 -
 include/linux/platform_data/crypto-atmel.h         |   22 +
 include/linux/timeriomem-rng.h                     |    5 -
 net/xfrm/xfrm_algo.c                               |   13 +
 88 files changed, 13036 insertions(+), 1352 deletions(-)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

WARNING: multiple messages have this Message-ID (diff)
From: Herbert Xu <herbert@gondor.hengli.com.au>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	"David S. Miller" <davem@davemloft.net>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Linux Crypto Mailing List <linux-crypto@vger.kernel.org>
Subject: Crypto Update for 3.10
Date: Thu, 2 May 2013 09:47:03 +0800	[thread overview]
Message-ID: <20130502014703.GA2033@gondor.apana.org.au> (raw)
In-Reply-To: <20130223023331.GA11002@gondor.apana.org.au>

Hi Linus:

Here is the crypto update for 3.10:

* XTS mode optimisation for twofish/cast6/camellia/aes on x86.
* AVX2/x86_64 implementation for blowfish/twofish/serpent/camellia.
* SSSE3/AVX/AVX2 optimisations for sha256/sha512.
* Added driver for SAHARA2 crypto accelerator.
* Fix for GMAC when used in non-IPsec secnarios.
* Added generic CMAC implementation (including IPsec glue).
* IP update for crypto/atmel.
* Support for more than one device in hwrng/timeriomem.
* Added Broadcom BCM2835 RNG driver.
* Misc fixes.


Please pull from

git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git


Alexander Clouter (2):
      hwrng: timeriomem - update to support more than one device
      hwrng: timeriomem - added devicetree hooks

Fabio Estevam (1):
      hwrng: mxc-rnga - Use devm_ioremap_resource()

Herbert Xu (1):
      crypto: crc32c - Kill pointless CRYPTO_CRC32C_X86_64 option

Javier Martin (1):
      crypto: sahara - Add driver for SAHARA2 accelerator.

Jingoo Han (1):
      hwrng: exynos - add CONFIG_PM_SLEEP/CONFIG_PM_RUNTIME to suspend/resume

Joel A Fernandes (2):
      crypto: omap-sham - Use pm_runtime_put instead of pm_runtime_put_sync in tasklet
      crypto: omap-aes - Use pm_runtime_put instead of pm_runtime_put_sync in tasklet

Jussi Kivilinna (20):
      crypto: x86/crc32-pclmul - assembly clean-ups: use ENTRY/ENDPROC
      crypto: x86 - build AVX block cipher implementations only if assembler supports AVX instructions
      crypto: gcm - make GMAC work when dst and src are different
      crypto: gcm - fix rfc4543 to handle async crypto correctly
      crypto: testmgr - add AES GMAC test vectors
      crypto: testmgr - add empty test vectors for null ciphers
      crypto: add CMAC support to CryptoAPI
      xfrm: add rfc4494 AES-CMAC-96 support
      crypto: x86 - add more optimized XTS-mode for serpent-avx
      crypto: x86/twofish-avx - use optimized XTS code
      crypto: cast6-avx: use new optimized XTS code
      crypto: x86/camellia-aesni-avx - add more optimized XTS code
      crypto: aesni_intel - add more optimized XTS mode for x86-64
      crypto: aesni_intel - fix Kconfig problem with CRYPTO_GLUE_HELPER_X86
      crypto: testmgr - extend camellia test-vectors for camellia-aesni/avx2
      crypto: tcrypt - add async cipher speed tests for blowfish
      crypto: blowfish - add AVX2/x86_64 implementation of blowfish cipher
      crypto: twofish - add AVX2/x86_64 assembler implementation of twofish cipher
      crypto: serpent - add AVX2/x86_64 assembler implementation of serpent cipher
      crypto: camellia - add AVX2/AES-NI/x86_64 assembler implementation of camellia cipher

Kim Phillips (2):
      crypto: caam - change key gen functions to return signed int
      crypto: caam - static constify error data

Lubomir Rintel (1):
      hwrng: bcm2835 - Add Broadcom BCM2835 RNG driver

Mathias Krause (1):
      crypto: user - constify netlink dispatch table

Mihnea Dobrescu-Balaur (1):
      crypto: ux500 - replace kmalloc and then memcpy with kmemdup

Nicolas Royer (4):
      ARM: AT91SAM9G45: same platform data structure for all crypto peripherals
      crypto: atmel-aes - add support for latest release of the IP (0x130)
      crypto: atmel-tdes - add support for latest release of the IP (0x700)
      crypto: atmel-sha - add support for latest release of the IP (0x410)

Paul Bolle (1):
      crypto: caam - fix typo "CRYPTO_AHASH"

Sachin Kamat (3):
      crypto: omap-aes - Use module_platform_driver macro
      crypto: omap-sham - Use module_platform_driver macro
      crypto: picoxcell - Use of_match_ptr() macro

Sandy Wu (1):
      crypto: crc32-pclmul - Use gas macro for pclmulqdq

Syam Sidhardhan (1):
      crypto: bfin_crc - Fix possible NULL pointer dereference

Tang Chen (1):
      hwrng: Fix a wrong comment in Documentation/hw_random.txt

Tim Chen (11):
      crypto: crc32c - Update the links to the white papers on CRC32C calculations with PCLMULQDQ instructions.
      crypto: sha256 - Expose SHA256 generic routine to be callable externally.
      crypto: sha256 - Optimized sha256 x86_64 assembly routine using Supplemental SSE3 instructions.
      crypto: sha256 - Optimized sha256 x86_64 assembly routine with AVX instructions.
      crypto: sha256 - Optimized sha256 x86_64 routine using AVX2's RORX instructions
      crypto: sha256 - Create module providing optimized SHA256 routines using SSSE3, AVX or AVX2 instructions.
      crypto: sha512 - Expose generic sha512 routine to be callable from other modules
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using Supplemental SSE3 instructions.
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using AVX instructions.
      crypto: sha512 - Optimized SHA512 x86_64 assembly routine using AVX2 RORX instruction.
      crypto: sha512 - Create module providing optimized SHA512 routines using SSSE3, AVX or AVX2 instructions.

Vakul Garg (3):
      crypto: caam - set RDB bit in security configuration register
      crypto: caam - Fix missing init of '.type' in AEAD algos.
      crypto: caam - fix job ring cleanup code

Wei Yongjun (1):
      crypto: ux500 - fix error return code in hash_dma_final()

 .../devicetree/bindings/crypto/fsl-imx-sahara.txt  |   15 +
 .../devicetree/bindings/hwrng/timeriomem_rng.txt   |   18 +
 .../devicetree/bindings/rng/brcm,bcm2835.txt       |   13 +
 Documentation/hw_random.txt                        |    2 +-
 arch/arm/mach-at91/at91sam9g45_devices.c           |   14 +-
 arch/x86/crypto/Makefile                           |   57 +-
 arch/x86/crypto/aesni-intel_asm.S                  |  117 ++
 arch/x86/crypto/aesni-intel_glue.c                 |   80 ++
 arch/x86/crypto/blowfish-avx2-asm_64.S             |  449 +++++++
 .../{blowfish_glue.c => blowfish_avx2_glue.c}      |  402 ++++---
 arch/x86/crypto/blowfish_glue.c                    |   32 +-
 arch/x86/crypto/camellia-aesni-avx-asm_64.S        |  180 +++-
 arch/x86/crypto/camellia-aesni-avx2-asm_64.S       | 1368 ++++++++++++++++++++
 ...aesni_avx_glue.c => camellia_aesni_avx2_glue.c} |  182 ++--
 arch/x86/crypto/camellia_aesni_avx_glue.c          |  104 +-
 arch/x86/crypto/cast6-avx-x86_64-asm_64.S          |   48 +-
 arch/x86/crypto/cast6_avx_glue.c                   |   91 +-
 arch/x86/crypto/crc32-pclmul_asm.S                 |    6 +-
 arch/x86/crypto/crc32c-pcl-intel-asm_64.S          |   10 +-
 arch/x86/crypto/glue_helper-asm-avx.S              |   61 +-
 arch/x86/crypto/glue_helper-asm-avx2.S             |  180 +++
 arch/x86/crypto/glue_helper.c                      |   97 ++-
 arch/x86/crypto/serpent-avx-x86_64-asm_64.S        |   45 +-
 ...t-avx-x86_64-asm_64.S => serpent-avx2-asm_64.S} |  207 ++--
 .../{serpent_avx_glue.c => serpent_avx2_glue.c}    |  323 +++---
 arch/x86/crypto/serpent_avx_glue.c                 |  145 ++-
 arch/x86/crypto/sha256-avx-asm.S                   |  496 +++++++
 arch/x86/crypto/sha256-avx2-asm.S                  |  772 +++++++++++
 arch/x86/crypto/sha256-ssse3-asm.S                 |  506 ++++++++
 arch/x86/crypto/sha256_ssse3_glue.c                |  275 ++++
 arch/x86/crypto/sha512-avx-asm.S                   |  423 ++++++
 arch/x86/crypto/sha512-avx2-asm.S                  |  743 +++++++++++
 arch/x86/crypto/sha512-ssse3-asm.S                 |  421 ++++++
 arch/x86/crypto/sha512_ssse3_glue.c                |  282 ++++
 arch/x86/crypto/twofish-avx-x86_64-asm_64.S        |   48 +-
 arch/x86/crypto/twofish-avx2-asm_64.S              |  600 +++++++++
 .../{twofish_avx_glue.c => twofish_avx2_glue.c}    |  269 ++--
 arch/x86/crypto/twofish_avx_glue.c                 |  101 +-
 arch/x86/include/asm/cpufeature.h                  |    1 +
 arch/x86/include/asm/crypto/blowfish.h             |   43 +
 arch/x86/include/asm/crypto/camellia.h             |   19 +
 arch/x86/include/asm/crypto/glue_helper.h          |   24 +
 arch/x86/include/asm/crypto/serpent-avx.h          |   29 +
 arch/x86/include/asm/crypto/twofish.h              |   18 +
 crypto/Kconfig                                     |  133 ++-
 crypto/Makefile                                    |    1 +
 crypto/cmac.c                                      |  315 +++++
 crypto/crypto_user.c                               |    4 +-
 crypto/gcm.c                                       |  116 ++-
 crypto/sha256_generic.c                            |   11 +-
 crypto/sha512_generic.c                            |   13 +-
 crypto/tcrypt.c                                    |   30 +-
 crypto/testmgr.c                                   |   95 ++-
 crypto/testmgr.h                                   | 1314 ++++++++++++++++++-
 drivers/char/hw_random/Kconfig                     |   12 +
 drivers/char/hw_random/Makefile                    |    1 +
 drivers/char/hw_random/bcm2835-rng.c               |  113 ++
 drivers/char/hw_random/exynos-rng.c                |    3 +-
 drivers/char/hw_random/mxc-rnga.c                  |   21 +-
 drivers/char/hw_random/timeriomem-rng.c            |  190 ++-
 drivers/crypto/Kconfig                             |   18 +-
 drivers/crypto/Makefile                            |    1 +
 drivers/crypto/atmel-aes.c                         |  471 +++++--
 drivers/crypto/atmel-sha-regs.h                    |    7 +-
 drivers/crypto/atmel-sha.c                         |  586 +++++++--
 drivers/crypto/atmel-tdes-regs.h                   |    2 +
 drivers/crypto/atmel-tdes.c                        |  394 +++++-
 drivers/crypto/bfin_crc.c                          |    6 +-
 drivers/crypto/caam/Kconfig                        |    2 +-
 drivers/crypto/caam/caamalg.c                      |    6 +
 drivers/crypto/caam/caamhash.c                     |    4 +-
 drivers/crypto/caam/ctrl.c                         |    3 +
 drivers/crypto/caam/error.c                        |   10 +-
 drivers/crypto/caam/intern.h                       |    1 +
 drivers/crypto/caam/jr.c                           |    4 +
 drivers/crypto/caam/key_gen.c                      |    2 +-
 drivers/crypto/caam/key_gen.h                      |    2 +-
 drivers/crypto/caam/regs.h                         |    4 +-
 drivers/crypto/omap-aes.c                          |   15 +-
 drivers/crypto/omap-sham.c                         |   15 +-
 drivers/crypto/picoxcell_crypto.c                  |    4 +-
 drivers/crypto/sahara.c                            | 1070 +++++++++++++++
 drivers/crypto/ux500/hash/hash_core.c              |    6 +-
 include/crypto/sha.h                               |    5 +
 include/linux/platform_data/atmel-aes.h            |   22 -
 include/linux/platform_data/crypto-atmel.h         |   22 +
 include/linux/timeriomem-rng.h                     |    5 -
 net/xfrm/xfrm_algo.c                               |   13 +
 88 files changed, 13036 insertions(+), 1352 deletions(-)

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

  reply	other threads:[~2013-05-02  1:47 UTC|newest]

Thread overview: 364+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-25  0:17 Crypto Update for 2.6.29 Herbert Xu
2008-12-25  0:17 ` Herbert Xu
2008-12-25  0:20 ` Herbert Xu
2008-12-25  0:20   ` Herbert Xu
2009-03-24  4:49   ` Crypto Update for 2.6.30 Herbert Xu
2009-03-24  4:49   ` Herbert Xu
2009-04-02  6:14     ` Herbert Xu
2009-04-02  6:14       ` Herbert Xu
2009-05-17 22:28       ` Herbert Xu
2009-05-17 22:28         ` Herbert Xu
2009-05-31 13:12         ` Herbert Xu
2009-05-31 13:12           ` Herbert Xu
2009-06-13  2:05     ` Crypto Update for 2.6.31 Herbert Xu
2009-06-13  2:05       ` Herbert Xu
2009-06-21 14:09       ` Crypto Fixes " Herbert Xu
2009-06-21 14:09         ` Herbert Xu
2009-09-02 22:03         ` Herbert Xu
2009-09-02 22:03           ` Herbert Xu
2009-09-10 14:19       ` Crypto Update for 2.6.32 Herbert Xu
2009-09-10 14:19       ` Herbert Xu
2009-10-20  6:54         ` Crypto Fixes " Herbert Xu
2009-10-20  6:54           ` Herbert Xu
2009-10-20  7:26           ` Herbert Xu
2009-10-20  7:26             ` Herbert Xu
2009-11-23 12:05             ` Herbert Xu
2009-11-23 12:05             ` Herbert Xu
2009-12-30  2:12           ` Crypto Fixes for 2.6.33 Herbert Xu
2009-12-30  2:12             ` Herbert Xu
2010-02-01 19:52             ` Herbert Xu
2010-03-05  7:10               ` Crypto Fixes for 2.6.34 Herbert Xu
2010-04-27 13:55                 ` Herbert Xu
2010-04-27 13:55                   ` Herbert Xu
2010-06-03 10:05                   ` Crypto Fixes for 2.6.35 Herbert Xu
2010-06-03 10:05                     ` Herbert Xu
2010-06-03 16:26                     ` Linus Torvalds
2010-06-03 21:56                       ` Herbert Xu
2010-06-03 21:56                         ` Herbert Xu
2010-07-16  2:26                     ` Herbert Xu
2010-07-16  2:26                       ` Herbert Xu
2010-07-22  5:50                       ` Herbert Xu
2010-07-22  5:50                         ` Herbert Xu
2010-07-23  5:17                         ` Lee Nipper
2010-07-23  7:27                           ` Herbert Xu
2010-07-23 13:17                             ` Lee Nipper
2010-09-03  6:00                         ` Herbert Xu
2010-09-03  6:00                           ` Herbert Xu
2010-09-03 11:07                           ` Crypto Fixes for 2.6.36 Herbert Xu
2010-09-03 11:07                             ` Herbert Xu
2010-12-15 11:50                             ` Crypto Fixes for 2.6.37 Herbert Xu
2010-12-15 11:50                               ` Herbert Xu
2010-12-15 20:40                               ` Linus Torvalds
2010-12-16  0:49                                 ` Herbert Xu
2010-12-16  0:49                                   ` Herbert Xu
2010-12-16  0:58                                   ` Herbert Xu
2010-12-16  0:58                                     ` Herbert Xu
2010-12-20  9:56                                     ` Junio C Hamano
2010-12-21  3:22                                       ` Herbert Xu
2011-02-16  5:39                               ` Crypto Fixes for 2.6.38 Herbert Xu
2011-03-28  7:13                                 ` Crypto Fixes for 2.6.39 Herbert Xu
2011-03-28  7:13                                   ` Herbert Xu
2011-06-29 23:51                                   ` Crypto Fixes for 3.0 Herbert Xu
2011-06-29 23:51                                     ` Herbert Xu
2011-10-21  8:22                                     ` Crypto Fixes for 3.1 Herbert Xu
2011-10-21  8:22                                       ` Herbert Xu
2011-10-21  9:41                                       ` David Rientjes
2011-10-21 11:35                                         ` Herbert Xu
2011-10-21 11:35                                           ` Herbert Xu
2011-11-10 23:00                                       ` Crypto Fixes for 3.2 Herbert Xu
2011-11-10 23:00                                         ` Herbert Xu
2011-11-26  2:34                                         ` Herbert Xu
2011-11-26  2:34                                           ` Herbert Xu
2012-01-26  2:43                                     ` Crypto Fixes for 3.3 Herbert Xu
2012-01-26  2:43                                       ` Herbert Xu
2012-01-26  3:35                                       ` Linus Torvalds
2012-01-26  3:35                                         ` Linus Torvalds
2012-01-26  4:07                                         ` Herbert Xu
2012-01-26  4:07                                           ` Herbert Xu
2012-01-26  4:16                                           ` Linus Torvalds
2012-01-26  4:16                                             ` Linus Torvalds
2012-02-14  3:35                                       ` Herbert Xu
2012-02-14  3:35                                         ` Herbert Xu
2012-02-16  5:32                                         ` Herbert Xu
2012-02-16  5:32                                           ` Herbert Xu
2012-03-03  5:36                                           ` Herbert Xu
2012-03-03  5:36                                             ` Herbert Xu
2012-03-22  1:20                                       ` Crypto Fixes for 3.4 Herbert Xu
2012-03-22  1:20                                         ` Herbert Xu
2012-04-02  9:45                                         ` Herbert Xu
2012-04-02  9:45                                           ` Herbert Xu
2012-04-20 14:16                                           ` Herbert Xu
2012-04-20 14:16                                             ` Herbert Xu
2012-06-11 13:00                                         ` Crypto Fixes for 3.5 Herbert Xu
2012-06-11 13:00                                           ` Herbert Xu
2012-06-18  8:24                                           ` Herbert Xu
2012-06-18  8:24                                             ` Herbert Xu
2012-08-23  8:32                                       ` Crypto Fixes for 3.6 Herbert Xu
2012-08-23  8:32                                         ` Herbert Xu
2012-09-11  4:10                                         ` Herbert Xu
2012-09-11  4:10                                           ` Herbert Xu
2012-11-09  9:30                                         ` Crypto Fixes for 3.7 Herbert Xu
2012-11-09  9:30                                           ` Herbert Xu
2013-03-28  8:28                                           ` Crypto Fixes for 3.9 Herbert Xu
2013-03-28  8:28                                             ` Herbert Xu
2013-03-28 13:05                                             ` Chaoxing Lin
2013-03-28 13:05                                               ` Chaoxing Lin
2013-03-28 13:52                                               ` Herbert Xu
2013-03-28 13:52                                                 ` Herbert Xu
2013-04-10  2:21                                             ` Herbert Xu
2013-04-10  2:21                                               ` Herbert Xu
2013-04-22  0:34                                               ` Herbert Xu
2013-04-22  0:34                                                 ` Herbert Xu
2013-05-28  5:52                                             ` Crypto Fixes for 3.10 Herbert Xu
2013-05-28  5:52                                               ` Herbert Xu
2013-06-10  9:05                                               ` Herbert Xu
2013-06-10  9:05                                                 ` Herbert Xu
2013-06-20 13:29                                                 ` Herbert Xu
2013-06-20 13:29                                                   ` Herbert Xu
2013-06-27 13:02                                                   ` Herbert Xu
2013-06-27 13:02                                                     ` Herbert Xu
2013-07-24  7:23                                             ` Crypto Fixes for 3.11 Herbert Xu
2013-07-24  7:23                                               ` Herbert Xu
2013-09-13 11:30                                             ` Crypto Fixes for 3.12 Herbert Xu
2013-09-13 11:30                                               ` Herbert Xu
2013-09-13 14:22                                               ` Linus Torvalds
2013-09-13 14:22                                                 ` Linus Torvalds
2013-09-13 14:39                                                 ` Herbert Xu
2013-09-13 14:39                                                   ` Herbert Xu
2013-12-03 12:41                                             ` Crypto Fixes for 3.13 Herbert Xu
2013-12-09 11:57                                               ` Herbert Xu
2014-01-01  6:10                                                 ` Herbert Xu
2014-02-03 12:59                                                   ` Crypto Fixes for 3.14 Herbert Xu
2014-04-13 23:34                                                     ` Crypto Fixes for 3.15 Herbert Xu
2014-05-13 11:02                                                       ` Herbert Xu
2014-05-21 12:22                                                         ` Herbert Xu
2014-07-10  9:03                                                     ` Crypto Fixes for 3.16 Herbert Xu
2014-07-18 10:57                                                       ` Herbert Xu
2014-07-28 14:05                                                         ` Herbert Xu
2014-07-31 13:59                                                           ` Herbert Xu
2014-09-15 11:35                                                       ` Crypto Fixes for 3.17 Herbert Xu
2014-09-24 13:27                                                         ` Herbert Xu
2014-11-10  8:57                                                           ` Crypto Fixes for 3.18 Herbert Xu
2014-12-31  3:32                                                     ` Crypto Fixes for 3.19 Herbert Xu
2015-01-07  2:17                                                       ` Herbert Xu
2015-01-20  0:52                                                         ` Herbert Xu
2015-03-09  5:19                                                         ` Crypto Fixes for 4.0 Herbert Xu
2015-03-18  5:25                                                           ` Herbert Xu
2015-03-18 18:12                                                             ` Linus Torvalds
2015-04-25  8:03                                                         ` Crypto Fixes for 4.1 Herbert Xu
2015-05-05 10:06                                                           ` Herbert Xu
2015-05-11  5:56                                                             ` Herbert Xu
2015-05-20  6:54                                                               ` Herbert Xu
2015-05-22  4:05                                                                 ` Herbert Xu
2015-05-22 21:29                                                                   ` Linus Torvalds
2015-05-22 21:39                                                                     ` Herbert Xu
2015-05-26  8:43                                                                   ` Herbert Xu
2015-06-18  3:43                                                                     ` Herbert Xu
2011-02-16  5:39                               ` Crypto Fixes for 2.6.38 Herbert Xu
2010-09-04 10:45                           ` Crypto Fixes for 2.6.35 Chuck Ebbert
2010-09-04 12:22                             ` Herbert Xu
2010-09-04 12:22                               ` Herbert Xu
2010-03-05  7:10               ` Crypto Fixes for 2.6.34 Herbert Xu
2010-11-13 12:59               ` Crypto Fixes for 2.6.37 Herbert Xu
2010-11-13 12:59               ` Herbert Xu
2010-02-01 19:52             ` Crypto Fixes for 2.6.33 Herbert Xu
2009-12-04 13:55     ` Crypto Update " Herbert Xu
2009-12-04 13:55       ` Herbert Xu
2010-02-26  0:49       ` Crypto Update for 2.6.34 Herbert Xu
2010-02-26  0:49         ` Herbert Xu
2010-03-01  7:50         ` tip: origin tree boot crash Ingo Molnar
2010-03-01 14:55           ` Steffen Klassert
2010-03-03 14:42             ` Herbert Xu
2010-03-04  3:00               ` Ingo Molnar
2010-03-04  5:31                 ` Herbert Xu
2010-05-19  2:06         ` Crypto Update for 2.6.35 Herbert Xu
2010-05-19  2:06           ` Herbert Xu
2010-05-21 10:44           ` Herbert Xu
2010-05-21 10:44             ` Herbert Xu
2010-08-04 14:04             ` Crypto Update for 2.6.36 Herbert Xu
2010-08-04 14:04               ` Herbert Xu
2010-10-24  6:16               ` Crypto Update for 2.6.37 Herbert Xu
2011-01-06  0:01                 ` Crypto Update for 2.6.38 Herbert Xu
2011-01-06  0:01                   ` Herbert Xu
2011-01-06 18:05                   ` Linus Torvalds
2011-01-06 21:16                     ` Herbert Xu
2011-01-06 21:16                       ` Herbert Xu
2011-01-06 21:23                       ` Linus Torvalds
2011-01-06 21:39                         ` Herbert Xu
2011-01-06 21:39                           ` Herbert Xu
2011-01-06 22:13                           ` Linus Torvalds
2011-01-06 22:30                             ` Herbert Xu
2011-01-06 22:30                               ` Herbert Xu
2011-01-06 22:33                               ` David Miller
2011-01-06 22:33                                 ` David Miller
2011-01-06 22:43                               ` Linus Torvalds
2011-01-06 22:53                                 ` Herbert Xu
2011-01-06 22:53                                   ` Herbert Xu
2011-01-06 23:25                                   ` Linus Torvalds
2011-01-07  0:14                                     ` Herbert Xu
2011-01-07  0:14                                       ` Herbert Xu
2011-01-07  2:43                                       ` David Miller
2011-01-07  2:43                                         ` David Miller
2011-01-07  3:04                                         ` Herbert Xu
2011-01-07  3:04                                           ` Herbert Xu
2011-01-07  2:39                                   ` Pavel Roskin
2011-01-07  2:39                                     ` Pavel Roskin
2011-01-07  3:03                                     ` Herbert Xu
2011-01-07  3:03                                       ` Herbert Xu
2011-01-07 12:04                             ` Neil Horman
2011-01-08 13:23                               ` Nikos Mavrogiannopoulos
2011-01-10 12:03                                 ` Neil Horman
2011-01-10 19:05                                   ` Dag Arne Osvik
2011-01-06 21:46                       ` Pavel Roskin
2011-01-06 21:46                         ` Pavel Roskin
2011-01-06 21:49                         ` Herbert Xu
2011-01-06 21:49                           ` Herbert Xu
2011-01-06 23:02                         ` Mihai Donțu
2011-01-06 23:02                           ` Mihai Donțu
2011-01-13  1:44                   ` Herbert Xu
2011-01-13  1:44                     ` Herbert Xu
2011-03-15 14:59                   ` Crypto Update for 2.6.39 Herbert Xu
2011-03-15 14:59                     ` Herbert Xu
2011-05-20 23:54                     ` Crypto Update for 2.6.40 Herbert Xu
2011-05-20 23:54                       ` Herbert Xu
2011-07-24  1:17                       ` Crypto Update for 3.1 Herbert Xu
2011-07-24  1:17                         ` Herbert Xu
2011-10-31  4:09                         ` Crypto Update for 3.2 Herbert Xu
2011-10-31  4:09                           ` Herbert Xu
2011-10-31 16:42                           ` Randy Dunlap
2011-10-31 16:42                             ` Randy Dunlap
2011-10-31 17:16                             ` Linus Torvalds
2011-10-31 17:16                               ` Linus Torvalds
2011-11-01  3:48                               ` Herbert Xu
2011-11-01  3:48                                 ` Herbert Xu
2012-01-06  4:12                           ` Crypto Update for 3.3 Herbert Xu
2012-01-06  4:12                             ` Herbert Xu
2012-01-11 22:19                             ` Herbert Xu
2012-01-11 22:19                               ` Herbert Xu
2012-03-20  3:27                             ` Herbert Xu
2012-03-20  3:27                               ` Herbert Xu
2012-05-23  1:35                               ` Crypto Update for 3.5 Herbert Xu
2012-05-23  1:35                                 ` Herbert Xu
2012-05-23 23:06                                 ` Linus Torvalds
2012-05-23 23:06                                   ` Linus Torvalds
2012-05-24  0:21                                   ` Herbert Xu
2012-05-24  0:21                                     ` Herbert Xu
2012-05-24  8:36                                     ` Arnd Bergmann
2012-05-24  8:36                                       ` Arnd Bergmann
2012-05-24  7:03                                   ` Linus Walleij
2012-05-24  7:03                                     ` Linus Walleij
2012-07-25  8:41                                 ` Crypto Update for 3.6 Herbert Xu
2012-07-25  8:41                                   ` Herbert Xu
2012-10-04  9:53                             ` Crypto Update for 3.7 Herbert Xu
2012-10-04  9:53                               ` Herbert Xu
2012-12-14 10:31                               ` Crypto Update for 3.8 Herbert Xu
2012-12-14 10:31                                 ` Herbert Xu
2013-02-23  2:33                                 ` Crypto Update for 3.9 Herbert Xu
2013-02-23  2:33                                   ` Herbert Xu
2013-05-02  1:47                                   ` Herbert Xu [this message]
2013-05-02  1:47                                     ` Crypto Update for 3.10 Herbert Xu
2013-07-05  9:52                                     ` Crypto Update for 3.11 Herbert Xu
2013-07-05  9:52                                       ` Herbert Xu
2013-09-07  3:55                                   ` Crypto Update for 3.12 Herbert Xu
2013-09-07  3:55                                     ` Herbert Xu
2013-11-07  8:01                                     ` Crypto Update for 3.13 Herbert Xu
2013-11-07  8:01                                       ` Herbert Xu
2013-11-12 16:41                                       ` Herbert Xu
2013-11-12 16:41                                         ` Herbert Xu
2013-11-12 16:59                                         ` Borislav Petkov
2013-11-12 16:59                                           ` Borislav Petkov
2013-11-12 18:27                                           ` Herbert Xu
2013-11-12 18:27                                             ` Herbert Xu
2013-11-19  2:21                                         ` [GIT] " Herbert Xu
2013-11-19  2:21                                           ` Herbert Xu
2013-11-23  1:34                                         ` Herbert Xu
2013-11-23  1:34                                           ` Herbert Xu
2013-11-23  1:40                                           ` Herbert Xu
2013-11-23  1:40                                             ` Herbert Xu
2014-01-23 11:53                                       ` Crypto Update for 3.14 Herbert Xu
2014-04-01 10:00                                         ` Crypto Update for 3.15 Herbert Xu
2014-06-05  6:23                                           ` Crypto Update for 3.16 Herbert Xu
2014-06-08  2:56                                             ` Linus Torvalds
2014-06-08  4:55                                               ` Herbert Xu
2014-06-09  1:47                                               ` Steven Miao
2014-08-04 13:03                                             ` Crypto Update for 3.17 Herbert Xu
2014-10-07 13:18                                               ` Crypto Update for 3.18 Herbert Xu
2014-12-11 12:51                                                 ` Crypto Update for 3.19 Herbert Xu
2014-12-12 11:54                                                   ` Herbert Xu
2015-02-14  9:43                                                   ` Crypto Update for 3.20 Herbert Xu
2015-04-15  3:39                                                     ` Crypto Update for 4.1 Herbert Xu
2015-04-16  1:58                                                       ` Linus Torvalds
2015-04-16  2:37                                                         ` Linus Torvalds
2015-04-16  2:38                                                           ` Linus Torvalds
2015-04-16  2:42                                                             ` Herbert Xu
2015-04-16  2:49                                                               ` Linus Torvalds
2015-04-16  3:07                                                                 ` Herbert Xu
2015-04-16  3:34                                                                   ` Linus Torvalds
2015-04-23 19:27                                                                     ` Bobby Powers
2015-04-23 20:10                                                                       ` Ard Biesheuvel
2015-04-23 21:35                                                                         ` Bobby Powers
2015-04-24  6:37                                                                           ` [PATCH] crypto: x86/sha512_ssse3 - fixup for asm function prototype change Ard Biesheuvel
2015-04-24 12:20                                                                             ` Herbert Xu
2015-06-22  8:44                                                       ` Crypto Update for 4.2 Herbert Xu
2015-06-22  8:44                                                         ` Herbert Xu
2015-06-23  4:26                                                         ` Linus Torvalds
2015-06-23  4:26                                                           ` Linus Torvalds
2015-06-23  4:32                                                           ` Herbert Xu
2015-06-23  4:32                                                             ` Herbert Xu
2015-06-24  2:11                                                         ` Linus Torvalds
2015-06-24 13:29                                                           ` Herbert Xu
2015-08-31 13:56                                                         ` Crypto Update for 4.3 Herbert Xu
2015-11-02  8:04                                                           ` Crypto Update for 4.4 Herbert Xu
2016-01-11 10:14                                                             ` Crypto Update for 4.5 Herbert Xu
2016-01-22 10:18                                                               ` Crypto Fixes " Herbert Xu
2016-02-01  8:31                                                                 ` Herbert Xu
2016-02-09 17:54                                                                 ` Herbert Xu
2016-03-23 13:09                                                                 ` Crypto Fixes for 4.6 Herbert Xu
2016-03-30  9:11                                                                 ` Herbert Xu
2016-04-14  6:25                                                                   ` Herbert Xu
2016-04-25 11:12                                                                     ` Herbert Xu
2016-04-20  9:49                                                                   ` Herbert Xu
2016-05-09  8:46                                                                   ` Herbert Xu
2016-05-13  5:59                                                                 ` Herbert Xu
2016-05-20  8:41                                                                   ` Crypto Fixes for 4.7 Herbert Xu
2016-05-30  6:31                                                                     ` Herbert Xu
2016-06-27  6:28                                                                     ` Herbert Xu
2016-08-16  8:48                                                                       ` Crypto Fixes for 4.8 Herbert Xu
2016-07-22  3:39                                                                     ` Crypto Fixes for 4.7 Herbert Xu
2016-07-23  3:10                                                                       ` Herbert Xu
2016-08-01  9:58                                                                 ` Crypto Fixes for 4.8 Herbert Xu
2016-08-23  9:51                                                                   ` Herbert Xu
2016-08-31 14:19                                                                     ` Herbert Xu
2016-09-05  9:33                                                                   ` Herbert Xu
2016-09-13 10:35                                                                     ` Herbert Xu
2016-09-19 11:21                                                                     ` Herbert Xu
2016-09-23 14:48                                                                     ` Herbert Xu
2016-10-25  2:34                                                                   ` Crypto Fixes for 4.9 Herbert Xu
2016-03-15  7:20                                                               ` Crypto Update for 4.6 Herbert Xu
2016-05-16  7:16                                                                 ` Crypto Update for 4.7 Herbert Xu
2016-07-25 10:53                                                                   ` Crypto Update for 4.8 Herbert Xu
2016-10-10  3:34                                                                     ` Crypto Update for 4.9 Herbert Xu
2015-06-26 10:22                                                     ` Crypto Fixes for 4.2 Herbert Xu
2015-06-26 20:07                                                       ` Linus Torvalds
2015-06-27  6:56                                                         ` Herbert Xu
2015-06-27 16:40                                                           ` Linus Torvalds
2015-06-29  7:32                                                             ` Herbert Xu
2015-06-30 13:51                                                       ` Herbert Xu
2015-07-13  4:08                                                         ` Herbert Xu
2015-08-03  7:16                                                           ` Herbert Xu
2015-08-17  8:27                                                             ` Herbert Xu
2015-09-08  9:25                                                       ` Crypto Fixes for 4.3 Herbert Xu
2015-09-16 10:30                                                         ` Herbert Xu
2015-09-26 20:01                                                           ` Herbert Xu
2015-10-13 12:17                                                             ` Herbert Xu
2015-10-13 17:23                                                               ` Linus Torvalds
2015-10-14  1:03                                                                 ` Herbert Xu
2015-10-14  2:00                                                                   ` Linus Torvalds
2015-10-14  2:38                                                                     ` Herbert Xu
2015-10-26 11:02                                                         ` Herbert Xu
2015-11-11  7:08                                                           ` Crypto Fixes for 4.4 Herbert Xu
2015-11-17  9:41                                                             ` Herbert Xu
2015-12-05  1:04                                                             ` Herbert Xu
2015-12-14  9:29                                                               ` Herbert Xu
2015-12-28 13:26                                                             ` Herbert Xu
2010-10-24  6:16               ` Crypto Update for 2.6.37 Herbert Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130502014703.GA2033@gondor.apana.org.au \
    --to=herbert@gondor.apana.org.au \
    --cc=davem@davemloft.net \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.