On Fri, 2014-10-10 at 16:25 -0700, Andi Kleen wrote: > From: Andi Kleen <a...@linux.intel.com> > > On my workstation which has a lot of modules loaded: > > $ lsmod | wc -l > 80
> This patch uses the NX bits in the page tables to check for > valid kernel addresses instead. This can be done in any context > because kernel page tables are not removed (if they were it could > be handled by RCU like the user page tables) > > The lookup here is 2-4 memory accesses bounded. > > Anything with no NX bit set and is in kernel space is a valid > kernel executable. Unlike the previous scheme this will also > handle cases like the profiler hitting BIOS code or similar > (e.g. the PCI BIOS on 32bit) > > On systems without NX we fall back to the previous scheme. For such systems, we probably could reorder fields in struct module to reduce at one cache line per module instead of three... offsetof(struct module, module_core)=0x138 offsetof(struct module, module_init)=0x130 offsetof(struct module, core_size)=0x144 offsetof(struct module, init_size)=0x140 offsetof(struct module, list)=0x8 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/