From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f45.google.com (mail-pa0-f45.google.com [209.85.220.45]) by kanga.kvack.org (Postfix) with ESMTP id 847116B0038 for ; Fri, 20 Mar 2015 00:14:12 -0400 (EDT) Received: by pagj4 with SMTP id j4so4979801pag.2 for ; Thu, 19 Mar 2015 21:14:12 -0700 (PDT) Received: from ipmail04.adl6.internode.on.net (ipmail04.adl6.internode.on.net. [150.101.137.141]) by mx.google.com with ESMTP id ot6si7004621pac.59.2015.03.19.21.14.10 for ; Thu, 19 Mar 2015 21:14:11 -0700 (PDT) Date: Fri, 20 Mar 2015 15:13:57 +1100 From: Dave Chinner Subject: Re: [PATCH 4/4] mm: numa: Slow PTE scan rate if migration failures occur Message-ID: <20150320041357.GO10105@dastard> References: <20150317205104.GA28621@dastard> <20150317220840.GC28621@dastard> <20150319224143.GI10105@dastard> <20150320002311.GG28621@dastard> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Linus Torvalds Cc: Mel Gorman , Ingo Molnar , Andrew Morton , Aneesh Kumar , Linux Kernel Mailing List , Linux-MM , xfs@oss.sgi.com, ppc-dev On Thu, Mar 19, 2015 at 06:29:47PM -0700, Linus Torvalds wrote: > On Thu, Mar 19, 2015 at 5:23 PM, Dave Chinner wrote: > > > > Bit more variance there than the pte checking, but runtime > > difference is in the noise - 5m4s vs 4m54s - and profiles are > > identical to the pte checking version. > > Ahh, so that "!(vma->vm_flags & VM_WRITE)" test works _almost_ as well > as the original !pte_write() test. > > Now, can you check that on top of rc4? If I've gotten everything > right, we now have: > > - plain 3.19 (pte_write): 4m54s > - 3.19 with vm_flags & VM_WRITE: 5m4s > - 3.19 with pte_dirty: 5m20s *nod* > so the pte_dirty version seems to have been a bad choice indeed. > > For 4.0-rc4, (which uses pte_dirty) you had 7m50s, so it's still > _much_ worse, but I'm wondering whether that VM_WRITE test will at > least shrink the difference like it does for 3.19. Testing now. It's a bit faster - three runs gave 7m35s, 7m20s and 7m36s. IOWs's a bit better, but not significantly. page migrations are pretty much unchanged, too: 558,632 migrate:mm_migrate_pages ( +- 6.38% ) > And the VM_WRITE test should be stable and not have any subtle > interaction with the other changes that the numa pte things > introduced. It would be good to see if the profiles then pop something > *else* up as the performance difference (which I'm sure will remain, > since the 7m50s was so far off). No, nothing new pops up in the kernel profiles. All the system CPU time is still being spent sending IPIs on the tlb flush path. Cheers, Dave. -- Dave Chinner david@fromorbit.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org