OpenVZ Forum


Home » Mailing lists » Devel » [PATCH][NETNS] Move some code into __init section when CONFIG_NET_NS=n
Re: [PATCH][NETNS] Move some code into __init section when CONFIG_NET_NS=n [message #21294 is a reply to message #21292] Thu, 04 October 2007 14:02 Go to previous messageGo to previous message
Alexey Dobriyan is currently offline  Alexey Dobriyan
Messages: 195
Registered: August 2006
Senior Member
On Thu, Oct 04, 2007 at 05:54:11PM +0400, Pavel Emelyanov wrote:
> With the net namespaces many code leaved the __init section,
> thus making the kernel occupy more memory than it did before.
> Since we have a config option that prohibits the namespace
> creation, the functions that initialize/finalize some netns
> stuff are simply not needed and can be freed after the boot.
> 
> Currently, this is almost not noticeable, since few calls
> are no longer in __init, but when the namespaces will be
> merged it will be possible to free more code. I propose to 
> use the __net_init, __net_exit and __net_initdata "attributes"
> for functions/variables that are not used if the CONFIG_NET_NS
> is not set to save more space in memory.

> +#ifdef CONFIG_NET_NS
> +#define __net_init
> +#define __net_exit
> +#define __net_initdata
> +#else
> +#define __net_init	__init
> +#define __net_exit	__exit
> +#define __net_initdata	__initdata
> +#endif

Yet another set of double-underscored section annotations is the last thing
that is needed, methinks. :)
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: CPU controller for Completely Fair Scheduler?
Next Topic: [PATCH] Use task_pid_nr() instead of pid_nr(task_pid())
Goto Forum:
  


Current Time: Tue Oct 14 01:26:00 GMT 2025

Total time taken to generate the page: 0.18299 seconds