Received: by 10.223.176.5 with SMTP id f5csp521336wra; Fri, 2 Feb 2018 01:37:32 -0800 (PST) X-Google-Smtp-Source: AH8x224zIUq0EWo6uHhBXZ/gpOqviFjcBGuK8vnHeFScpFvkK9gBFdMYhhcWdJNOBWgJB3xmugzD X-Received: by 10.99.117.28 with SMTP id q28mr24330639pgc.37.1517564252170; Fri, 02 Feb 2018 01:37:32 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1517564252; cv=none; d=google.com; s=arc-20160816; b=GGNgCzEOjVRPZkf/Q0rUZLzbFw4LenWXYdAe6/MWNGovzP1zd7BqhT6O3I+FtKL05m 6g7L5T5TeBdzbA2wCwQmfvkUjvZVby7qO7bNkn2lIB9rqIoQUFHVZfcwn5xQpA9mV+Dd J/+ALUXVlzTM2ZuxzoVMSq8ugSlqBuS/Y7Om6qgCme6EyC5NYOE2QJA4aEXyC1LpbUQn lcyg49ZkXznO9g3aXKTLGvlbsq4I3xdyiIj/Pou4ArfXxc4cCrP1R+k/xUXp15CeLOKa Kb58WPdN6UHioPSM+6Hg/cgsRfbJidFIaY+UYFNdUKm4xOms/F7TZWB14TPzBI6ZtTQ5 FyKQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=lpbR2Zl+AqqkLFyrkQcCFi9L3I9idUDDwoYjoOo/7t0=; b=oSaEZEK0qhw8gGy2S8KS1ut5BIFlcsbBVrksgc3AkSjmb1fzkxYWsUKy4AJ/azv2EZ xZB7SBG6mES+9t0WPr1m4VnZbYyEUmnN13dkeflHcA38GJh/Hb+q5CIZ23zfHLwSL6FM bHs12EaMUUQ+Ndv92GFc++u7B2zm7YXjS28klu7iF8wri7CJNjyk3hrbf73pR4r/Zj+2 JnGYyqY5QJrZNm5w12En2wvxkfFKkVAkaAI4/N9M053Q/tJp6bZaD/6IVRWj/pT/bFGH O/5C57WMInsodc6t3JPMYnQ4UDsSW94l5ayLYhC9fVR9sk78snLa9JCv/B34jsRF+1zN U1Xg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id x3-v6si1467377plo.2.2018.02.02.01.37.13; Fri, 02 Feb 2018 01:37:32 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751644AbeBBJgi (ORCPT + 99 others); Fri, 2 Feb 2018 04:36:38 -0500 Received: from mx2.suse.de ([195.135.220.15]:42294 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751425AbeBBJgd (ORCPT ); Fri, 2 Feb 2018 04:36:33 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 7FD90AD4F; Fri, 2 Feb 2018 09:36:32 +0000 (UTC) Date: Fri, 2 Feb 2018 10:36:32 +0100 From: Michal Hocko To: Anshuman Khandual Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, akpm@linux-foundation.org Subject: Re: [PATCH] mm/migrate: Change migration reason MR_CMA as MR_CONTIG_RANGE Message-ID: <20180202093632.GQ21609@dhcp22.suse.cz> References: <20180130030714.6790-1-khandual@linux.vnet.ibm.com> <20180202091518.18798-1-khandual@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180202091518.18798-1-khandual@linux.vnet.ibm.com> User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri 02-02-18 14:45:18, Anshuman Khandual wrote: > alloc_contig_range() initiates compaction and eventual migration for > the purpose of either CMA or HugeTLB allocation. At present, reason > code remains the same MR_CMA for either of these cases. Lets make it > MR_CONTIG_RANGE which will appropriately reflect reason code in both > these cases. It is not very specific but I guess this is better than inventing a code for each source. If we ever get to need distinguish all of them then we should better mark a function which calls the allocator or something like that. > Signed-off-by: Anshuman Khandual Acked-by: Michal Hocko > --- > arch/powerpc/mm/mmu_context_iommu.c | 2 +- > include/linux/migrate.h | 2 +- > include/trace/events/migrate.h | 2 +- > mm/page_alloc.c | 2 +- > 4 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/arch/powerpc/mm/mmu_context_iommu.c b/arch/powerpc/mm/mmu_context_iommu.c > index 91ee2231c527..4c615fcb0cf0 100644 > --- a/arch/powerpc/mm/mmu_context_iommu.c > +++ b/arch/powerpc/mm/mmu_context_iommu.c > @@ -111,7 +111,7 @@ static int mm_iommu_move_page_from_cma(struct page *page) > put_page(page); /* Drop the gup reference */ > > ret = migrate_pages(&cma_migrate_pages, new_iommu_non_cma_page, > - NULL, 0, MIGRATE_SYNC, MR_CMA); > + NULL, 0, MIGRATE_SYNC, MR_CONTIG_RANGE); > if (ret) { > if (!list_empty(&cma_migrate_pages)) > putback_movable_pages(&cma_migrate_pages); > diff --git a/include/linux/migrate.h b/include/linux/migrate.h > index a732598fcf83..7e7e2606bb4c 100644 > --- a/include/linux/migrate.h > +++ b/include/linux/migrate.h > @@ -25,7 +25,7 @@ enum migrate_reason { > MR_SYSCALL, /* also applies to cpusets */ > MR_MEMPOLICY_MBIND, > MR_NUMA_MISPLACED, > - MR_CMA, > + MR_CONTIG_RANGE, > MR_TYPES > }; > > diff --git a/include/trace/events/migrate.h b/include/trace/events/migrate.h > index bcf4daccd6be..711372845945 100644 > --- a/include/trace/events/migrate.h > +++ b/include/trace/events/migrate.h > @@ -20,7 +20,7 @@ > EM( MR_SYSCALL, "syscall_or_cpuset") \ > EM( MR_MEMPOLICY_MBIND, "mempolicy_mbind") \ > EM( MR_NUMA_MISPLACED, "numa_misplaced") \ > - EMe(MR_CMA, "cma") > + EMe(MR_CONTIG_RANGE, "contig_range") > > /* > * First define the enums in the above macros to be exported to userspace > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 242565855d05..b9a22e16b4cf 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -7622,7 +7622,7 @@ static int __alloc_contig_migrate_range(struct compact_control *cc, > cc->nr_migratepages -= nr_reclaimed; > > ret = migrate_pages(&cc->migratepages, new_page_alloc_contig, > - NULL, 0, cc->mode, MR_CMA); > + NULL, 0, cc->mode, MR_CONTIG_RANGE); > } > if (ret < 0) { > putback_movable_pages(&cc->migratepages); > -- > 2.11.0 > -- Michal Hocko SUSE Labs