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 70FADC43334 for ; Wed, 8 Jun 2022 23:33:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232823AbiFHXdh (ORCPT ); Wed, 8 Jun 2022 19:33:37 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38352 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232754AbiFHXdf (ORCPT ); Wed, 8 Jun 2022 19:33:35 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 145B3111B85 for ; Wed, 8 Jun 2022 16:33:34 -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 A490661982 for ; Wed, 8 Jun 2022 23:33:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0714C34116; Wed, 8 Jun 2022 23:33:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1654731213; bh=IB2m+KxJZ2E3SmCFTfE/BcN2qvTp2YgVIEScIlpXSHk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=o7fOP1R49g146bIR0x4wqfuun5DmckAYCkSHAPnJQZw/EGbM3/h0jVPjU86IYDhjV nAXdnQmM2rtn5f6evXJ4/ydpsLWPYM5wBcyPiCyH+kii9WATxpL6LpL3MsGH9kQd6k STg3lp9H86wpzn2a10ZVzwcyRWXG5l3PJxnfmWCGsKiP81evvcnbDVmVZp1f4i5oNX ucoIQnJ+6fc6q0jpxhbygBT8xBmZQTJbjuCxpjhjd91LO3jB7/qwrYeEjyJZNBEl0w 8htMrn6fBG9BByoPhWcL4ujrTtCY8KArJpeckPxf2GtyMA4Cj0HWcfOophnKHIyBbO YFNztwV7d1CAA== Date: Wed, 8 Jun 2022 16:33:30 -0700 From: Josh Poimboeuf To: Joe Damato Cc: x86@kernel.org, linux-kernel@vger.kernel.org, Peter Zijlstra , Andrew Cooper , jiangshanlai@gmail.com, bp@suse.de, brgerst@gmail.com Subject: Re: [PATCH] x86/mm: Fix RESERVE_BRK() for older binutils Message-ID: <20220608233330.rxliy3jiyhzbbjoj@treble> References: <20220608225724.2drhxj5pt2w5gbaf@treble> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20220608225724.2drhxj5pt2w5gbaf@treble> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 08, 2022 at 03:57:27PM -0700, Josh Poimboeuf wrote: > On Thu, Jun 09, 2022 at 01:12:09AM +0300, Joe Damato wrote: > > I applied the patch on top of commit 58f9d52ff689 ("Merge tag > > 'net-5.19-rc1' of > > git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net") and the kernel > > now builds successfully for me. > > > > The resulting kernel boots fine on the machine, as well. > > > > Tested-by: Joe Damato > > Thanks. Unfortunately, the LLVM linker doesn't like the patch... I've discovered that if you put a variable in ".bss..whatever", the section will magically be made NOBITS. Will try that for v2. -- Josh