Re: [PATCH] USB: ehci: use packed,aligned(4) instead of removing thepacked attribute

From: Nicolas Pitre
Date: Sun Jun 19 2011 - 11:02:43 EST


On Thu, 16 Jun 2011, Arnd Bergmann wrote:

> On Thursday 16 June 2011 22:10:53 Alexander Holler wrote:
> > Using packed doesn't seem to be necessary (at least not with those
> > versions of gcc I'm using here), I've tried both versions (on arm,
> > without packed and with packed, aligned(4)) and both are working. I've
> > only posted the patch because I found the usage of packed, aligned(4)
> > much clearer than without packed. And It might help avoiding such
> > discussions like this with people like me who aren't that deep involved
> > in gcc-specific implementation details. ;)
> >
> > Anyway, feel free to nack that patch. I don't really care and just
> > thought I should post it (e.g. as an alternative to removing that packed).
>
> At least I would be happier without the patch. I'm trying to convince
> people to not use these attributes unless required because too much
> harm is done when they are used without understanding the full
> consequences. I also recommend using __packed as localized as possible,
> i.e. set it for the members that need it, not the entire struct.
>
> I agree that your patch is harmless, it's just the opposite of
> a cleanup in my opinion.

The question is: does the structure really has to be packed?

If it does, then the follow-up question is: is a packing on word
boundaries sufficient?

If the answer is yes in both cases, then having packed,aligned(4) is not
a frivolity but rather a correctness issue. We can of course provide a
define in include/linux/compiler-gcc.hto hide the ugliness of it
somewhat:

#define __packed_32 __attribute__((packed,aligned(4)))

I suspect that the vast majority of the __packed uses in the kernel
would be better with this __packed_32 instead, the actual need and
intent would be more clearly expressed, and the generated code in the
presence of those GCC changes would then be way more efficient and still
correct.


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