From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0E5A3C433B4 for ; Wed, 21 Apr 2021 07:41:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CA6C561421 for ; Wed, 21 Apr 2021 07:41:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237023AbhDUHlg (ORCPT ); Wed, 21 Apr 2021 03:41:36 -0400 Received: from mx2.suse.de ([195.135.220.15]:57540 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235209AbhDUHlY (ORCPT ); Wed, 21 Apr 2021 03:41:24 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 929D6B13D; Wed, 21 Apr 2021 07:40:50 +0000 (UTC) Date: Wed, 21 Apr 2021 08:40:47 +0100 From: Mel Gorman To: Andrew Morton Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Peter Zijlstra , Peter Xu , Johannes Weiner , Vlastimil Babka , Matthew Wilcox , Will Deacon , Michel Lespinasse , Arjun Roy , Huang Ying , "Kirill A. Shutemov" Subject: Re: [PATCH -V3] NUMA balancing: reduce TLB flush via delaying mapping on hint page fault Message-ID: <20210421074047.GD15768@suse.de> References: <20210408132236.1175607-1-ying.huang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20210408132236.1175607-1-ying.huang@intel.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Apr 08, 2021 at 09:22:36PM +0800, Huang Ying wrote: > With NUMA balancing, in hint page fault handler, the faulting page > will be migrated to the accessing node if necessary. During the > migration, TLB will be shot down on all CPUs that the process has run > on recently. Because in the hint page fault handler, the PTE will be > made accessible before the migration is tried. The overhead of TLB > shooting down can be high, so it's better to be avoided if possible. > In fact, if we delay mapping the page until migration, that can be > avoided. This is what this patch doing. > > Signed-off-by: "Huang, Ying" > Reviewed-by: Mel Gorman > Cc: Peter Zijlstra > Cc: Peter Xu > Cc: Johannes Weiner > Cc: Vlastimil Babka > Cc: "Matthew Wilcox" > Cc: Will Deacon > Cc: Michel Lespinasse > Cc: Arjun Roy > Cc: "Kirill A. Shutemov" Hi Andrew, I do not see this in the mmots tree. Was something missed in this patch that needs fixing or did it just fall through the cracks? Thanks. -- Mel Gorman SUSE Labs