<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>1e4d73d0 - crypto: powerpc: Mark ghashp8-ppc.o as an OBJECT_FILES_NON_STANDARD</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#1e4d73d0</link>
        <description>crypto: powerpc: Mark ghashp8-ppc.o as an OBJECT_FILES_NON_STANDARDThe following build warning has been reported:  arch/powerpc/crypto/ghashp8-ppc.o: warning: objtool: .text+0x22c: unannotated intra-function callThis happens due to commit bb7f054f4de2 (&quot;objtool/powerpc: Add supportfor decoding all types of uncond branches&quot;)Disassembly of arch/powerpc/crypto/ghashp8-ppc.o shows: arch/powerpc/crypto/ghashp8-ppc.o:     file format elf64-powerpcle Disassembly of section .text: 0000000000000140 &lt;gcm_ghash_p8&gt;:   140:    f8 ff 00 3c     lis     r0,-8 ...   20c:    20 00 80 4e     blr   210:    00 00 00 00     .long 0x0   214:    00 0c 14 00     .long 0x140c00   218:    00 00 04 00     .long 0x40000   21c:    00 00 00 00     .long 0x0   220:    47 48 41 53     rlwimi. r1,r26,9,1,3   224:    48 20 66 6f     xoris   r6,r27,8264   228:    72 20 50 6f     xoris   r16,r26,8306   22c:    77 65 72 49     bla     1726574 &lt;gcm_ghash_p8+0x1726434&gt;      &lt;== ...It corresponds to the following code in ghashp8-ppc.o : _GLOBAL(gcm_ghash_p8)    lis    0,0xfff8 ...    blr .long    0 .byte    0,12,0x14,0,0,0,4,0 .long    0 .size    gcm_ghash_p8,.-gcm_ghash_p8 .byte 71,72,65,83,72,32,102,111,114,32,80,111,119,101,114,73,83,65,32,50,46,48,55,44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 .align    2 .align    2In fact this is raw data that is after the function end and that isnot text so shouldn&apos;t be disassembled as text. But ghashp8-ppc.S isgenerated by a perl script and should have been marked asOBJECT_FILES_NON_STANDARD.Now that &apos;bla&apos; is understood as a call instruction, that raw datais mis-interpreted as an infra-function call.Mark ghashp8-ppc.o as a OBJECT_FILES_NON_STANDARD to avoid thiswarning.Reported-by: Venkat Rao Bagalkote &lt;venkat88@linux.ibm.com&gt;Closes: https://lore.kernel.org/all/8c4c3fc2-2bd7-4148-af68-2f504d6119e0@linux.ibm.comFixes: 109303336a0c (&quot;crypto: vmx - Move to arch/powerpc/crypto&quot;)Signed-off-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Tested-By: Venkat Rao Bagalkote &lt;venkat88@linux.ibm.com&gt;Reviewed-by: Sathvika Vasireddy &lt;sv@linux.ibm.com&gt;Signed-off-by: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Link: https://patch.msgid.link/7aa7eb73fe6bc95ac210510e22394ca0ae227b69.1741128786.git.christophe.leroy@csgroup.eu

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Tue, 04 Mar 2025 23:02:39 +0000</pubDate>
        <dc:creator>Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;</dc:creator>
    </item>
