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 X-Spam-Level: X-Spam-Status: No, score=-10.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F0CB9C2B9F7 for ; Mon, 24 May 2021 15:14:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D6B2C61057 for ; Mon, 24 May 2021 15:14:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234390AbhEXPPp (ORCPT ); Mon, 24 May 2021 11:15:45 -0400 Received: from mail.kernel.org ([198.145.29.99]:40004 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235230AbhEXPJm (ORCPT ); Mon, 24 May 2021 11:09:42 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id CD06C60698; Mon, 24 May 2021 14:57:50 +0000 (UTC) Date: Mon, 24 May 2021 15:57:48 +0100 From: Catalin Marinas To: Will Deacon Cc: linux-arm-kernel@lists.infradead.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org, Marc Zyngier , Greg Kroah-Hartman , Peter Zijlstra , Morten Rasmussen , Qais Yousef , Suren Baghdasaryan , Quentin Perret , Tejun Heo , Li Zefan , Johannes Weiner , Ingo Molnar , Juri Lelli , Vincent Guittot , "Rafael J. Wysocki" , kernel-team@android.com Subject: Re: [PATCH v6 16/21] arm64: Implement task_cpu_possible_mask() Message-ID: <20210524145747.GC14645@arm.com> References: <20210518094725.7701-1-will@kernel.org> <20210518094725.7701-17-will@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210518094725.7701-17-will@kernel.org> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-arch@vger.kernel.org On Tue, May 18, 2021 at 10:47:20AM +0100, Will Deacon wrote: > Provide an implementation of task_cpu_possible_mask() so that we can > prevent 64-bit-only cores being added to the 'cpus_mask' for compat > tasks on systems with mismatched 32-bit support at EL0, > > Signed-off-by: Will Deacon Reviewed-by: Catalin Marinas