Against which tree do I have to re-submit this patch to get it merged? Best regards, Lutz On Tue, Mar 09, 2010 at 05:48:17PM +0100, Lutz Jaenicke wrote: > On some platforms (here: Intel IXP4xx ARM big endian) > sizeof(struct nf_ct_tcp_flags) evaluates to 4 bytes while in the user > space code 2 bytes is hard coded. > Add "__attribute__ ((__packed__))" to enforce matching structure > sizes. > > Signed-off-by: Lutz Jaenicke <ljaenicke@xxxxxxxxxxxxxx> > --- > include/linux/netfilter/nf_conntrack_tcp.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/linux/netfilter/nf_conntrack_tcp.h b/include/linux/netfilter/nf_conntrack_tcp.h > index 6e135f9..c7ee4ec 100644 > --- a/include/linux/netfilter/nf_conntrack_tcp.h > +++ b/include/linux/netfilter/nf_conntrack_tcp.h > @@ -39,7 +39,7 @@ enum tcp_conntrack { > /* The field td_maxack has been set */ > #define IP_CT_TCP_FLAG_MAXACK_SET 0x20 > > -struct nf_ct_tcp_flags { > +struct __attribute__ ((packed)) nf_ct_tcp_flags { > __u8 flags; > __u8 mask; > }; > -- > 1.6.0.3 > > -- > To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- Dr.-Ing. Lutz Jänicke CTO Innominate Security Technologies AG /protecting industrial networks/ tel: +49.30.921028-200 fax: +49.30.921028-020 Rudower Chaussee 13 D-12489 Berlin, Germany www.innominate.com Register Court: AG Charlottenburg, HR B 81603 Management Board: Dirk Seewald Chairman of the Supervisory Board: Christoph Leifer -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html