<item>
        <title>db1fda2d - powerpc/crc: delete obsolete crc-vpmsum_test.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#db1fda2d</link>
        <description>powerpc/crc: delete obsolete crc-vpmsum_test.cDelete crc-vpmsum_test.c, since its functionality is now covered by thenew crc_kunit.c as well as the crypto subsystem&apos;s fuzz tests.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Reviewed-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;Cc: Vinicius Peixoto &lt;vpeixoto@lkcamp.dev&gt;Link: https://lore.kernel.org/r/20241202012056.209768-12-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Mon, 02 Dec 2024 01:20:55 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>7439cfed - powerpc/crc-t10dif: expose CRC-T10DIF function through lib</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#7439cfed</link>
        <description>powerpc/crc-t10dif: expose CRC-T10DIF function through libMove the powerpc CRC-T10DIF assembly code into the lib directory andwire it up to the library interface.  This allows it to be used withoutgoing through the crypto API.  It remains usable via the crypto API toovia the shash algorithms that use the library interface.  Thus all thearch-specific &quot;shash&quot; code becomes unnecessary and is removed.Note: to see the diff from arch/powerpc/crypto/crct10dif-vpmsum_glue.cto arch/powerpc/lib/crc-t10dif-glue.c, view this commit with&apos;git show -M10&apos;.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Reviewed-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;Link: https://lore.kernel.org/r/20241202012056.209768-8-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Mon, 02 Dec 2024 01:20:51 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>372ff60a - powerpc/crc32: expose CRC32 functions through lib</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#372ff60a</link>
        <description>powerpc/crc32: expose CRC32 functions through libMove the powerpc CRC32C assembly code into the lib directory and wire itup to the library interface.  This allows it to be used without goingthrough the crypto API.  It remains usable via the crypto API too viathe shash algorithms that use the library interface.  Thus all thearch-specific &quot;shash&quot; code becomes unnecessary and is removed.Note: to see the diff from arch/powerpc/crypto/crc32c-vpmsum_glue.c toarch/powerpc/lib/crc32-glue.c, view this commit with &apos;git show -M10&apos;.Reviewed-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20241202010844.144356-9-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Mon, 02 Dec 2024 01:08:33 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>b42519db - crypto: ppc/curve25519 - Update Kconfig and Makefile for ppc64le</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#b42519db</link>
        <description>crypto: ppc/curve25519 - Update Kconfig and Makefile for ppc64leDefined CRYPTO_CURVE25519_PPC64 to support X25519 for ppc64le.Added new module curve25519-ppc64le for X25519.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Thu, 16 May 2024 15:19:57 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>10930333 - crypto: vmx - Move to arch/powerpc/crypto</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#10930333</link>
        <description>crypto: vmx - Move to arch/powerpc/cryptoRelocate all crypto files in vmx driver to arch/powerpc/crypto directoryand remove vmx directory.drivers/crypto/vmx/aes.c rename to arch/powerpc/crypto/aes.cdrivers/crypto/vmx/aes_cbc.c rename to arch/powerpc/crypto/aes_cbc.cdrivers/crypto/vmx/aes_ctr.c rename to arch/powerpc/crypto/aes_ctr.cdrivers/crypto/vmx/aes_xts.c rename to arch/powerpc/crypto/aes_xts.cdrivers/crypto/vmx/aesp8-ppc.h rename to arch/powerpc/crypto/aesp8-ppc.hdrivers/crypto/vmx/aesp8-ppc.pl rename to arch/powerpc/crypto/aesp8-ppc.pldrivers/crypto/vmx/ghash.c rename to arch/powerpc/crypto/ghash.cdrivers/crypto/vmx/ghashp8-ppc.pl rename to arch/powerpc/crypto/ghashp8-ppc.pldrivers/crypto/vmx/vmx.c rename to arch/powerpc/crypto/vmx.cdeleted files:drivers/crypto/vmx/Makefiledrivers/crypto/vmx/Kconfigdrivers/crypto/vmx/ppc-xlate.plThis patch has been tested has passed the selftest.  The patch is also tested withCONFIG_CRYPTO_MANAGER_EXTRA_TESTS enabled.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Tue, 02 Jan 2024 20:58:56 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>161fca7e - crypto: powerpc - Add chacha20/poly1305-p10 to Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#161fca7e</link>
        <description>crypto: powerpc - Add chacha20/poly1305-p10 to Kconfig and MakefileDefined CRYPTO_CHACHA20_P10 and CRYPTO POLY1305_P10 in Kconfig tosupport optimized implementation for Power10 and later CPU.Added new module driver chacha-p10-crypto and poly1305-p10-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Wed, 26 Apr 2023 19:11:47 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>81d358b1 - powerpc/crypto: Fix aes-gcm-p10 link errors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#81d358b1</link>
        <description>powerpc/crypto: Fix aes-gcm-p10 link errorsThe recently added P10 AES/GCM code added some files containingCRYPTOGAMS perl-asm code which are near duplicates of the p8 filesfound in drivers/crypto/vmx.In particular the newly added files produce functions with identicalnames to the existing code.When the kernel is built with CONFIG_CRYPTO_AES_GCM_P10=y andCONFIG_CRYPTO_DEV_VMX_ENCRYPT=y that leads to link errors, eg:  ld: drivers/crypto/vmx/aesp8-ppc.o: in function `aes_p8_set_encrypt_key&apos;:  (.text+0xa0): multiple definition of `aes_p8_set_encrypt_key&apos;; arch/powerpc/crypto/aesp8-ppc.o:(.text+0xa0): first defined here  ...  ld: drivers/crypto/vmx/ghashp8-ppc.o: in function `gcm_ghash_p8&apos;:  (.text+0x140): multiple definition of `gcm_ghash_p8&apos;; arch/powerpc/crypto/ghashp8-ppc.o:(.text+0x2e4): first defined hereFix it for now by renaming the newly added files and functions to use&quot;p10&quot; instead of &quot;p8&quot; in the names.Fixes: 45a4672b9a6e (&quot;crypto: p10-aes-gcm - Update Kconfig and Makefile&quot;)Tested-by: Vishal Chourasia &lt;vishalc@linux.ibm.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230525150501.37081-1-mpe@ellerman.id.au

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Thu, 25 May 2023 02:43:21 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>45a4672b - crypto: p10-aes-gcm - Update Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#45a4672b</link>
        <description>crypto: p10-aes-gcm - Update Kconfig and MakefileDefined CRYPTO_AES_GCM_P10 in Kconfig to support AES/GCMstitched implementation for Power10 or later CPU.Added a new module driver aes-gcm-p10-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Tue, 21 Feb 2023 03:40:21 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>596f674d - crypto: p10-aes-gcm - Revert implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#596f674d</link>
        <description>crypto: p10-aes-gcm - Revert implementationRevert the changes that added p10-aes-gcm:	0781bbd7eaca (&quot;crypto: p10-aes-gcm - A perl script to process PowerPC assembler source&quot;)	41a6437ab415 (&quot;crypto: p10-aes-gcm - Supporting functions for ghash&quot;)	3b47eccaaff4 (&quot;crypto: p10-aes-gcm - Supporting functions for AES&quot;)	ca68a96c37eb (&quot;crypto: p10-aes-gcm - An accelerated AES/GCM stitched implementation&quot;)	cc40379b6e19 (&quot;crypto: p10-aes-gcm - Glue code for AES/GCM stitched implementation&quot;)	3c657e8689ab (&quot;crypto: p10-aes-gcm - Update Kconfig and Makefile&quot;)These changes fail to build in many configurations and are not readyfor prime time.Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Wed, 18 Jan 2023 09:07:19 +0000</pubDate>
        <dc:creator>Herbert Xu &lt;herbert@gondor.apana.org.au&gt;</dc:creator>
    </item>
