Re: RFC: cleaning up the in-kernel headers
- From: Linus Torvalds <torvalds@xxxxxxxx>
- Date: Tue, 11 Jul 2006 15:39:51 -0700 (PDT)
On Tue, 11 Jul 2006, H. Peter Anvin wrote:
#1 I doubt the time taken to look at include files that are #ifndef'd in their
entirety is significant (I think there is special code in gcc to handle this
case fast.)
Correct. Don't worry about multiple includes.
HOWEVER. If you can avoid the include entirely, that can be an absolutely
huge timesaver. Much of the compile time is from just parsing the things
the first time around (rather than parsing it over and over), and if you
don't strictly need a header, avoiding parsing it in the first place is a
big big issue.
For example, if a header only needs a structure to be declared because it
uses a pointer to it, then rather than including the header file that
declares that structure fully, just doing a
struct task_struct;
to say that "there is such a thing as a 'struct task_struct'" can be a
huge time-saver.
Of course, anything that actually needs to look past the pointer will need
to get the full declaration..
Linus
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- References:
- RFC: cleaning up the in-kernel headers
- From: Adrian Bunk
- Re: RFC: cleaning up the in-kernel headers
- From: David Woodhouse
- Re: RFC: cleaning up the in-kernel headers
- From: Christoph Hellwig
- Re: RFC: cleaning up the in-kernel headers
- From: Sam Ravnborg
- Re: RFC: cleaning up the in-kernel headers
- From: Sam Ravnborg
- Re: RFC: cleaning up the in-kernel headers
- From: Randy.Dunlap
- Re: RFC: cleaning up the in-kernel headers
- From: Jörn Engel
- Re: RFC: cleaning up the in-kernel headers
- From: H. Peter Anvin
- RFC: cleaning up the in-kernel headers
- Prev by Date: Re: Linux 2.6.16.y series
- Next by Date: [patch] Re: Magic Alt-SysRq change in 2.6.18-rc1
- Previous by thread: Re: RFC: cleaning up the in-kernel headers
- Next by thread: Re: RFC: cleaning up the in-kernel headers
- Index(es):
Relevant Pages
|