From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932074AbdHUVlz (ORCPT ); Mon, 21 Aug 2017 17:41:55 -0400 Received: from mail-wr0-f169.google.com ([209.85.128.169]:38286 "EHLO mail-wr0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754388AbdHUVlx (ORCPT ); Mon, 21 Aug 2017 17:41:53 -0400 Date: Tue, 22 Aug 2017 00:41:50 +0300 From: "Kirill A. Shutemov" To: David Rientjes Cc: Andrew Morton , Minchan Kim , Hugh Dickins , "Kirill A. Shutemov" , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [patch] fs, proc: unconditional cond_resched when reading smaps Message-ID: <20170821214150.pgv3ulpicnacslak@node.shutemov.name> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Aug 21, 2017 at 02:06:45PM -0700, David Rientjes wrote: > 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 > --- > 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; > } Maybe just call cond_resched() at the beginning of the function and don't bother with gotos? -- Kirill A. Shutemov