This problem manifests itself nastily on parisc, where the linker seems to generate large number of elf sections, often one for each non static function, with names like .text. The problem is that the kernel/module.c uses the following test to identify init sections: || strstr(secstrings + s->sh_name, ".init")) Which will pass if ".init" is matched anywhere in the elf section name. Obviously, any parisc sections for functions that begin with "init" match, and are spuriously dumped into the init code. The fix that works for me on parisc is just to check the beginning of the string for ".init". However, I can't find any document that guarantees this to be correct. On the other hand, no non-init section will begin with ".init", so the patch should be safe, just may be non optimal. James