From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753598AbbJHHYA (ORCPT ); Thu, 8 Oct 2015 03:24:00 -0400 Received: from mx2.suse.de ([195.135.220.15]:41940 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753467AbbJHHX7 (ORCPT ); Thu, 8 Oct 2015 03:23:59 -0400 Subject: Re: [PATCH 1/3] page: add new flags "PG_movable" and add interfaces to control these pages To: Hui Zhu , Minchan Kim , Nitin Gupta , Sergey Senozhatsky , Andrew Morton , "Kirill A. Shutemov" , Mel Gorman , Dave Hansen , Johannes Weiner , Michal Hocko , Konstantin Khlebnikov , Andrea Arcangeli , Alexander Duyck , Tejun Heo , Joonsoo Kim , Naoya Horiguchi , Jennifer Herbert , Hugh Dickins , Vladimir Davydov , David Rientjes , Sasha Levin , "Steven Rostedt (Red Hat)" , "Aneesh Kumar K.V" , Wanpeng Li , Geert Uytterhoeven , Greg Thelen , Al Viro , linux-kernel@vger.kernel.org, linux-mm@kvack.org References: <1444286152-30175-1-git-send-email-zhuhui@xiaomi.com> <1444286152-30175-2-git-send-email-zhuhui@xiaomi.com> Cc: teawater@gmail.com From: Vlastimil Babka Message-ID: <56161A06.4060502@suse.cz> Date: Thu, 8 Oct 2015 09:23:50 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1444286152-30175-2-git-send-email-zhuhui@xiaomi.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/08/2015 08:35 AM, Hui Zhu wrote: > This patch add PG_movable to mark a page as movable. > And when system call migrate function, it will call the interfaces isolate, > put and migrate to control it. > > There is a patch for page migrate interface in LKML. But for zsmalloc, > it is too deep inside the file system. So I add another one. > > Signed-off-by: Hui Zhu > --- > include/linux/mm_types.h | 6 ++++++ > include/linux/page-flags.h | 3 +++ > mm/compaction.c | 6 ++++++ > mm/debug.c | 1 + > mm/migrate.c | 17 +++++++++++++---- > mm/vmscan.c | 2 +- > 6 files changed, 30 insertions(+), 5 deletions(-) > > diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h > index 3d6baa7..132afb0 100644 > --- a/include/linux/mm_types.h > +++ b/include/linux/mm_types.h > @@ -12,6 +12,7 @@ > #include > #include > #include > +#include > #include > #include > > @@ -196,6 +197,11 @@ struct page { > #ifdef LAST_CPUPID_NOT_IN_PAGE_FLAGS > int _last_cpupid; > #endif > + > + int (*isolate)(struct page *page); > + void (*put)(struct page *page); > + int (*migrate)(struct page *page, struct page *newpage, int force, > + enum migrate_mode mode); Three new function pointers in a struct page? No way! Nowadays it has around 64 bytes IIRC and we do quite some crazy stuff to keep it packed. We can't just like this add extra 24 bytes of overhead per 4096 bytes of useful data. > } > /* > * The struct page can be forced to be double word aligned so that atomic ops > diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h > index 416509e..d91e98a 100644 > --- a/include/linux/page-flags.h > +++ b/include/linux/page-flags.h > @@ -113,6 +113,7 @@ enum pageflags { > PG_young, > PG_idle, > #endif > + PG_movable, /* MOVABLE */ Page flag space is also a rare resource and we shouldn't add new ones if it's possible to do otherwise - and it should be in this case. Since Sergey already responded to the cover letter with links to the prior relevant series, I just wanted to point out the biggest reasons why this cannot be accepted technically.