From: Randy Dunlap Date: Mon, 30 Oct 2006 06:46:34 +0000 (-0800) Subject: [PATCH] ndiswrapper: don't set the module->taints flags X-Git-Tag: v3.12-rc1~31920^2~20^2~320 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e2d57fc6e7dabdbfdd4f26c861e7e6c75d5bdcf;p=kernel%2Fkernel-generic.git [PATCH] ndiswrapper: don't set the module->taints flags For ndiswrapper, don't set the module->taints flags, just set the kernel global tainted flag. This should allow ndiswrapper to continue to use GPL symbols. Signed-off-by: Randy Dunlap Cc: Florin Malita Cc: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/kernel/module.c b/kernel/module.c index 5072a94..f016656 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -1718,7 +1718,7 @@ static struct module *load_module(void __user *umod, set_license(mod, get_modinfo(sechdrs, infoindex, "license")); if (strcmp(mod->name, "ndiswrapper") == 0) - add_taint_module(mod, TAINT_PROPRIETARY_MODULE); + add_taint(TAINT_PROPRIETARY_MODULE); if (strcmp(mod->name, "driverloader") == 0) add_taint_module(mod, TAINT_PROPRIETARY_MODULE);