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 944A33A2566 for ; Thu, 14 May 2026 10:28:30 +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=1778754510; cv=none; b=LnX/XwHyucH4u7cV2aFZP4ml1G7kIz08eWAkmEG+Ok20LsgF5I94QuNIvfuTiqgZ3GjwQhbRfyPiHITFCn0F3Mx7Yhd4ECluYcMf7dMFqqLuS/QJdnZIttrx+0j1cz7Tdfl4E73GF7U8mrIHePrGfl51A6jgOmY7iWqhMHkOkuA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778754510; c=relaxed/simple; bh=J2E1ngOfP+z/JoQMu6HZS2xqwSwuHFP51iCK7RA8Bck=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=IN5iKnVBjZRsbXQv8bcZOg5Isd84WCK0fYWc99hB5giyioNi2SESvHIwc5oSfp++js9KMo2XaZ6vc3GP9rjWIDO6owXorDGXNZcLYRTmKIYQc4wflFFj6VA7NY9z5JtGIyHSFkJaA4A816z+CgY6d2GvBn/rGym0tftiPY0dM84= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=hZIucBvP; 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="hZIucBvP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 25386C2BCB3; Thu, 14 May 2026 10:28:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778754510; bh=J2E1ngOfP+z/JoQMu6HZS2xqwSwuHFP51iCK7RA8Bck=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hZIucBvPihuaorZZomcxWbYinrUzDR8G+xzUt/s26qidns7znx6wk7z2f6tdJgf8M kzZhwU479eTizwiL4UJJwdTLFXWDICtQIZMgB+dJYHCKyNBqON1KnRSXscQ4x7rgcj Fg8dNvCOwfmxO2XR0WmPJkFR2A9NjRUjkHv0f5d97ApQggoZLXtiZ2AyOXuL1/bnre tvMLrHn9RUeZuCJ3czonObSsdyX4TYaeR5jKPmph04Qo0GWYKu8QjZnkRoNg/ub88d TUCAeMzRqcbPXm5geIvCChiEj2gBlsCPoOEuMfCiWeXAKbNfUFNcPGQAx54r0d+7DF I1d4ZErcxQX1Q== Date: Thu, 14 May 2026 13:28:23 +0300 From: Mike Rapoport To: Sean Christopherson Cc: Andrew Morton , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , 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 Reviewed-by: Mike Rapoport (Microsoft) > --- > 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 > -- Sincerely yours, Mike.