LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: David Miller <davem@davemloft.net>
To: rmk+lkml@arm.linux.org.uk
Cc: jblunck@suse.de, phil_arcwk_endecott@chezphil.org,
linux-kernel@vger.kernel.org
Subject: Re: Subtleties of __attribute__((packed))
Date: Wed, 06 Dec 2006 10:05:28 -0800 (PST) [thread overview]
Message-ID: <20061206.100528.75760584.davem@davemloft.net> (raw)
In-Reply-To: <20061206175423.GA9959@flint.arm.linux.org.uk>
From: Russell King <rmk+lkml@arm.linux.org.uk>
Date: Wed, 6 Dec 2006 17:54:23 +0000
> It does not say "and as such the struct may be aligned to any alignment".
Consider the implication for arrays and pointer arithmetic, it's just
a logical consequence, that's all. It's why the alignment cannot be
assumed for packed structures.
If you have, for example:
struct example {
char b;
short c;
} __attribute__((packed));
And I give you:
extern void foo(struct example *p);
and go:
foo(p + 1);
It is clear that the compiler must assume that all instances
of a packed structure are not necessarily aligned properly.
Even if "p" is aligned, "p + 1" definitely won't be. And this
goes for any array indexing of the given packed structure.
That's why every pointer to such a struct must be assumed to be
unaligned in these cases.
So even though the documentation may not say this explicitly, it's an
implicit logical side effect of packed structures.
next prev parent reply other threads:[~2006-12-06 18:05 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-06 13:20 Subtleties of __attribute__((packed)) Phil Endecott
2006-12-06 14:01 ` Frederik Deweerdt
2006-12-06 14:24 ` Phil Endecott
2006-12-06 15:04 ` Jan Blunck
2006-12-06 15:22 ` Phil Endecott
2006-12-06 15:54 ` Jan Blunck
2006-12-06 16:02 ` Andreas Schwab
2006-12-06 16:41 ` Jan Blunck
2006-12-06 17:28 ` Andreas Schwab
2006-12-06 16:13 ` Phil Endecott
2006-12-06 16:26 ` Jan Blunck
2006-12-06 17:54 ` Russell King
2006-12-06 18:05 ` David Miller [this message]
2006-12-07 9:48 ` Jan Blunck
2006-12-07 10:30 ` Andreas Schwab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061206.100528.75760584.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=jblunck@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=phil_arcwk_endecott@chezphil.org \
--cc=rmk+lkml@arm.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).