From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH] openvswitch: Fix alignment of struct sw_flow_key. Date: Thu, 05 Sep 2013 14:40:44 -0400 (EDT) Message-ID: <20130905.144044.1053960608071929025.davem@davemloft.net> References: <1378402887-17331-1-git-send-email-jesse@nicira.com> <20130905.141751.945639989861997124.davem@davemloft.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: dev-yBygre7rU0TnMu66kgdUjQ@public.gmane.org, netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, fengguan.wu-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org, geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org To: jesse-l0M0P4e3n4LQT0dZR+AlfA@public.gmane.org Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces-yBygre7rU0TnMu66kgdUjQ@public.gmane.org Errors-To: dev-bounces-yBygre7rU0TnMu66kgdUjQ@public.gmane.org List-Id: netdev.vger.kernel.org From: Jesse Gross Date: Thu, 5 Sep 2013 11:36:19 -0700 > On Thu, Sep 5, 2013 at 11:17 AM, David Miller wrote: >> From: Jesse Gross >> Date: Thu, 5 Sep 2013 10:41:27 -0700 >> >>> -} __aligned(__alignof__(long)); >>> +} __aligned(8); /* 8 byte alignment ensures this can be accessed as a long */ >> >> This kind of stuff drives me crazy. >> >> If the issue is the type, therefore at least use an expression that >> mentions the type explicitly. And mention the actual type that >> matters. "long" isn't it. > > 'long' actually is the real type here. > > When doing comparisons, this structure is being accessed as a byte > array in 'long' sized chunks, not by its members. Therefore, the > compiler's alignment does not necessarily correspond to anything for > this purpose. It could be a struct full of u16's and we would still > want to access it in chunks of 'long'. > > To completely honest, I think the correct alignment should be > sizeof(long) because I know that 'long' is not always 8 bytes on all > architectures. However, you made the point before that this could > break the alignment of the 64-bit values on architectures where 'long' > is 32 bits wide, so 8 bytes is the generic solution. Look at net/core/flow.c:flow_key_compare(). And then we annotate struct flowi with } __attribute__((__aligned__(BITS_PER_LONG/8))); Don't reinvent the wheel, either mimick how existing code does this kind of thing or provide a justification for doing it differently and update the existing cases to match and be consistent.