On Tue, 12 Sep 2000 10:25:16 +0100, David Woodhouse <[EMAIL PROTECTED]> wrote: >Unless it's _absolutely_ necessary, the kernel image (i.e. vmlinux) should >not contain any code which is dependent on CONFIG_*_MODULE options. > >Therefore, stuff like... > >#ifdef CONFIG_WIN32_MODULE > EXPORT_SYMBOL(my_win32_helper_func); >#endif > >...would mean that you have to recompile the kernel and reboot to enable the >module, rather than just compiling and loading the module. But this is quite valid ... #ifdef CONFIG_MODULES EXPORT_SYMBOL(dynamic_syscall_in_modules_helper); #endif Use a generic helper for dynamic syscalls in modules, not tied to any particular module or config option. You have to use a different kernel if you turn the top level CONFIG_MODULES on. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] Please read the FAQ at http://www.tux.org/lkml/
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module Albert D. Cahalan
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module Brian Gerst
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Woodhouse
- Re: [RFC] Wine speedup through kernel module Keith Owens
- Re: [RFC] Wine speedup through kernel module Arjan van de Ven
- Re: [RFC] Wine speedup through kernel modul... Keith Owens
- Re: [RFC] Wine speedup through kernel m... Arjan van de Ven
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module Richard Guenther
- Re: [RFC] Wine speedup through kernel modul... David Howells
- Re: [RFC] Wine speedup through kernel module David Woodhouse
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module David Howells
- Re: [RFC] Wine speedup through kernel module Keith Owens