Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1716885
| From | David Rientjes <rientjes@google.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [patch] fs, proc: unconditional cond_resched when reading smaps |
| Date | 2017-08-21 23:10 +0200 |
| Message-ID | <uh27o-12T-31@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
If there are large numbers of hugepages to iterate while reading
/proc/pid/smaps, the page walk never does cond_resched(). On archs
without split pmd locks, there can be significant and observable
contention on mm->page_table_lock which cause lengthy delays without
rescheduling.
Always reschedule in smaps_pte_range() if necessary since the pagewalk
iteration can be expensive.
Signed-off-by: David Rientjes <rientjes@google.com>
---
fs/proc/task_mmu.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -599,11 +599,11 @@ static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
if (ptl) {
smaps_pmd_entry(pmd, addr, walk);
spin_unlock(ptl);
- return 0;
+ goto out;
}
if (pmd_trans_unstable(pmd))
- return 0;
+ goto out;
/*
* The mmap_sem held all the way back in m_start() is what
* keeps khugepaged out of here and from collapsing things
@@ -613,6 +613,7 @@ static int smaps_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
for (; addr != end; pte++, addr += PAGE_SIZE)
smaps_pte_entry(pte, addr, walk);
pte_unmap_unlock(pte - 1, ptl);
+out:
cond_resched();
return 0;
}
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[patch] fs, proc: unconditional cond_resched when reading smaps David Rientjes <rientjes@google.com> - 2017-08-21 23:10 +0200 Re: [patch] fs, proc: unconditional cond_resched when reading smaps "Kirill A. Shutemov" <kirill@shutemov.name> - 2017-08-21 23:50 +0200
csiph-web