* [PATCH v2] docs/mm: Fix braces
@ 2026-06-29 16:11 Manuel Ebner
2026-06-29 16:41 ` David Hildenbrand (Arm)
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Manuel Ebner @ 2026-06-29 16:11 UTC (permalink / raw)
To: Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Jonathan Corbet, Shuah Khan, Shakeel Butt
Cc: Manuel Ebner, Randy Dunlap, linux-mm, linux-doc, linux-kernel
Correct typos in mm documentation by balancing parentheses.
Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
---
[v2]
fix commit message
add tags
---
Documentation/mm/hmm.rst | 4 ++--
Documentation/mm/process_addrs.rst | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Documentation/mm/hmm.rst b/Documentation/mm/hmm.rst
index 7d61b7a8b65b..54c461e7a143 100644
--- a/Documentation/mm/hmm.rst
+++ b/Documentation/mm/hmm.rst
@@ -191,7 +191,7 @@ like a CPU page fault. The usage pattern is::
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 shared common code:
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
diff --git a/Documentation/mm/process_addrs.rst b/Documentation/mm/process_addrs.rst
index 851680ead45f..b391502fbfd6 100644
--- a/Documentation/mm/process_addrs.rst
+++ b/Documentation/mm/process_addrs.rst
@@ -724,7 +724,7 @@ the zap and the invocation of :c:func:`!free_pgtables`.
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
--
2.54.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH v2] docs/mm: Fix braces
2026-06-29 16:11 [PATCH v2] docs/mm: Fix braces Manuel Ebner
@ 2026-06-29 16:41 ` David Hildenbrand (Arm)
2026-06-29 18:17 ` Vishal Moola
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand (Arm) @ 2026-06-29 16:41 UTC (permalink / raw)
To: Manuel Ebner, Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
Lorenzo Stoakes, Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jonathan Corbet, Shuah Khan,
Shakeel Butt
Cc: Randy Dunlap, linux-mm, linux-doc, linux-kernel
On 6/29/26 18:11, Manuel Ebner wrote:
> Correct typos in mm documentation by balancing parentheses.
>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
> ---
Acked-by: David Hildenbrand (Arm) <david@kernel.org>
--
Cheers,
David
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2] docs/mm: Fix braces
2026-06-29 16:11 [PATCH v2] docs/mm: Fix braces Manuel Ebner
2026-06-29 16:41 ` David Hildenbrand (Arm)
@ 2026-06-29 18:17 ` Vishal Moola
2026-06-30 0:06 ` SJ Park
2026-06-30 19:29 ` Jonathan Corbet
3 siblings, 0 replies; 6+ messages in thread
From: Vishal Moola @ 2026-06-29 18:17 UTC (permalink / raw)
To: Manuel Ebner
Cc: Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Jonathan Corbet, Shuah Khan, Shakeel Butt, Randy Dunlap, linux-mm,
linux-doc, linux-kernel
On Mon, Jun 29, 2026 at 06:11:56PM +0200, Manuel Ebner wrote:
> Correct typos in mm documentation by balancing parentheses.
>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
Reviewed-by: Vishal Moola <vishal.moola@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] docs/mm: Fix braces
2026-06-29 16:11 [PATCH v2] docs/mm: Fix braces Manuel Ebner
2026-06-29 16:41 ` David Hildenbrand (Arm)
2026-06-29 18:17 ` Vishal Moola
@ 2026-06-30 0:06 ` SJ Park
2026-06-30 0:13 ` SJ Park
2026-06-30 19:29 ` Jonathan Corbet
3 siblings, 1 reply; 6+ messages in thread
From: SJ Park @ 2026-06-30 0:06 UTC (permalink / raw)
To: Manuel Ebner
Cc: SJ Park, Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Jonathan Corbet, Shuah Khan, Shakeel Butt, Randy Dunlap, linux-mm,
linux-doc, linux-kernel
On Mon, 29 Jun 2026 18:11:56 +0200 Manuel Ebner <manuelebner@mailbox.org> wrote:
> Correct typos in mm documentation by balancing parentheses.
Good eyes!
>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
Reviewed-by: SeongJae Park <sj@kernel.org>
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] docs/mm: Fix braces
2026-06-30 0:06 ` SJ Park
@ 2026-06-30 0:13 ` SJ Park
0 siblings, 0 replies; 6+ messages in thread
From: SJ Park @ 2026-06-30 0:13 UTC (permalink / raw)
To: SJ Park
Cc: Manuel Ebner, Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Jonathan Corbet, Shuah Khan, Shakeel Butt, Randy Dunlap, linux-mm,
linux-doc, linux-kernel
On Mon, 29 Jun 2026 17:06:19 -0700 SJ Park <sj@kernel.org> wrote:
> On Mon, 29 Jun 2026 18:11:56 +0200 Manuel Ebner <manuelebner@mailbox.org> wrote:
>
> > Correct typos in mm documentation by balancing parentheses.
>
> Good eyes!
>
> >
> > Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> > Acked-by: Randy Dunlap <rdunlap@infradead.org>
> > Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
>
> Reviewed-by: SeongJae Park <sj@kernel.org>
I mean,
Reviewed-by: SJ Park <sj@kernel.org>
Sorry for the noise.
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2] docs/mm: Fix braces
2026-06-29 16:11 [PATCH v2] docs/mm: Fix braces Manuel Ebner
` (2 preceding siblings ...)
2026-06-30 0:06 ` SJ Park
@ 2026-06-30 19:29 ` Jonathan Corbet
3 siblings, 0 replies; 6+ messages in thread
From: Jonathan Corbet @ 2026-06-30 19:29 UTC (permalink / raw)
To: Manuel Ebner, Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Shuah Khan, Shakeel Butt
Cc: Manuel Ebner, Randy Dunlap, linux-mm, linux-doc, linux-kernel
Manuel Ebner <manuelebner@mailbox.org> writes:
> Correct typos in mm documentation by balancing parentheses.
>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
> ---
> [v2]
> fix commit message
> add tags
> ---
> Documentation/mm/hmm.rst | 4 ++--
> Documentation/mm/process_addrs.rst | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
Applied, thanks.
jon
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-06-30 19:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-29 16:11 [PATCH v2] docs/mm: Fix braces Manuel Ebner
2026-06-29 16:41 ` David Hildenbrand (Arm)
2026-06-29 18:17 ` Vishal Moola
2026-06-30 0:06 ` SJ Park
2026-06-30 0:13 ` SJ Park
2026-06-30 19:29 ` Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox