public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH net-next-2.6] net: use __packed annotation (fwd)
       [not found] <20100603021542.585D42436B@mail.perches.com>
@ 2010-06-03  2:26 ` Joe Perches
  0 siblings, 0 replies; only message in thread
From: Joe Perches @ 2010-06-03  2:26 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: David Miller, netdev

Some comments:

[]

> diff --git a/include/linux/ncp_fs_sb.h b/include/linux/ncp_fs_sb.h
> index 5ec9ca6..8da05bc 100644
> --- a/include/linux/ncp_fs_sb.h
> +++ b/include/linux/ncp_fs_sb.h
> @@ -104,13 +104,13 @@ struct ncp_server {
>  
>  		unsigned int state;		/* STREAM only: receiver state */
>  		struct {
> -			__u32 magic __attribute__((packed));
> -			__u32 len __attribute__((packed));
> -			__u16 type __attribute__((packed));
> -			__u16 p1 __attribute__((packed));
> -			__u16 p2 __attribute__((packed));
> -			__u16 p3 __attribute__((packed));
> -			__u16 type2 __attribute__((packed));
> +			__u32 magic __packed;
> +			__u32 len __packed;
> +			__u16 type __packed;
> +			__u16 p1 __packed;
> +			__u16 p2 __packed;
> +			__u16 p3 __packed;
> +			__u16 type2 __packed;
>  		} buf;				/* STREAM only: temporary buffer */

This could probably just be
		struct {
			__u32 magic;
			__u32 len;
			__u16 type;
			__u16 p1;
			__u16 p2;
			__u16 p3;
			__u16 type2;
 		} __packed buf;				/* STREAM only: temporary buffer */
[]

> diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c
> index f28ad2c..499c045 100644
> --- a/net/iucv/iucv.c
> +++ b/net/iucv/iucv.c
> @@ -1463,7 +1463,7 @@ struct iucv_path_pending {
>  	u32 res3;
>  	u8  ippollfg;
>  	u8  res4[3];
> -} __attribute__ ((packed));
> +} __packed;

iucv also has some structs that are __attribute__ ((packed,aligned(8)));

Perhaps those should become: __packed __aligned(8) instead of
leaving them as is.




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-06-03  2:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20100603021542.585D42436B@mail.perches.com>
2010-06-03  2:26 ` [PATCH net-next-2.6] net: use __packed annotation (fwd) Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox