Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / arch / i386 / kernel / module.c
index 2c6e3be..470cf97 100644 (file)
@@ -125,7 +125,6 @@ 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;
@@ -133,13 +132,10 @@ 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
 }