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

crypto: xts - Add softdep on ecb

The xts module needs ecb to be present as it's meant to work
on top of ecb. This patch adds a softdep so ecb can be included
automatically into the initramfs.

Reported-by: rftc <rftc@gmx.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

+1
+1
crypto/xts.c
··· 466 466 MODULE_DESCRIPTION("XTS block cipher mode"); 467 467 MODULE_ALIAS_CRYPTO("xts"); 468 468 MODULE_IMPORT_NS(CRYPTO_INTERNAL); 469 + MODULE_SOFTDEP("pre: ecb");