* [PATCH] mm/mlock: Drop dead code in count_mm_mlocked_page_nr()
@ 2022-06-15 17:40 Liam Howlett
0 siblings, 0 replies; only message in thread
From: Liam Howlett @ 2022-06-15 17:40 UTC (permalink / raw)
To: maple-tree, linux-mm, linux-kernel, Andrew Morton, Lukas Bulwahn,
Matthew Wilcox
The check for mm being null has never been needed since the only caller
has always passed in current->mm. Remove the check from
count_mm_mlocked_page_nr().
Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
Suggested-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
mm/mlock.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/mm/mlock.c b/mm/mlock.c
index 43d19a1f28eb..7032f6dd0ce1 100644
--- a/mm/mlock.c
+++ b/mm/mlock.c
@@ -531,14 +531,12 @@ static unsigned long count_mm_mlocked_page_nr(struct mm_struct *mm,
unsigned long end;
VMA_ITERATOR(vmi, mm, start);
- if (mm == NULL)
- mm = current->mm;
-
/* Don't overflow past ULONG_MAX */
if (unlikely(ULONG_MAX - len < start))
end = ULONG_MAX;
else
end = start + len;
+
for_each_vma_range(vmi, vma, end) {
if (vma->vm_flags & VM_LOCKED) {
if (start > vma->vm_start)
--
2.35.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-06-15 17:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-15 17:40 [PATCH] mm/mlock: Drop dead code in count_mm_mlocked_page_nr() Liam Howlett
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox