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 3BE79ECAAA3 for ; Fri, 26 Aug 2022 17:44:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237625AbiHZRoF (ORCPT ); Fri, 26 Aug 2022 13:44:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231315AbiHZRoE (ORCPT ); Fri, 26 Aug 2022 13:44:04 -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 A0FC927B05; Fri, 26 Aug 2022 10:44:03 -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 46568B8320B; Fri, 26 Aug 2022 17:44:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BE658C433D6; Fri, 26 Aug 2022 17:43:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1661535840; bh=LLwqHI85y/+GxaK6vW19+U7CAFcsPtYk7pvwQU3KP2E=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=d8ZZpJ4Gl3aT3tooSeX1grJEq1dDXnzsptm50eVO29+Y/Z2W46kzZtNeCd7QxcOiO NG0jb9fWyrFZ7UZ1GGa7PVDnP1UWnMrZGVTFrvF5zYk3rHFtx0q1NrCHDqbxZTZgk2 YVL5tNzunifprLBH8dybidRdhSASplsyc1iIj/RpoHCLUFZZE+4phGeWwWQdHzt79c 262HIT4+TqUo7nMA2OjIwdRTTWCfoV76CfWcJg3OmwDLAra230/t+XICOB0fy0LM8h 4nlNXSp5jgLrVOLabWho00LOecHd4g3UfTPL+rzAaGqx7nNVuQo70vtKsJYteK1DB2 s0QAIyevYu+bg== Date: Fri, 26 Aug 2022 18:43:53 +0100 From: Will Deacon To: Mikulas Patocka Cc: Ard Biesheuvel , Linus Torvalds , Alan Stern , Andrea Parri , Peter Zijlstra , Boqun Feng , Nicholas Piggin , David Howells , Jade Alglave , Luc Maranget , "Paul E. McKenney" , Akira Yokosawa , Daniel Lustig , Joel Fernandes , linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Subject: Re: [PATCH] wait_on_bit: add an acquire memory barrier Message-ID: <20220826174352.GA20386@willie-the-truck> References: <20220826112327.GA19774@willie-the-truck> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-arch@vger.kernel.org On Fri, Aug 26, 2022 at 10:08:42AM -0400, Mikulas Patocka wrote: > On Fri, 26 Aug 2022, Mikulas Patocka wrote: > > On Fri, 26 Aug 2022, Will Deacon wrote: > > > On Thu, Aug 25, 2022 at 05:03:40PM -0400, Mikulas Patocka wrote: > > > > For me, the kernel 6.0-rc2 doesn't boot in an arm64 virtual machine at all > > > > (with or without this patch), so I only compile-tested it on arm64. I have > > > > to bisect it. > > > > > > It's working fine for me and I haven't had any other reports that it's not > > > booting. Please could you share some more details about your setup so we > > > can try to reproduce the problem? > > > > I'm bisecting it now. I'll post the offending commit when I'm done. > > So, the bad commit is aacd149b62382c63911060b8f64c1e3d89bd405a ("arm64: > head: avoid relocating the kernel twice for KASLR"). Thanks. Any chance you could give this a go, please? https://lore.kernel.org/r/20220826164800.2059148-1-ardb@kernel.org Will