From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH] net: nixge: Add __packed attribute to DMA descriptor struct Date: Wed, 20 Jun 2018 14:44:36 +0900 (KST) Message-ID: <20180620.144436.2267326438433785984.davem@davemloft.net> References: <20180619165453.31894-1-mdf@kernel.org> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: keescook@chromium.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org To: mdf@kernel.org Return-path: In-Reply-To: <20180619165453.31894-1-mdf@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Moritz Fischer Date: Tue, 19 Jun 2018 09:54:53 -0700 > @@ -122,7 +122,7 @@ struct nixge_hw_dma_bd { > u32 sw_id_offset; > u32 reserved5; > u32 reserved6; > -}; > +} __packed; As I understand it, based upon your replies to Florian, this bug doesn't even show up with the current code. The problem only happens with some 64-bit changes you are working on. So, the change is not valid right now. And for the 64-bit changes, I agree with Florian that you should adjust your implementation so that this __packed dance isn't necessary and that you can avoid some MMIOs as well. Thanks.