Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto: aegis - remove assignments of 0 to cra_alignmask

Struct fields are zero by default, so these lines of code have no
effect. Remove them to reduce the number of matches that are found when
grepping for cra_alignmask.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Eric Biggers and committed by
Herbert Xu
5478ced4 a6185842

-2
-2
crypto/aegis128-core.c
··· 516 516 517 517 .base.cra_blocksize = 1, 518 518 .base.cra_ctxsize = sizeof(struct aegis_ctx), 519 - .base.cra_alignmask = 0, 520 519 .base.cra_priority = 100, 521 520 .base.cra_name = "aegis128", 522 521 .base.cra_driver_name = "aegis128-generic", ··· 534 535 535 536 .base.cra_blocksize = 1, 536 537 .base.cra_ctxsize = sizeof(struct aegis_ctx), 537 - .base.cra_alignmask = 0, 538 538 .base.cra_priority = 200, 539 539 .base.cra_name = "aegis128", 540 540 .base.cra_driver_name = "aegis128-simd",