Neil Brown wrote:
> The declaration of:
>
> struct file;
>
> in sysctl.h is a bit counter intuitive isn't it?
Nope. It's a useful technique that I was reminded of recently by DaveM.
Have you ever looked at the -nasty- include nesting that occurs because
key kernel headers include other key kernel headers all the time? Its
way past time to reverse that trend. Using "struct foo;" at the
beginning of the header simply passes on the task of including the
definiton for 'struct foo' down the line, avoiding another level of
include nesting.
But... that said. Provided no other kernel code is similarly broken,
your fix to md.c, Neil, is definitely superior to adding includes and
'struct file;' to sysctl.h.
Jeff
--
Jeff Garzik |
Building 1024 | Would you like a Twinkie?
MandrakeSoft |
-
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/