[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150525135319.GA11588@mwanda>
Date: Mon, 25 May 2015 16:53:20 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Mateusz Kulikowski <mateusz.kulikowski@...il.com>
Cc: gregkh@...uxfoundation.org, joe@...ches.com,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v4 02/35] staging: rtl8192e: Declare ethernet addresses
as __aligned(2)
On Thu, May 21, 2015 at 05:53:15PM +0200, Mateusz Kulikowski wrote:
> Add __aligned(2) into ethernet addresses allocated on stack or in non-packed
> structures. Use ETH_ALEN as array length in places where it was hardcoded to 6.
To be honest, this patch makes me hate the stupid ether_addr_copy()
checkpatch warnings even more than I hated it before. Do we really need
to add __aligned(2) to everything? Is there no other option which isn't
as horrible?
We could introduce a new typedef:
typedef struct {
char addr[6] __aligned(2);
} eth_addr_t;
Introducing a new kind of type is maybe a bit much just to make
checkpatch.pl happy but so is putting __aligned(2) everywhere.
Or maybe we could make a new ether_addr_copy() implementation that uses
preprocessor macros and chooses the right kind of implementation?
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> index aad5cc9..9c6dc82 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
> @@ -321,7 +321,9 @@ static void rtl8192_read_eeprom_info(struct net_device *dev)
> u8 ICVer8192, ICVer8256;
> u16 i, usValue, IC_Version;
> u16 EEPROMId;
> - u8 bMac_Tmp_Addr[6] = {0x00, 0xe0, 0x4c, 0x00, 0x00, 0x01};
> + static const u8 bMac_Tmp_Addr[ETH_ALEN] __aligned(2) = {
> + 0x00, 0xe0, 0x4c, 0x00, 0x00, 0x01
> + };
What's up with the whacky indenting?
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists