From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 8CDD03B4439 for ; Mon, 29 Jun 2026 23:12:37 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782774758; cv=none; b=fjeQAJzn+7Ci0mL2/Gwqo9ut4yEq8bCf9ff5FuIClMX1wPY4J507YWgqCqZtAkkt/WQ6Hr67+1ASunWS1nIzGYZ84t20T8o9N2dmuwXgruQoeXmsyCZ5hDJwClcRECholE3p9LsNudUY0U6+Jb+3KLTF3aL0jfm2Hq/SQ2DAWik= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782774758; c=relaxed/simple; bh=5+ZB224xvFCrKuAwDNb2EGSM3locubUKwmAUzBOIDe0=; h=Date:To:From:Subject:Message-Id; b=NWruiLbZbdDIv/0M8+rv4VWsJb22b0YAaGpFFTFlA2wXr8PdybjHgPiMH3ieWCltdbhavmeSqES16rj5kWMWtzOtA5VDTNs0ZDI/A0trfDq+tunUUPg77P0EOW1DXLA0LEBdGA5jPtUVqIhppuXBFM70EtIDeZkvvIwBVz/9A5U= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=LnOvlxei; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="LnOvlxei" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2140F1F000E9; Mon, 29 Jun 2026 23:12:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux-foundation.org; s=korg; t=1782774757; bh=C5cBKeLoHQaRhyF99UaweDgo4YS/1LtWzAxN4Hxta5Y=; h=Date:To:From:Subject; b=LnOvlxeilR+vc5XFBMJxzWRgglHK57n3rxampdBNADtjpDCdwMOQTpssA+WYzNE9M 5oklyW3FxQTnGI2JEwEfnMfD71WSWsmHRo7RNPf6lDGy2S6Ww04v8sWZs+WXqT+xlm z3nL9zsw9GSAY/M7WzBJIIL9udgnB9QyjrSZrXmk= Date: Mon, 29 Jun 2026 16:12:36 -0700 To: mm-commits@vger.kernel.org,vishal.moola@gmail.com,rdunlap@infradead.org,ljs@kernel.org,david@kernel.org,manuelebner@mailbox.org,akpm@linux-foundation.org From: Andrew Morton Subject: + docs-mm-fix-braces.patch added to mm-new branch Message-Id: <20260629231237.2140F1F000E9@smtp.kernel.org> Precedence: bulk X-Mailing-List: mm-commits@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The patch titled Subject: docs/mm: Fix braces has been added to the -mm mm-new branch. Its filename is docs-mm-fix-braces.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/docs-mm-fix-braces.patch This patch will later appear in the mm-new branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Note, mm-new is a provisional staging ground for work-in-progress patches, and acceptance into mm-new is a notification for others take notice and to finish up reviews. Please do not hesitate to respond to review feedback and post updated versions to replace or incrementally fixup patches in mm-new. The mm-new branch of mm.git is not included in linux-next If a few days of testing in mm-new is successful, the patch will me moved into mm.git's mm-unstable branch, which is included in linux-next Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via various branches at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there most days ------------------------------------------------------ From: Manuel Ebner Subject: docs/mm: Fix braces Date: Mon, 29 Jun 2026 18:11:56 +0200 Correct typos in mm documentation by balancing parentheses. Link: https://lore.kernel.org/20260629161156.90213-2-manuelebner@mailbox.org Signed-off-by: Manuel Ebner Acked-by: Randy Dunlap Reviewed-by: Lorenzo Stoakes Acked-by: David Hildenbrand (Arm) Reviewed-by: Vishal Moola Signed-off-by: Andrew Morton --- Documentation/mm/hmm.rst | 4 ++-- Documentation/mm/process_addrs.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/Documentation/mm/hmm.rst~docs-mm-fix-braces +++ a/Documentation/mm/hmm.rst @@ -191,7 +191,7 @@ like a CPU page fault. The usage pattern mmap_read_unlock(mm); take_lock(driver->update); - if (mmu_interval_read_retry(&ni, range.notifier_seq) { + if (mmu_interval_read_retry(&ni, range.notifier_seq)) { release_lock(driver->update); goto again; } @@ -316,7 +316,7 @@ between device driver specific code and system memory and device private memory. One of the first steps migrate_vma_setup() does is to invalidate other - device's MMUs with the ``mmu_notifier_invalidate_range_start(()`` and + device's MMUs with the ``mmu_notifier_invalidate_range_start()`` and ``mmu_notifier_invalidate_range_end()`` calls around the page table walks to fill in the ``args->src`` array with PFNs to be migrated. The ``invalidate_range_start()`` callback is passed a --- a/Documentation/mm/process_addrs.rst~docs-mm-fix-braces +++ a/Documentation/mm/process_addrs.rst @@ -724,7 +724,7 @@ the zap and the invocation of :c:func:`! Since it is assumed that all such steps have been taken, page table entries are cleared without page table locks (in the :c:func:`!pgd_clear`, :c:func:`!p4d_clear`, -:c:func:`!pud_clear`, and :c:func:`!pmd_clear` functions. +:c:func:`!pud_clear`, and :c:func:`!pmd_clear` functions). .. note:: It is possible for leaf page tables to be torn down independent of the page tables above it as is done by _ Patches currently in -mm which might be from manuelebner@mailbox.org are docs-mm-fix-braces.patch