Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751548AbbEYNxg (ORCPT ); Mon, 25 May 2015 09:53:36 -0400 Received: from aserp1040.oracle.com ([141.146.126.69]:34061 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751272AbbEYNxe (ORCPT ); Mon, 25 May 2015 09:53:34 -0400 Date: Mon, 25 May 2015 16:53:20 +0300 From: Dan Carpenter To: Mateusz Kulikowski Cc: gregkh@linuxfoundation.org, joe@perches.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 02/35] staging: rtl8192e: Declare ethernet addresses as __aligned(2) Message-ID: <20150525135319.GA11588@mwanda> References: <1432223628-1664-1-git-send-email-mateusz.kulikowski@gmail.com> <1432223628-1664-3-git-send-email-mateusz.kulikowski@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432223628-1664-3-git-send-email-mateusz.kulikowski@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: userv0021.oracle.com [156.151.31.71] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1725 Lines: 44 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/