public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [RFC] __initstr & __exitstr
@ 2001-07-07  2:17 Arnaldo Carvalho de Melo
  2001-07-07  3:05 ` Philipp Rumpf
  0 siblings, 1 reply; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2001-07-07  2:17 UTC (permalink / raw)
  To: Linus Torvalds, Alan Cox; +Cc: linux-kernel

Hi,

	Please comment on this approach to move strings in __init functions
from .rodata to .data.init so that it get discarded after initialization,
like the variables marked as __initdata and the functions marked as __init,
as well as move strings in __exit marked functions to .data.exit, that will
be discarded and not even get into the generated kernel image.

	Please note that if possible the best approach was for gcc to move
those strings automatically if the function was marked with modified 
__init/__exit macros, but we have to keep in mind that some of the strings
in those functions can not be discarded because they keep being referenced
by say register_chrdev and others, unlike, for example, proc functions and
others that copy the string passed to some malloc'ed data structure, so we
have to be selective marking exactly the ones that can indeed be discarded.

	I've also implemented helper functions for printk thats the most
common case, and leaved the other common case, panic, using
__initstr/__exitstr explicitely, so that people can comment on what is
better.

	Here is the basic implementation in include/linux/init.h:

#define __initstr(s)    ({ static char __tmp_init_str[] __initdata=s;
__tmp_init_str;})
#define __exitstr(s)    ({ static char __tmp_exit_str[] __exitdata=s;
__tmp_exit_str;})
#define init_printk(fmt,arg...) printk(__initstr(fmt) , ##arg)
#define exit_printk(fmt,arg...) printk(__exitstr(fmt) , ##arg)

	For modules its a no op, as modules doesn't get rid of code/data
marked as __init{data}, please correct me if I'm wrong as I didn't checked
that in detail, but from first quick analysis it doesn't move it to some
different .data/.text section, so I assume it doesn't discards it after
initialization.
	
	For my config, compiling everything statically, with a pristine
2.4.6-ac1 kernel I get 172 KB freed after init, with this patch we save 16
KB more.

	I've put the patch at:
http://bazar.conectiva.com.br/~acme/patches/wip/__initstr.patch.4

	And yes, its intrusive, but it serves, IMHO, as an experiment to
see how much can be saved with this.

	Please advise/comment.

- Arnaldo

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-07-07  3:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-07  2:17 [RFC] __initstr & __exitstr Arnaldo Carvalho de Melo
2001-07-07  3:05 ` Philipp Rumpf
2001-07-07  3:13   ` Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox