From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Daniel Kiper <dkiper@net-space.pl>
Cc: jeremy@goop.org, xen-devel@lists.xensource.com,
ian.campbell@citrix.com, haicheng.li@linux.intel.com,
linux-kernel@vger.kernel.org, dan.magenheimer@oracle.com,
v.tolstov@selfip.ru, dave@linux.vnet.ibm.com, linux-mm@kvack.org,
rientjes@google.com, andi.kleen@intel.com,
akpm@linux-foundation.org, fengguang.wu@intel.com,
wdauchy@gmail.com
Subject: Re: [Xen-devel] Re: [PATCH R3 5/7] xen/balloon: Protect against CPU exhaust by event/x proces
Date: Thu, 10 Feb 2011 12:10:20 -0500 [thread overview]
Message-ID: <20110210171020.GB3993@dumpdata.com> (raw)
In-Reply-To: <20110210155142.GC12087@dumpdata.com>
On Thu, Feb 10, 2011 at 10:51:42AM -0500, Konrad Rzeszutek Wilk wrote:
> On Thu, Feb 03, 2011 at 05:28:51PM +0100, Daniel Kiper wrote:
> > Protect against CPU exhaust by event/x process during
> > errors by adding some delays in scheduling next event.
> >
> > Signed-off-by: Daniel Kiper <dkiper@net-space.pl>
> > ---
> > drivers/xen/balloon.c | 99 +++++++++++++++++++++++++++++++++++++++---------
> > 1 files changed, 80 insertions(+), 19 deletions(-)
> >
> > diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> > index 4223f64..ed103d4 100644
> > --- a/drivers/xen/balloon.c
> > +++ b/drivers/xen/balloon.c
> > @@ -66,6 +66,20 @@
> >
> > #define BALLOON_CLASS_NAME "xen_memory"
> >
> > +/*
> > + * balloon_process() state:
> > + *
> > + * BP_ERROR: error, go to sleep,
> > + * BP_DONE: done or nothing to do,
> > + * BP_HUNGRY: hungry.
> > + */
> > +
> > +enum bp_state {
> > + BP_ERROR,
>
> BP_EAGAIN?
>
> So if we fail to increase the first hour, we would keep on trying to
> increase forever (with a 32 second delay between each call). Do you
> think it makes sense (as a future patch, not tied in with this patchset)
> to printout a printk(KERN_INFO that we have been trying to increase
> for the last X hours, seconds and have not gone anywhere (and perhaps
> stop trying to allocate more memory?).
Duh, you did that in the next patch with the mh_policy.
WARNING: multiple messages have this Message-ID (diff)
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Daniel Kiper <dkiper@net-space.pl>
Cc: jeremy@goop.org, xen-devel@lists.xensource.com,
ian.campbell@citrix.com, haicheng.li@linux.intel.com,
linux-kernel@vger.kernel.org, dan.magenheimer@oracle.com,
v.tolstov@selfip.ru, dave@linux.vnet.ibm.com, linux-mm@kvack.org,
rientjes@google.com, andi.kleen@intel.com,
akpm@linux-foundation.org, fengguang.wu@intel.com,
wdauchy@gmail.com
Subject: Re: [Xen-devel] Re: [PATCH R3 5/7] xen/balloon: Protect against CPU exhaust by event/x proces
Date: Thu, 10 Feb 2011 12:10:20 -0500 [thread overview]
Message-ID: <20110210171020.GB3993@dumpdata.com> (raw)
In-Reply-To: <20110210155142.GC12087@dumpdata.com>
On Thu, Feb 10, 2011 at 10:51:42AM -0500, Konrad Rzeszutek Wilk wrote:
> On Thu, Feb 03, 2011 at 05:28:51PM +0100, Daniel Kiper wrote:
> > Protect against CPU exhaust by event/x process during
> > errors by adding some delays in scheduling next event.
> >
> > Signed-off-by: Daniel Kiper <dkiper@net-space.pl>
> > ---
> > drivers/xen/balloon.c | 99 +++++++++++++++++++++++++++++++++++++++---------
> > 1 files changed, 80 insertions(+), 19 deletions(-)
> >
> > diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
> > index 4223f64..ed103d4 100644
> > --- a/drivers/xen/balloon.c
> > +++ b/drivers/xen/balloon.c
> > @@ -66,6 +66,20 @@
> >
> > #define BALLOON_CLASS_NAME "xen_memory"
> >
> > +/*
> > + * balloon_process() state:
> > + *
> > + * BP_ERROR: error, go to sleep,
> > + * BP_DONE: done or nothing to do,
> > + * BP_HUNGRY: hungry.
> > + */
> > +
> > +enum bp_state {
> > + BP_ERROR,
>
> BP_EAGAIN?
>
> So if we fail to increase the first hour, we would keep on trying to
> increase forever (with a 32 second delay between each call). Do you
> think it makes sense (as a future patch, not tied in with this patchset)
> to printout a printk(KERN_INFO that we have been trying to increase
> for the last X hours, seconds and have not gone anywhere (and perhaps
> stop trying to allocate more memory?).
Duh, you did that in the next patch with the mh_policy.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2011-02-10 17:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-03 16:28 [PATCH R3 5/7] xen/balloon: Protect against CPU exhaust by event/x proces Daniel Kiper
2011-02-03 16:28 ` Daniel Kiper
2011-02-10 15:51 ` Konrad Rzeszutek Wilk
2011-02-10 15:51 ` Konrad Rzeszutek Wilk
2011-02-10 17:10 ` Konrad Rzeszutek Wilk [this message]
2011-02-10 17:10 ` [Xen-devel] " Konrad Rzeszutek Wilk
2011-02-12 0:50 ` Daniel Kiper
2011-02-12 0:50 ` Daniel Kiper
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110210171020.GB3993@dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=andi.kleen@intel.com \
--cc=dan.magenheimer@oracle.com \
--cc=dave@linux.vnet.ibm.com \
--cc=dkiper@net-space.pl \
--cc=fengguang.wu@intel.com \
--cc=haicheng.li@linux.intel.com \
--cc=ian.campbell@citrix.com \
--cc=jeremy@goop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=rientjes@google.com \
--cc=v.tolstov@selfip.ru \
--cc=wdauchy@gmail.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.