* [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
@ 2011-09-24 20:58 Dan Magenheimer
2011-09-26 17:23 ` Konrad Rzeszutek Wilk
0 siblings, 1 reply; 3+ messages in thread
From: Dan Magenheimer @ 2011-09-24 20:58 UTC (permalink / raw)
To: Konrad Wilk, linux-kernel; +Cc: xen-devel, David Vrabel, Jeremy Fitzhardinge
[PATCH] xen: Fix selfballooning and ensure it doesn't go too far
The balloon driver's "current_pages" is very different from
totalram_pages. Self-ballooning needs to be driven by
the latter. Also, Committed_AS doesn't account for pages
used by the kernel so enforce a floor for when there
are little or no user-space threads using memory.
Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>
diff --git a/drivers/xen/xen-selfballoon.c b/drivers/xen/xen-selfballoon.c
index 6ea852e..e3e48f1 100644
--- a/drivers/xen/xen-selfballoon.c
+++ b/drivers/xen/xen-selfballoon.c
@@ -195,14 +195,13 @@ __setup("selfballooning", xen_selfballooning_setup);
*/
static void selfballoon_process(struct work_struct *work)
{
- unsigned long cur_pages, goal_pages, tgt_pages;
+ unsigned long cur_pages, goal_pages, tgt_pages, floor_pages;
bool reset_timer = false;
if (xen_selfballooning_enabled) {
- cur_pages = balloon_stats.current_pages;
+ cur_pages = totalram_pages;
tgt_pages = cur_pages; /* default is no change */
- goal_pages = percpu_counter_read_positive(&vm_committed_as) +
- balloon_stats.current_pages - totalram_pages;
+ goal_pages = percpu_counter_read_positive(&vm_committed_as);
#ifdef CONFIG_FRONTSWAP
/* allow space for frontswap pages to be repatriated */
if (frontswap_selfshrinking && frontswap_enabled)
@@ -217,7 +216,13 @@ static void selfballoon_process(struct work_struct *work)
((goal_pages - cur_pages) /
selfballoon_uphysteresis);
/* else if cur_pages == goal_pages, no change */
- balloon_set_new_target(tgt_pages);
+ floor_pages = totalreserve_pages +
+ (roundup_pow_of_two(max_pfn) >> 5);
+ /* don't balloon too far, lest OOMs occur... */
+ if (tgt_pages < floor_pages)
+ tgt_pages = floor_pages;
+ balloon_set_new_target(tgt_pages +
+ balloon_stats.current_pages - totalram_pages);
reset_timer = true;
}
#ifdef CONFIG_FRONTSWAP
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
2011-09-24 20:58 [PATCH] xen: Fix selfballooning and ensure it doesn't go too far Dan Magenheimer
@ 2011-09-26 17:23 ` Konrad Rzeszutek Wilk
2011-09-26 17:24 ` Dan Magenheimer
0 siblings, 1 reply; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2011-09-26 17:23 UTC (permalink / raw)
To: Dan Magenheimer
Cc: linux-kernel, xen-devel, David Vrabel, Jeremy Fitzhardinge
On Sat, Sep 24, 2011 at 01:58:08PM -0700, Dan Magenheimer wrote:
> [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
>
> The balloon driver's "current_pages" is very different from
> totalram_pages. Self-ballooning needs to be driven by
> the latter. Also, Committed_AS doesn't account for pages
> used by the kernel so enforce a floor for when there
> are little or no user-space threads using memory.
Hey Dan,
..
> + floor_pages = totalreserve_pages +
> + (roundup_pow_of_two(max_pfn) >> 5);
Would it make sense to make the shift be a runtime argument
in case some users report problems with that calculation?
> + /* don't balloon too far, lest OOMs occur... */
> + if (tgt_pages < floor_pages)
> + tgt_pages = floor_pages;
> + balloon_set_new_target(tgt_pages +
> + balloon_stats.current_pages - totalram_pages);
> reset_timer = true;
> }
> #ifdef CONFIG_FRONTSWAP
Otherwise it looks OK to me. Would you like me to queue it up
for 3.1-rc7?
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
2011-09-26 17:23 ` Konrad Rzeszutek Wilk
@ 2011-09-26 17:24 ` Dan Magenheimer
0 siblings, 0 replies; 3+ messages in thread
From: Dan Magenheimer @ 2011-09-26 17:24 UTC (permalink / raw)
To: Konrad Wilk; +Cc: linux-kernel, xen-devel, David Vrabel, Jeremy Fitzhardinge
> From: Konrad Rzeszutek Wilk
> Sent: Monday, September 26, 2011 11:23 AM
> To: Dan Magenheimer
> Cc: linux-kernel@vger.kernel.org; xen-devel@lists.xensource.com; David Vrabel; Jeremy Fitzhardinge
> Subject: Re: [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
>
> On Sat, Sep 24, 2011 at 01:58:08PM -0700, Dan Magenheimer wrote:
> > [PATCH] xen: Fix selfballooning and ensure it doesn't go too far
> >
> > The balloon driver's "current_pages" is very different from
> > totalram_pages. Self-ballooning needs to be driven by
> > the latter. Also, Committed_AS doesn't account for pages
> > used by the kernel so enforce a floor for when there
> > are little or no user-space threads using memory.
>
> Hey Dan,
> ..
> > + floor_pages = totalreserve_pages +
> > + (roundup_pow_of_two(max_pfn) >> 5);
>
> Would it make sense to make the shift be a runtime argument
> in case some users report problems with that calculation?
Good idea. I'll take a look at that.
> > + /* don't balloon too far, lest OOMs occur... */
> > + if (tgt_pages < floor_pages)
> > + tgt_pages = floor_pages;
> > + balloon_set_new_target(tgt_pages +
> > + balloon_stats.current_pages - totalram_pages);
> > reset_timer = true;
> > }
> > #ifdef CONFIG_FRONTSWAP
>
> Otherwise it looks OK to me. Would you like me to queue it up
> for 3.1-rc7?
Will let you know when I have that change done/tested.
Thanks,
Dan
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-09-26 17:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-24 20:58 [PATCH] xen: Fix selfballooning and ensure it doesn't go too far Dan Magenheimer
2011-09-26 17:23 ` Konrad Rzeszutek Wilk
2011-09-26 17:24 ` Dan Magenheimer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®