Re: Simple patches for Linux as a guest OS in a plex86 VM (please

Andrew Morton (akpm@digeo.com)
Wed, 22 Jan 2003 12:17:12 -0800


Kevin Lawton <kevinlawton2001@yahoo.com> wrote:
>
> Humm, that's a good idea. I already made the mods
> to files to add an #include <asm/if.h>. That would
> be a logical place to stick such macros.

<asm/if.h> is a fine place to put the macros.

However, open-coding

#include <asm/if.h>

in the places which are known to use pushfl/popfl is fragile. Because
someone could later do something odd which results in the generation of an
unmassaged pushfl/popfl.

You need a magic bullet. Which is why I suggest including if.h via the build
system - making it truly global.

__ASSEMBLY__ and __KERNEL__ are provided via the build system as well, and
are in scope during that first inclusion. So it _should_ work....

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/