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 E7F421FC101 for ; Thu, 14 May 2026 10:36:02 +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=1778754963; cv=none; b=mFhsUZUpmI3Vcz7+5QU80vpn5nXFxJQS+fa+tf+FPRpON26c4DhjU5O8+WdbuYTEnEdNePtiq6vqt0WkD1+V2sskCRM6GbCDGiRIvIzIBmX8iJQBkwr/Voh/S516OY3yat2vy8dr0+/o8rPB/r8F+Na1cRXx7TVd8AorSrdZn5E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778754963; c=relaxed/simple; bh=sN1fs0XRPPPvWka4xXnCLpw2i+3MHA4unKQRnUFjsDA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ih44oIa7TdMQsgDRbDzy4yCb+1WCz684K65IbOL14AA1VFOfKkTWaufwz46rEWJgwO9Z5avpLRDo02U2XGqqJEutiKzvO7kugf3hyTdK8FemNSfGD0ozBQ9LxR95jgJ/J+eGVyxOiSq/m/adqKJSIoMoDAtkV3Ai4vonQZ1GocQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mHHxM8IY; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mHHxM8IY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4BD45C2BCB3; Thu, 14 May 2026 10:36:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778754962; bh=sN1fs0XRPPPvWka4xXnCLpw2i+3MHA4unKQRnUFjsDA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mHHxM8IYqAb/7BirWI8nyT5oAZpCcoXWYgKE8jc2SuBxff88LJNCYiFUpcp+sdB/6 +fORw3zO6rwnX2XmZxKCAPWrN1ER7NwKnVoMOBiLOZ7B4qR9kvkEchzQKWPvGxlHzh FI+3YleWQJ3N5+QSQmZCibkYNxf7pa2sKMh4+V1QD9Ok+lO5LJoxHdCvXCDmgyGHGu AZM172y6FRl80rXeZc1Qcix4bOeDaPL2dp3DARnB6v6FURixMNjtmHPr7JPzl3cxuc PY+pK2HMk9mHUQWxSzBsmVDXx73XPR3qzjJMIU0dsr0+Y2cazkw8oYyZzT9/gLmbWJ e45reBZZn4OEw== Date: Thu, 14 May 2026 11:35:57 +0100 From: Lorenzo Stoakes To: Sean Christopherson Cc: Andrew Morton , David Hildenbrand , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Takahiro Itazuri Subject: Re: [PATCH] mm/mmu_notifier: Fix a begin vs. start typo in the invalidate range comment Message-ID: References: <20260513163546.1176742-1-seanjc@google.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: <20260513163546.1176742-1-seanjc@google.com> On Wed, May 13, 2026 at 09:35:46AM -0700, Sean Christopherson wrote: > From: Takahiro Itazuri > > Fix a goof in the block comment for invalidate_range_{start,end}() where > start() is incorrectly referred to as begin(). > > No functional change intended. > > Signed-off-by: Takahiro Itazuri > [sean: split to separate patch, write changelog] > Signed-off-by: Sean Christopherson LGTM, so: Reviewed-by: Lorenzo Stoakes > --- > include/linux/mmu_notifier.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h > index 69c304b467df..a11a44eef521 100644 > --- a/include/linux/mmu_notifier.h > +++ b/include/linux/mmu_notifier.h > @@ -134,8 +134,8 @@ struct mmu_notifier_ops { > * Invalidation of multiple concurrent ranges may be > * optionally permitted by the driver. Either way the > * establishment of sptes is forbidden in the range passed to > - * invalidate_range_begin/end for the whole duration of the > - * invalidate_range_begin/end critical section. > + * invalidate_range_start/end for the whole duration of the > + * invalidate_range_start/end critical section. > * > * invalidate_range_start() is called when all pages in the > * range are still mapped and have at least a refcount of one. > > base-commit: 5d6919055dec134de3c40167a490f33c74c12581 > -- > 2.54.0.563.g4f69b47b94-goog >