From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 250CF4C62 for ; Thu, 14 Jul 2022 16:29:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80A34C34114; Thu, 14 Jul 2022 16:29:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1657816159; bh=SnQc6p3PeqS1n3VRIcugq60v7kSKmJEFyoz8QtpbexQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JjRz+faWGfxgMxT7jllxUWJWqUPhg+FB4QKsQrOiXTNOLgxrmCXGGrSneo++XwKZd 1aLi9Q1BAvF9QU3pSooD2HTnG5Y5SSF+ZTDfmz5J7sFFyTPIiuOVAd5A0ThQ2QF/Dc YkwawbPoK0l6BmHreuiMx/f0+0NmzXKn4eWpA2+oX5WaS6o67+tCqBSjYvsL9ekp8Z /JudLDyKoQyHGVsLrSTJE+0ca3CkzZFm5gVAAsCr8O4vaYMxFTaIXQwXDWXgHhrj5/ kYpA7Fr/K/mkIFnFDUwGTacMwfb52m89oK4fcsZ9S6i7AHoSwrCqtDrJjqkVaGJgop AwK7mtfRI80ag== Date: Thu, 14 Jul 2022 09:29:17 -0700 From: Nathan Chancellor To: Sudip Mukherjee Cc: Stephen Rothwell , Linux Next Mailing List , Linux Kernel Mailing List , llvm@lists.linux.dev Subject: Re: linux-next: Tree for Jul 14 Message-ID: References: <20220714185514.7d1a2ac9@canb.auug.org.au> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Thu, Jul 14, 2022 at 05:21:32PM +0100, Sudip Mukherjee wrote: > Hi Nathan, > > On Thu, Jul 14, 2022 at 5:05 PM Nathan Chancellor wrote: > > > > Hi Sudip, > > > > On Thu, Jul 14, 2022 at 12:07:06PM +0100, Sudip Mukherjee (Codethink) wrote: > > > Hi Stephen, > > > > > > On Thu, Jul 14, 2022 at 06:55:14PM +1000, Stephen Rothwell wrote: > > > > Hi all, > > > > > > > > Changes since 20220713: > > > > > > Build failures on next-20220714: > > > > > > > > > x86_64 allmodconfig with clang fails with: > > > > > > drivers/clk/qcom/gpucc-sm8350.c:111:2: error: initializer element is not a compile-time constant > > > gpu_cc_parent, > > > ^~~~~~~~~~~~~ > > > drivers/clk/qcom/gpucc-sm8350.c:126:2: error: initializer element is not a compile-time constant > > > gpu_cc_parent, > > > ^~~~~~~~~~~~~ > > > > I sent https://lore.kernel.org/20220711174004.3047516-1-nathan@kernel.org/ > > for this a few days ago, it just needs to be picked up. > > > > > arch/x86/kernel/cpu/bugs.c:58:21: error: section attribute is specified on redeclared variable [-Werror,-Wsection] > > > DEFINE_PER_CPU(u64, x86_spec_ctrl_current); > > > ^ > > > ./arch/x86/include/asm/nospec-branch.h:283:12: note: previous declaration is here > > > extern u64 x86_spec_ctrl_current; > > > > This is now fixed in -tip so it should be fixed in -next tomorrorow: > > > > https://git.kernel.org/tip/db866d3352ec85e821e730e191481cba3a2bfa6e > > This should also go to Linus. This failure is in the mainline also. > https://lore.kernel.org/lkml/Ys6sZj6KYthnDppq@debian/ Yes, it is in the x86/urgent branch so it should get there by -rc7. Our CI is red too :( > > In the future, consider CC'ing our mailing list (llvm@lists.linux.dev) > > for any clang related issues so that we can get them taken care of ASAP, > > we have a MAINTAINERS entry for a reason :) thank you for testing with > > clang; the more people that use it, hopefully the easier it will be to > > get things unbroken. > > Sure. I run arm, arm64, powerpc and x86_64 allmodconfigs with clang > (along with gcc) every night for mainline, started with linux-next > from today. Trying to setup the mips build also, I will mail llvm list > asking for help with the mips build. > Currently I only monitor the clang output from x86_64 as thats the one > which builds. If you want I can send the other reports also. Sure! I am not sure that we have tested mips or powerpc allmodconfig now that I am thinking about it but we'll certainly take a look at any issues that come from them and see what we can do. arm and arm64 are not warning free so disabling CONFIG_WERROR will help out there (arm64 is a recent failure that I have not been able to entirely figure out: https://github.com/ClangBuiltLinux/linux/issues/1642) but I do want to get those warning clean soon so they just build out of the box. Cheers, Nathan