<item>
        <title>3c657e86 - crypto: p10-aes-gcm - Update Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#3c657e86</link>
        <description>crypto: p10-aes-gcm - Update Kconfig and MakefileDefined CRYPTO_P10_AES_GCM in Kconfig to support AES/GCMstitched implementation for Power10+ CPU.Added a new module driver p10-aes-gcm-crypto.Signed-off-by: Danny Tsen &lt;dtsen@linux.ibm.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Mon, 05 Dec 2022 00:34:53 +0000</pubDate>
        <dc:creator>Danny Tsen &lt;dtsen@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>146c8688 - crypto: powerpc - Stress test for vpmsum implementations</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#146c8688</link>
        <description>crypto: powerpc - Stress test for vpmsum implementationsvpmsum implementations often don&apos;t kick in for short test vectors.This is a simple test module that does a configurable number ofrandom tests, each up to 64kB and each with random offsets.Both CRC-T10DIF and CRC32C are tested.Cc: Anton Blanchard &lt;anton@samba.org&gt;Signed-off-by: Daniel Axtens &lt;dja@axtens.net&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Wed, 15 Mar 2017 12:37:37 +0000</pubDate>
        <dc:creator>Daniel Axtens &lt;dja@axtens.net&gt;</dc:creator>
    </item>
<item>
        <title>b01df1c1 - crypto: powerpc - Add CRC-T10DIF acceleration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#b01df1c1</link>
        <description>crypto: powerpc - Add CRC-T10DIF accelerationT10DIF is a CRC16 used heavily in NVMe.It turns out we can accelerate it with a CRC32 library and a fewlittle tricks.Provide the accelerator based the refactored CRC32 code.Cc: Anton Blanchard &lt;anton@samba.org&gt;Thanks-to: Hong Bo Peng &lt;penghb@cn.ibm.com&gt;Signed-off-by: Daniel Axtens &lt;dja@axtens.net&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Wed, 15 Mar 2017 12:37:36 +0000</pubDate>
        <dc:creator>Daniel Axtens &lt;dja@axtens.net&gt;</dc:creator>
    </item>
