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 C40DAC433EF for ; Wed, 15 Jun 2022 15:51:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344387AbiFOPvf (ORCPT ); Wed, 15 Jun 2022 11:51:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46062 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234917AbiFOPvb (ORCPT ); Wed, 15 Jun 2022 11:51:31 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AC89B30F4E for ; Wed, 15 Jun 2022 08:51:30 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 4A0BE617D0 for ; Wed, 15 Jun 2022 15:51:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 38986C3411C; Wed, 15 Jun 2022 15:51:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1655308289; bh=YMAkR9zIrmdqS/6EOyVX+UljQv+WcxcGfDTx8YhjXaU=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=j/pXI8YNlA4qXs/2wfrwFC4vrqJIZ6vJ6TBpg7rwUV7lJu45hn4hl4q9Nkwb/ajA9 PonHf7ddrRXargppmxaikaWwcfxJXfbDqaq0WuibRY0xFSTRXR0eTwOk1Br6VwOj0b 7joESKKJzXZQZhPTt+T7GSnOPeybinEeB1KKFm6BKvAj5zy9OldcXxWEgg8GWbVsXt AJOW9KnjRDeLxQeXIsMMip3DK+A5aJQ4W3VnQQrKh1n8nnjn8BDcND+8n00cIPrBIp pp0nE+5ItjCItYxl0vZe3bdWm135ZghJ/8tPM2SIRLIWITO5JrlFAw76GwLe3CJ9A3 xjomiaeKnqU4Q== Date: Wed, 15 Jun 2022 08:51:28 -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: <20220615085128.026f1c56@kernel.org> In-Reply-To: References: <202206091828.eNkyL2EI-lkp@intel.com> 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 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?