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 78F0C1E9B23 for ; Tue, 7 Jan 2025 12:24:48 +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=1736252688; cv=none; b=mdNqTj/6AkizdwBP+1caK+y15Ih2KW90r/qWuECYkq8qdKhzGdSJAq9Diezfwhx5pgQU8jGc9VqeSTgVuYe4/rxyeIxVfJbS56xCVtdTg7dxknYJKzSot5b+kDRVAHDLDpLt4PycO6nKsj12MDSXtRqeqYP1geEKhtYZSGrUTK0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736252688; c=relaxed/simple; bh=aPMJnhKfZNheJ2uRAutfZ2cn3Np2n8o7UbOG71SmsRo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=AgjyPLpE5x9U5y6WlLphrI//CXx3ARRvdxbGdNYCisCq1pHDTlHEaMP5xGbXkCviiibFjshaEk984B6h3GLwZgcaZregsCQSI9BBfty9ISdG7T1GBF8Qv+ZutuL6CxFud/Lol5E5mR5CFFBpY+suIHzi4TlrbplsOyJIRVxqnyg= 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 8FF30C4CED6; Tue, 7 Jan 2025 12:24:46 +0000 (UTC) Date: Tue, 7 Jan 2025 12:24:44 +0000 From: Catalin Marinas To: Anshuman Khandual Cc: linux-arm-kernel@lists.infradead.org, Will Deacon , Ard Biesheuvel , Ryan Roberts , Mark Rutland , linux-kernel@vger.kernel.org Subject: Re: [PATCH] arm64/mm: Replace open encodings with PXD_TABLE_BIT Message-ID: References: <20250107015529.798319-1-anshuman.khandual@arm.com> Precedence: bulk X-Mailing-List: linux-kernel@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: <20250107015529.798319-1-anshuman.khandual@arm.com> On Tue, Jan 07, 2025 at 07:25:29AM +0530, Anshuman Khandual wrote: > [pgd|p4d]_bad() helpers have open encodings for their respective table bits > which can be replaced with corresponding macros. This makes things clearer, > thus improving their readability as well. > > Cc: Catalin Marinas > Cc: Will Deacon > Cc: Ard Biesheuvel > Cc: Ryan Roberts > Cc: Mark Rutland > Cc: linux-arm-kernel@lists.infradead.org > Cc: linux-kernel@vger.kernel.org > Signed-off-by: Anshuman Khandual Acked-by: Catalin Marinas