Yeah. Please port them to latest -tip:
http://people.redhat.com/mingo/tip.git/README
And give them some testing, and send out the new series. I'll re-report the crash to
you for a new kernel, if it still occurs.
(Please also keep Rusty and Linus Cc:-ed for the module bits.)
In hindsight, i think the kernel/module.c bits should be in arch/x86/kernel/module.c
- the new code is full of x86 only names and facilities.
Also, please remove various checkpatch col80 artifacts, such as:
+ if (end_pfn > begin_pfn)
+ set_memory_nx(begin_pfn << PAGE_SHIFT,
+ end_pfn - begin_pfn);
that should be:
+ if (end_pfn > begin_pfn)
+ set_memory_nx(begin_pfn << PAGE_SHIFT, end_pfn - begin_pfn);
Thanks,
Ingo
--