* [PATCH] docs/mm: Fix brackets
@ 2026-06-27 9:32 Manuel Ebner
2026-06-27 18:05 ` Randy Dunlap
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Manuel Ebner @ 2026-06-27 9:32 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,
open list:HMM - Heterogeneous Memory Management,
open list:DOCUMENTATION, open list
Cc: Manuel Ebner
Remove unnecessary ')' and missing '('.
Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
---
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] 4+ messages in thread
* Re: [PATCH] docs/mm: Fix brackets
2026-06-27 9:32 [PATCH] docs/mm: Fix brackets Manuel Ebner
@ 2026-06-27 18:05 ` Randy Dunlap
2026-06-29 6:34 ` David Hildenbrand (Arm)
2026-06-29 9:57 ` Lorenzo Stoakes
2 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2026-06-27 18:05 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,
Jonathan Corbet, Shuah Khan, Shakeel Butt,
open list:HMM - Heterogeneous Memory Management,
open list:DOCUMENTATION, open list
On 6/27/26 2:32 AM, Manuel Ebner wrote:
> Remove unnecessary ')' and missing '('.
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
> 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
--
~Randy
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs/mm: Fix brackets
2026-06-27 9:32 [PATCH] docs/mm: Fix brackets Manuel Ebner
2026-06-27 18:05 ` Randy Dunlap
@ 2026-06-29 6:34 ` David Hildenbrand (Arm)
2026-06-29 9:57 ` Lorenzo Stoakes
2 siblings, 0 replies; 4+ messages in thread
From: David Hildenbrand (Arm) @ 2026-06-29 6:34 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, open list:HMM - Heterogeneous Memory Management,
open list:DOCUMENTATION, open list
On 6/27/26 11:32, Manuel Ebner wrote:
> Remove unnecessary ')' and missing '('.
Insert empty line here.
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
> ---
> 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)) {
Adding missing ")"
> 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
Removing unnecessary "("
> ``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).
Adding missing ")".
So your patch description is not quite correct? :)
--
Cheers,
David
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] docs/mm: Fix brackets
2026-06-27 9:32 [PATCH] docs/mm: Fix brackets Manuel Ebner
2026-06-27 18:05 ` Randy Dunlap
2026-06-29 6:34 ` David Hildenbrand (Arm)
@ 2026-06-29 9:57 ` Lorenzo Stoakes
2 siblings, 0 replies; 4+ messages in thread
From: Lorenzo Stoakes @ 2026-06-29 9:57 UTC (permalink / raw)
To: Manuel Ebner
Cc: Jason Gunthorpe, Leon Romanovsky, Andrew Morton,
David Hildenbrand, Liam R . Howlett, Vlastimil Babka,
Mike Rapoport, Suren Baghdasaryan, Michal Hocko, Jonathan Corbet,
Shuah Khan, Shakeel Butt,
open list:HMM - Heterogeneous Memory Management,
open list:DOCUMENTATION, open list
On Sat, Jun 27, 2026 at 11:32:59AM +0200, Manuel Ebner wrote:
> Remove unnecessary ')' and missing '('.
As per David this isn't correct :)
"Correct typos in mm documentation by balancing parentheses"
?
<newline>
> Signed-off-by: Manuel Ebner <manuelebner@mailbox.org>
Thanks for fixing this!
With the commit message corrected, feel free to add:
Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
> ---
> 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
>
Cheers, Lorenzo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-06-29 9:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-27 9:32 [PATCH] docs/mm: Fix brackets Manuel Ebner
2026-06-27 18:05 ` Randy Dunlap
2026-06-29 6:34 ` David Hildenbrand (Arm)
2026-06-29 9:57 ` Lorenzo Stoakes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox