Re: [PATCH] kernel: make module.c itself more explicitly non-modular

2015-08-27 Thread Rusty Russell
Paul Gortmaker writes: > On 2015-08-26 12:06 AM, Rusty Russell wrote: >> Paul Gortmaker writes: >>> The Kconfig currently controlling compilation of this code is: >>> >>> menuconfig MODULES >>>bool "Enable loadable module support" >>> >>> ...meaning that it currently is not being built as a m

Re: [PATCH] kernel: make module.c itself more explicitly non-modular

2015-08-26 Thread Paul Gortmaker
On 2015-08-26 12:06 AM, Rusty Russell wrote: > Paul Gortmaker writes: >> The Kconfig currently controlling compilation of this code is: >> >> menuconfig MODULES >>bool "Enable loadable module support" >> >> ...meaning that it currently is not being built as a module by anyone. >> No surprise h

Re: [PATCH] kernel: make module.c itself more explicitly non-modular

2015-08-25 Thread Rusty Russell
Paul Gortmaker writes: > The Kconfig currently controlling compilation of this code is: > > menuconfig MODULES >bool "Enable loadable module support" > > ...meaning that it currently is not being built as a module by anyone. > No surprise here, since modular support being a module would be an

[PATCH] kernel: make module.c itself more explicitly non-modular

2015-08-25 Thread Paul Gortmaker
The Kconfig currently controlling compilation of this code is: menuconfig MODULES bool "Enable loadable module support" ...meaning that it currently is not being built as a module by anyone. No surprise here, since modular support being a module would be an interesting chicken before the egg p