Re: [PATCH] x86: do not expose CONFIG_BSWAP to userspace

From: H. Peter Anvin
Date: Wed Jan 28 2009 - 17:16:41 EST


Harvey Harrison wrote:
I'm afraid my knowledge of gcc compiler flags for various models is
lacking, I used i486 as suggested, just wanted to make sure I understood
you corectly.

You did, but I misremembered... instead of having the __i386__, __i486__, __i586__, __i686__ being an additive chain as would make sense, gcc just has __i386__ plus whichever corresponds to the -march= option. I keep forgetting this because it's just so incredibly dumb.

Bloody hell. This really f*cks thing up.

What's worse, they seem to simply be adding new options, so at this point you'd actually need something like:

# if defined(__i486__) || defined(__i586__) || defined(__i686__) || \
defined(__core2__) || defined(__k8__) || defined(__amdfam10__)

Worse, there isn't any kind of macro that can be used to compare for a negative (i.e. not i386).

This obviously is screaming to be abstracted away into a header of its own, but it really can't be done cleanly as far as I can tell because of this particular piece of major gcc braindamage.

So, one ends up doing something like:

#ifdef __i486__
# define __CPU_HAVE_BSWAP
#endif
#ifdef __i586__
# define __CPU_HAVE_BSWAP
#endif

... and so on, and have to keep this up to date with the latest inventions of the gcc people. *Sob.*

-hpa

-hpa

--
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/