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 B7F4F1D130F; Thu, 22 Aug 2024 16:17:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724343442; cv=none; b=eGmDVmK0qBG/dNhaLdFHrPNw+fy8qNVq+IqsF19V8E2H1MYFK1szUQRYoksgxd7oMybYv5asgV1VxNJ1fRJzyZ5B0z3rBHUSMyYvwlWDGnrEdVa5T/DvZuq9/BgXNweWnlpsfUglpgsteaEH9cYh50hi8dZ4cYAtEuWF03QVHPg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724343442; c=relaxed/simple; bh=2lU/3y2goxQWS9PMYm6ZBCHEwiRDEHAAUriQ/kBXkJM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=RPeua9azWlS6VQbVmFbSokqsJyevZ6unzWCto8bt4Bga2WhH5LAHrg2GNdZPJgugTabsKW7ZSOSlg7RqW62A5tzGTds8e8nbUm2oYd+AR0QF21JsE4auVTsHHftNPrDyQvRUTCkBGrAE1rhdwpa6TduYjLkatu28HYgFcPzwl28= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7A5ABC32782; Thu, 22 Aug 2024 16:17:16 +0000 (UTC) Date: Thu, 22 Aug 2024 17:17:14 +0100 From: Catalin Marinas To: Mark Brown Cc: Will Deacon , Jonathan Corbet , Andrew Morton , Marc Zyngier , Oliver Upton , James Morse , Suzuki K Poulose , Arnd Bergmann , Oleg Nesterov , Eric Biederman , Shuah Khan , "Rick P. Edgecombe" , Deepak Gupta , Ard Biesheuvel , Szabolcs Nagy , Kees Cook , "H.J. Lu" , Paul Walmsley , Palmer Dabbelt , Albert Ou , Florian Weimer , Christian Brauner , Thiago Jung Bauermann , Ross Burton , Yury Khrustalev , Wilco Dijkstra , linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org, kvmarm@lists.linux.dev, linux-fsdevel@vger.kernel.org, linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org Subject: Re: [PATCH v11 21/39] arm64/gcs: Ensure that new threads have a GCS Message-ID: References: <20240822-arm64-gcs-v11-0-41b81947ecb5@kernel.org> <20240822-arm64-gcs-v11-21-41b81947ecb5@kernel.org> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240822-arm64-gcs-v11-21-41b81947ecb5@kernel.org> On Thu, Aug 22, 2024 at 02:15:24AM +0100, Mark Brown wrote: > @@ -512,10 +538,16 @@ static void gcs_thread_switch(struct task_struct *next) > gcs_set_el0_mode(next); > > /* > - * Ensure that GCS changes are observable by/from other PEs in > - * case of migration. > + * Ensure that GCS memory effects of the 'prev' thread are > + * ordered before other memory accesses with release semantics > + * (or preceded by a DMB) on the current PE. In addition, any > + * memory accesses with acquire semantics (or succeeded by a > + * DMB) are ordered before GCS memory effects of the 'next' > + * thread. This will ensure that the GCS memory effects are > + * visible to other PEs in case of migration. > */ > - gcsb_dsync(); > + if (task_gcs_el0_enabled(current) || task_gcs_el0_enabled(next)) > + gcsb_dsync(); > } Ah, the comment turned up in this patch. It looks fine. Reviewed-by: Catalin Marinas