From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9FB86C43334 for ; Wed, 15 Jun 2022 17:28:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354192AbiFOR2S (ORCPT ); Wed, 15 Jun 2022 13:28:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38404 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1349646AbiFOR2M (ORCPT ); Wed, 15 Jun 2022 13:28:12 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2A8DD959D for ; Wed, 15 Jun 2022 10:28:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B057EB820C5 for ; Wed, 15 Jun 2022 17:28:08 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 017E1C3411E; Wed, 15 Jun 2022 17:28:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655314087; bh=NGsPa22nNEnE5x5vS8yssNlYfYxkSRU3+UAJVehVMag=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=UiR3VvUJ39a+BVuIQoT3c+3dtQ/zKJLQT2LfcTYRqtvX68wX0kE3cNoGHW3Wx8mq5 ekxzcWi/PdCSeLBai+XbqoWqwki3dCDMn6E/YQzZRdVQP4X2u278m2XUzoafRt/QG4 6BDn/HLl+9f+D61T5p7BlpMtqaK1gKZgbKe9hCCyYC1cvLe9y9XCG7jVfGEWebb/Xk YXHq+ggIgpGCa/IWZKb6te4iWZL4ecm4NgZV2XVq0IgiU+JBC9iiB82qRYUZRsvqbI ihMGNUx/XpiorzvatHyo2ztg/xX2iv4iRN1G192Uv5ml7qtkaXiRUQos3cXHf/F2/h 8m13vAmKFo2NA== Date: Wed, 15 Jun 2022 10:28:06 -0700 From: Jakub Kicinski To: Arnd Bergmann Cc: kernel test robot , kbuild-all@lists.01.org, Linux Kernel Mailing List , Russell King - ARM Linux , Jesse Brandeburg , Tony Nguyen , "David S. Miller" , Eric Dumazet , Paolo Abeni , Intel Wired LAN Subject: Re: drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h:1174:29: error: enumerator value for 'i40e_static_assert_i40e_aqc_cloud_filters_element_data' is not an integer constant Message-ID: <20220615102806.1224d227@kernel.org> In-Reply-To: References: <202206091828.eNkyL2EI-lkp@intel.com> <20220615085128.026f1c56@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 15 Jun 2022 17:56:24 +0200 Arnd Bergmann wrote: > On Wed, Jun 15, 2022 at 5:51 PM Jakub Kicinski wrote: > > > > On Wed, 15 Jun 2022 16:11:17 +0200 Arnd Bergmann wrote: > > > The bug is that 'i40e_aqc_cloud_filters_element_data' and some other > > > structures in the > > > same file are broken when building an ARM kernel without CONFIG_AEABI, which has > > > unusual struct packing rules and triggers the static assertion. > > > > What are those packing rules, out of curiosity? > > On the old OABI, each struct member is on a 32-bit boundary. Oh. GTK!