kernel/module.c:1142: error: structure has no member named `module_core'
kernel/module.c:1142: error: structure has no member named `core_size'
The fix is simple: Your patch removed the declaration in module.h so it failes here.
Just in case...
Quix0r
Edit:
Add this code in somewhere around line 295 (include/linux/module.h)
- Code: Select all
void *module_core;
unsigned long init_size, core_size;
This may fix it again.