From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from charlotte.tuxdriver.com ([70.61.120.58]:45703 "EHLO smtp.tuxdriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752545AbYKLPQS (ORCPT ); Wed, 12 Nov 2008 10:16:18 -0500 From: "John W. Linville" To: linux-wireless@vger.kernel.org Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, Stephen Rothwell , Geert Uytterhoeven , Johannes Berg , "John W. Linville" Subject: [PATCH] mac80211: add explicit padding in struct ieee80211_tx_info Date: Wed, 12 Nov 2008 10:05:37 -0500 Message-Id: <1226502337-11085-1-git-send-email-linville@tuxdriver.com> (sfid-20081112_161623_914542_32993C06) In-Reply-To: References: Sender: linux-wireless-owner@vger.kernel.org List-ID: Otherwise, the BUILD_BUG_ON calls in ieee80211_tx_info_clear_status can fail on some architectures. Signed-off-by: John W. Linville --- Why do we have those BUILD_BUG_ON calls anyway? Hmmm... include/net/mac80211.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/net/mac80211.h b/include/net/mac80211.h index feb52cc..38302d6 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -333,6 +333,7 @@ struct ieee80211_tx_info { u8 antenna_sel_tx; /* 2 byte hole */ + u8 pad[2]; union { struct { -- 1.5.4.3