login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
December
»
1
Re: [PATCH 3/3] Provide control over unmapped pages
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Balbir Singh
Subject:
Re: [PATCH 3/3] Provide control over unmapped pages
Date: Tuesday, November 30, 2010 - 10:22 pm
* Balbir Singh <balbir@linux.vnet.ibm.com> [2010-12-01 10:24:21]:
quoted text
> * Andrew Morton <akpm@linux-foundation.org> [2010-11-30 14:25:09]: > > > On Tue, 30 Nov 2010 15:46:31 +0530 > > Balbir Singh <balbir@linux.vnet.ibm.com> wrote: > > > > > Provide control using zone_reclaim() and a boot parameter. The > > > code reuses functionality from zone_reclaim() to isolate unmapped > > > pages and reclaim them as a priority, ahead of other mapped pages. > > > > > > Signed-off-by: Balbir Singh <balbir@linux.vnet.ibm.com> > > > --- > > > include/linux/swap.h | 5 ++- > > > mm/page_alloc.c | 7 +++-- > > > mm/vmscan.c | 72 +++++++++++++++++++++++++++++++++++++++++++++++++- > > > 3 files changed, 79 insertions(+), 5 deletions(-) > > > > > > diff --git a/include/linux/swap.h b/include/linux/swap.h > > > index eba53e7..78b0830 100644 > > > --- a/include/linux/swap.h > > > +++ b/include/linux/swap.h > > > @@ -252,11 +252,12 @@ extern int vm_swappiness; > > > extern int remove_mapping(struct address_space *mapping, struct page *page); > > > extern long vm_total_pages; > > > > > > -#ifdef CONFIG_NUMA > > > -extern int zone_reclaim_mode; > > > extern int sysctl_min_unmapped_ratio; > > > extern int sysctl_min_slab_ratio; > > > > This change will need to be moved into the first patch. > > > > OK, will do, thanks for pointing it out > > > > extern int zone_reclaim(struct zone *, gfp_t, unsigned int); > > > +extern bool should_balance_unmapped_pages(struct zone *zone); > > > +#ifdef CONFIG_NUMA > > > +extern int zone_reclaim_mode; > > > #else > > > #define zone_reclaim_mode 0 > > > static inline int zone_reclaim(struct zone *z, gfp_t mask, unsigned int order) > > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > > > index 62b7280..4228da3 100644 > > > --- a/mm/page_alloc.c > > > +++ b/mm/page_alloc.c > > > @@ -1662,6 +1662,9 @@ zonelist_scan: > > > unsigned long mark; > > > int ret; > > > > > > + if (should_balance_unmapped_pages(zone)) > > > + wakeup_kswapd(zone, order); > > > > gack, this is on the page allocator fastpath, isn't it? So > > 99.99999999% of the world's machines end up doing a pointless call to a > > pointless function which pointlessly tests a pointless global and > > pointlessly returns? All because of some whacky KSM thing? > > > > The speed and space overhead of this code should be *zero* if > > !CONFIG_UNMAPPED_PAGECACHE_CONTROL and should be minimal if > > CONFIG_UNMAPPED_PAGECACHE_CONTROL=y. The way to do the latter is to > > inline the test of unmapped_page_control into callers and only if it is > > true (and use unlikely(), please) do we call into the KSM gunk. > > > > Will do, should_balance_unmapped_pages() will be a made a no-op in the > absence of CONFIG_UNMAPPED_PAGECACHE_CONTROL > > > > --- a/mm/vmscan.c > > > +++ b/mm/vmscan.c > > > @@ -145,6 +145,21 @@ static DECLARE_RWSEM(shrinker_rwsem); > > > #define scanning_global_lru(sc) (1) > > > #endif > > > > > > +static unsigned long balance_unmapped_pages(int priority, struct zone *zone, > > > + struct scan_control *sc); > > > +static int unmapped_page_control __read_mostly; > > > + > > > +static int __init unmapped_page_control_parm(char *str) > > > +{ > > > + unmapped_page_control = 1; > > > + /* > > > + * XXX: Should we tweak swappiness here? > > > + */ > > > + return 1; > > > +} > > > +__setup("unmapped_page_control", unmapped_page_control_parm); > > > > aw c'mon guys, everybody knows that when you add a kernel parameter you > > document it in Documentation/kernel-parameters.txt. > > Will do - feeling silly on missing it out, that is where reviews help. > > > > > > static struct zone_reclaim_stat *get_reclaim_stat(struct zone *zone, > > > struct scan_control *sc) > > > { > > > @@ -2223,6 +2238,12 @@ loop_again: > > > shrink_active_list(SWAP_CLUSTER_MAX, zone, > > > &sc, priority, 0); > > > > > > + /* > > > + * We do unmapped page balancing once here and once > > > + * below, so that we don't lose out > > > + */ > > > + balance_unmapped_pages(priority, zone, &sc); > > > + > > > if (!zone_watermark_ok_safe(zone, order, > > > high_wmark_pages(zone), 0, 0)) { > > > end_zone = i; > > > @@ -2258,6 +2279,11 @@ loop_again: > > > continue; > > > > > > sc.nr_scanned = 0; > > > + /* > > > + * Balance unmapped pages upfront, this should be > > > + * really cheap > > > + */ > > > + balance_unmapped_pages(priority, zone, &sc); > > > > More unjustifiable overhead on a commonly-executed codepath. > > > > Will refactor with a CONFIG suggested above. > > > > /* > > > * Call soft limit reclaim before calling shrink_zone. > > > @@ -2491,7 +2517,8 @@ void wakeup_kswapd(struct zone *zone, int order) > > > pgdat->kswapd_max_order = order; > > > if (!waitqueue_active(&pgdat->kswapd_wait)) > > > return; > > > - if (zone_watermark_ok_safe(zone, order, low_wmark_pages(zone), 0, 0)) > > > + if (zone_watermark_ok_safe(zone, order, low_wmark_pages(zone), 0, 0) && > > > + !should_balance_unmapped_pages(zone)) > > > return; > > > > > > trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order); > > > @@ -2740,6 +2767,49 @@ zone_reclaim_unmapped_pages(struct zone *zone, struct scan_control *sc, > > > } > > > > > > /* > > > + * Routine to balance unmapped pages, inspired from the code under > > > + * CONFIG_NUMA that does unmapped page and slab page control by keeping > > > + * min_unmapped_pages in the zone. We currently reclaim just unmapped > > > + * pages, slab control will come in soon, at which point this routine > > > + * should be called balance cached pages > > > + */ > > > > The problem I have with this comment is that it uses the term "balance" > > without ever defining it. Plus "balance" is already a term which is used > > in memory reclaim. > > > > So if you can think up a unique noun then that's good but whether or > > not that is done, please describe with great care what that term > > actually means in this context. > > I used balance as a not a 1:1 balance, but to balance the proportion > of unmapped page cache based on a sysctl/tunable. > > > > > > +static unsigned long balance_unmapped_pages(int priority, struct zone *zone, > > > + struct scan_control *sc) > > > +{ > > > + if (unmapped_page_control && > > > + (zone_unmapped_file_pages(zone) > zone->min_unmapped_pages)) { > > > + struct scan_control nsc; > > > + unsigned long nr_pages; > > > + > > > + nsc = *sc; > > > + > > > + nsc.swappiness = 0; > > > + nsc.may_writepage = 0; > > > + nsc.may_unmap = 0; > > > + nsc.nr_reclaimed = 0; > > > > Doing a clone-and-own of a scan_control is novel. What's going on here? > > This code overwrites the swappiness, may_* and nr_reclaimed for > correct stats. The idea is to vary the reclaim behaviour/bias it. > > > > > > + nr_pages = zone_unmapped_file_pages(zone) - > > > + zone->min_unmapped_pages; > > > + /* Magically try to reclaim eighth the unmapped cache pages */ > > > + nr_pages >>= 3; > > > + > > > + zone_reclaim_unmapped_pages(zone, &nsc, nr_pages); > > > + return nsc.nr_reclaimed; > > > + } > > > + return 0; > > > +} > > > + > > > +#define UNMAPPED_PAGE_RATIO 16 > > > > Well. Giving 16 a name didn't really clarify anything. Attentive > > readers will want to know what this does, why 16 was chosen and what > > the effects of changing it will be. > > Sorry, I documented that in the changelog of the first patchset. I'll > document it here as well. The reason for choosing 16 is based on > heuristics and test, the tradeoff being overenthusiastic reclaim > versus size of cache/performance. > > > > > > +bool should_balance_unmapped_pages(struct zone *zone) > > > +{ > > > + if (unmapped_page_control && > > > + (zone_unmapped_file_pages(zone) > > > > + UNMAPPED_PAGE_RATIO * zone->min_unmapped_pages)) > > > + return true; > > > + return false; > > > +} > > > > > > > Reviewed-by: Christoph Lameter <cl@linux.com> > > > > So you're OK with shoving all this flotsam into 100,000,000 cellphones? > > This was a pretty outrageous patchset! > > I'll do a better one, BTW, a lot of embedded folks are interested in > page cache control outside of cgroup behaviour. > > Thanks for the detailed review! >
My local MTA failed to deliver the message, trying again. -- Three Cheers, Balbir --
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH 0/3] Series short description
, Balbir Singh
, (Tue Nov 30, 3:14 am)
[PATCH 1/3] Move zone_reclaim() outside of CONFIG_NUMA
, Balbir Singh
, (Tue Nov 30, 3:15 am)
[PATCH 2/3] Refactor zone_reclaim
, Balbir Singh
, (Tue Nov 30, 3:15 am)
[PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Tue Nov 30, 3:16 am)
Re: [PATCH 1/3] Move zone_reclaim() outside of CONFIG_NUMA
, Christoph Lameter
, (Tue Nov 30, 12:18 pm)
Re: [PATCH 2/3] Refactor zone_reclaim
, Christoph Lameter
, (Tue Nov 30, 12:19 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Christoph Lameter
, (Tue Nov 30, 12:21 pm)
Re: [PATCH 1/3] Move zone_reclaim() outside of CONFIG_NUMA
, Andrew Morton
, (Tue Nov 30, 3:23 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Andrew Morton
, (Tue Nov 30, 3:25 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, KOSAKI Motohiro
, (Tue Nov 30, 5:14 pm)
Re: [PATCH 2/3] Refactor zone_reclaim
, KAMEZAWA Hiroyuki
, (Tue Nov 30, 6:23 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, KAMEZAWA Hiroyuki
, (Tue Nov 30, 6:32 pm)
Re: [PATCH 1/3] Move zone_reclaim() outside of CONFIG_NUMA
, Balbir Singh
, (Tue Nov 30, 10:21 pm)
Re: [PATCH 2/3] Refactor zone_reclaim
, Balbir Singh
, (Tue Nov 30, 10:22 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Tue Nov 30, 10:22 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Tue Nov 30, 10:22 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Tue Nov 30, 10:22 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, KAMEZAWA Hiroyuki
, (Tue Nov 30, 10:35 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Tue Nov 30, 11:40 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, KAMEZAWA Hiroyuki
, (Wed Dec 1, 12:24 am)
Re: [PATCH 2/3] Refactor zone_reclaim
, Minchan Kim
, (Wed Dec 1, 12:54 am)
Re: [PATCH 3/3] Provide control over unmapped pages
, Minchan Kim
, (Wed Dec 1, 1:18 am)
Re: [PATCH 2/3] Refactor zone_reclaim
, KAMEZAWA Hiroyuki
, (Wed Dec 1, 1:59 am)
Re: [PATCH 3/3] Provide control over unmapped pages
, Christoph Lameter
, (Wed Dec 1, 8:01 am)
Re: [PATCH 3/3] Provide control over unmapped pages
, KOSAKI Motohiro
, (Wed Dec 1, 6:22 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, KAMEZAWA Hiroyuki
, (Wed Dec 1, 7:50 pm)
Re: [PATCH 3/3] Provide control over unmapped pages
, Balbir Singh
, (Thu Dec 2, 12:01 am)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Mel Gorman
Re: [PATCH 1/4] vmstat: remove zone->lock from walk_zones_in_node
Guenter Roeck
Re: [lm-sensors] Location for thermal drivers
David Woodhouse
Re: RFC: Moving firmware blobs out of the kernel.
Siddha, Suresh B
Re: [PATCH 2.6.21 review I] [11/25] x86: default to physical mode on hotplug CPU k...
Peter Zijlstra
Re: [patch 4/6] mm: merge populate and nopage into fault (fixes nonlinear)
git-commits-head
:
Linux Kernel Mailing List
[MIPS] Fix potential latency problem due to non-atomic cpu_wait.
Linux Kernel Mailing List
USB: rename USB_SPEED_VARIABLE to USB_SPEED_WIRELESS
Linux Kernel Mailing List
lib/vsprintf.c: fix bug omitting minus sign of numbers (module_param)
Linux Kernel Mailing List
[Bluetooth] Initiate authentication during connection establishment
Linux Kernel Mailing List
[POWERPC] 4xx: Add ppc40x_defconfig
linux-netdev
:
MERCEDES
Your mail id has won 950,000.00 in the MERCEDES Benz Online Promo.for claims send:
David Miller
Re: [PATCH] xen/netfront: do not mark packets of length < MSS as GSO
David Miller
Re: skb_segment() questions
Shan Wei
[RFC PATCH net-next 2/5]IPv6:netfilter: Send an ICMPv6 "Fragment Reassembly Timeou...
Stanislaw Gruszka
[PATCH 1/4] bnx2x: use smp_mb() to keep ordering of read write operations
git
:
Nicolas Sebrecht
git-svn died of signal 11 (was "3 failures on test t9100 (svn)")
Junio C Hamano
Re: [PATCH 2/2] Add url.<base>.pushInsteadOf: URL rewriting for push only
Martin Langhoff
Re: [PATCH] GIT commit statistics.
Alexandre Julliard
[PATCH] gitweb: Put back shortlog instead of graphiclog in the project list.
Josh Triplett
[PATCH 2/2] Add url.<base>.pushInsteadOf: URL rewriting for push only
openbsd-misc
:
Taisto Qvist XX
Re: AMD GEODE LX-800 just works with kernel from install42.iso and kernelpanics wi...
Nico Meijer
Re: gOS Develop Kit with VIA pc-1 Processor Platform VIA C7-D
Andreas Bihlmaier
Re: jetway board sensors (Fintek F71805F)
admin
Drive a 2009 car from R799p/m
Antti Harri
Re: how to create a sha256 hash
Colocation donated by:
Syndicate