Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> writes: > On Tue, Jul 30, 2013 at 03:26:50PM +0930, Rusty Russell wrote: >> >> Does this imply that you want me to push that to Linus now, and/or CC >> stable? Was planning for *next* merge window... > > Next merge window is fine. However, it would be good to restore > the new driver for that as well. So I see two ways to do this, > either we push the crct10dif driver patches through your tree, > on top of the MODULES_SOFTDEP patch, or I pull the MODULES_SOFTDEP > patch into the crypto tree. > > What would you like to do? You're welcome to it: it's v. unlikely to conflict with anything else. Here it is, fresh from my pending-rebases branch, with my Signed-off-by. Cheers, Rusty. From: Andreas Robinson <andr345@xxxxxxxxx> Subject: modules: add support for soft module dependencies Additional and optional dependencies not found while building the kernel and modules, can now be declared explicitly. Signed-off-by: Andreas Robinson <andr345@xxxxxxxxx> Acked-by: Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Rusty Russell <rusty@xxxxxxxxxxxxxxx> --- include/linux/module.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/linux/module.h b/include/linux/module.h index 46f1ea0..504035f 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -97,6 +97,11 @@ extern const struct gtype##_id __mod_##gtype##_table \ /* For userspace: you can also call me... */ #define MODULE_ALIAS(_alias) MODULE_INFO(alias, _alias) +/* Soft module dependencies. See man modprobe.d for details. + * Example: MODULE_SOFTDEP("pre: module-foo module-bar post: module-baz") + */ +#define MODULE_SOFTDEP(_softdep) MODULE_INFO(softdep, _softdep) + /* * The following license idents are currently accepted as indicating free * software modules -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html