From: Michael Ellerman Subject: Re: [PATCH] crypto: crc32c-vpmsum - Convert to CPU feature based module autoloading Date: Thu, 04 Aug 2016 18:38:00 +1000 Message-ID: <87lh0dexp3.fsf@concordia.ellerman.id.au> References: <1470292695-9829-1-git-send-email-anton@ozlabs.org> Mime-Version: 1.0 Content-Type: text/plain Cc: linuxppc-dev@lists.ozlabs.org, linux-crypto@vger.kernel.org, alastair@d-silva.org To: Anton Blanchard , benh@kernel.crashing.org, paulus@samba.org, herbert@gondor.apana.org.au, davem@davemloft.net Return-path: In-Reply-To: <1470292695-9829-1-git-send-email-anton@ozlabs.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+glppe-linuxppc-embedded-2=m.gmane.org@lists.ozlabs.org Sender: "Linuxppc-dev" List-Id: linux-crypto.vger.kernel.org Anton Blanchard writes: > From: Anton Blanchard > > This patch utilises the GENERIC_CPU_AUTOPROBE infrastructure > to automatically load the crc32c-vpmsum module if the CPU supports > it. > > Signed-off-by: Anton Blanchard > --- > arch/powerpc/crypto/crc32c-vpmsum_glue.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/powerpc/crypto/crc32c-vpmsum_glue.c b/arch/powerpc/crypto/crc32c-vpmsum_glue.c > index bfe3d37..9fa046d 100644 > --- a/arch/powerpc/crypto/crc32c-vpmsum_glue.c > +++ b/arch/powerpc/crypto/crc32c-vpmsum_glue.c > @@ -4,6 +4,7 @@ > #include > #include > #include > +#include > #include > > #define CHKSUM_BLOCK_SIZE 1 > @@ -157,7 +158,7 @@ static void __exit crc32c_vpmsum_mod_fini(void) > crypto_unregister_shash(&alg); > } > > -module_init(crc32c_vpmsum_mod_init); > +module_cpu_feature_match(PPC_MODULE_FEATURE_VEC_CRYPTO, crc32c_vpmsum_mod_init); Is VEC_CRYPTO the right feature? That's new power8 crypto stuff. I thought this only used VMX? (but I haven't looked closely) cheers