<item>
        <title>7cf31864 - crypto: crc32c-vpmsum - Rename CRYPT_CRC32C_VPMSUM option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#7cf31864</link>
        <description>crypto: crc32c-vpmsum - Rename CRYPT_CRC32C_VPMSUM optionFor consistency with the other 246 kernel configuration options,rename CRYPT_CRC32C_VPMSUM to CRYPTO_CRC32C_VPMSUM.Signed-off-by: Jean Delvare &lt;jdelvare@suse.de&gt;Cc: Anton Blanchard &lt;anton@samba.org&gt;Cc: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;Acked-by: Anton Blanchard &lt;anton@samba.org&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Tue, 22 Nov 2016 09:32:44 +0000</pubDate>
        <dc:creator>Jean Delvare &lt;jdelvare@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>6dd7a82c - crypto: powerpc - Add POWER8 optimised crc32c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#6dd7a82c</link>
        <description>crypto: powerpc - Add POWER8 optimised crc32cUse the vector polynomial multiply-sum instructions in POWER8 tospeed up crc32c.This is just over 41x faster than the slice-by-8 method that itreplaces. Measurements on a 4.1 GHz POWER8 show it sustaining52 GiB/sec.A simple btrfs write performance test:    dd if=/dev/zero of=/mnt/tmpfile bs=1M count=4096    syncis over 3.7x faster.Signed-off-by: Anton Blanchard &lt;anton@samba.org&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Thu, 30 Jun 2016 22:19:45 +0000</pubDate>
        <dc:creator>Anton Blanchard &lt;anton@samba.org&gt;</dc:creator>
    </item>
<item>
        <title>3265c4ba - crypto: powerpc - move files to fix build error</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#3265c4ba</link>
        <description>crypto: powerpc - move files to fix build errorThe current cryptodev-2.6 tree commits:d9850fc529ef (&quot;crypto: powerpc/sha1 - kernel config&quot;)50ba29aaa7b0 (&quot;crypto: powerpc/sha1 - glue&quot;)failed to properly place files under arch/powerpc/crypto, whichleads to build errors:make[1]: *** No rule to make target &apos;arch/powerpc/crypto/sha1-spe-asm.o&apos;, needed by &apos;arch/powerpc/crypto/sha1-ppc-spe.o&apos;.  Stop.make[1]: *** No rule to make target &apos;arch/powerpc/crypto/sha1_spe_glue.o&apos;, needed by &apos;arch/powerpc/crypto/sha1-ppc-spe.o&apos;.  Stop.Makefile:947: recipe for target &apos;arch/powerpc/crypto&apos; failedMove the two sha1 spe files under crypto/, and whilst there, renameother powerpc crypto files with underscores to use dashes forconsistency.Cc: Markus Stockhausen &lt;stockhausen@collogia.de&gt;Signed-off-by: Kim Phillips &lt;kim.phillips@freescale.com&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Sat, 07 Mar 2015 00:46:21 +0000</pubDate>
        <dc:creator>Kim Phillips &lt;kim.phillips@freescale.com&gt;</dc:creator>
    </item>
<item>
        <title>e8e59953 - crypto: powerpc/md5 - kernel config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#e8e59953</link>
        <description>crypto: powerpc/md5 - kernel configIntegrate the module into the kernel config tree.Signed-off-by: Markus Stockhausen &lt;stockhausen@collogia.de&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Sun, 01 Mar 2015 18:30:46 +0000</pubDate>
        <dc:creator>Markus Stockhausen &lt;stockhausen@collogia.de&gt;</dc:creator>
    </item>
<item>
        <title>d9850fc5 - crypto: powerpc/sha1 - kernel config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#d9850fc5</link>
        <description>crypto: powerpc/sha1 - kernel configIntegrate the module into the kernel config tree.Signed-off-by: Markus Stockhausen &lt;stockhausen@collogia.de&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Tue, 24 Feb 2015 19:36:50 +0000</pubDate>
        <dc:creator>Markus Stockhausen &lt;stockhausen@collogia.de&gt;</dc:creator>
    </item>
<item>
        <title>504c6143 - crypto: powerpc/aes - kernel config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/powerpc/crypto/Makefile#504c6143</link>
        <description>crypto: powerpc/aes - kernel configIntegrate the module into the kernel configurationSigned-off-by: Markus Stockhausen &lt;stockhausen@collogia.de&gt;Signed-off-by: Herbert Xu &lt;herbert@gondor.apana.org.au&gt;

            List of files:
            /linux-6.15/arch/powerpc/crypto/Makefile</description>
        <pubDate>Sun, 22 Feb 2015 09:00:10 +0000</pubDate>
        <dc:creator>Markus Stockhausen &lt;stockhausen@collogia.de&gt;</dc:creator>
    </item>
</channel>
</rss>
