X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fi386%2Fkernel%2Fmodule.c;h=2c6e3bed56616afcdcad3b841c03f4112145c07f;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=470cf97e7cd3104bbfd6eb2de379d0bd0be9c460;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/arch/i386/kernel/module.c b/arch/i386/kernel/module.c index 470cf97e7..2c6e3bed5 100644 --- a/arch/i386/kernel/module.c +++ b/arch/i386/kernel/module.c @@ -125,6 +125,7 @@ int module_finalize(const Elf_Ehdr *hdr, void *aseg = (void *)alt->sh_addr; apply_alternatives(aseg, aseg + alt->sh_size); } +#ifdef CONFIG_SMP if (locks && text) { void *lseg = (void *)locks->sh_addr; void *tseg = (void *)text->sh_addr; @@ -132,10 +133,13 @@ int module_finalize(const Elf_Ehdr *hdr, lseg, lseg + locks->sh_size, tseg, tseg + text->sh_size); } +#endif return 0; } void module_arch_cleanup(struct module *mod) { +#ifdef CONFIG_SMP alternatives_smp_module_del(mod); +#endif }