From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juergen Gross Subject: Re: [PATCH 9/9] xen: sched: per-core runqueues as default in credit2 Date: Thu, 1 Oct 2015 07:48:57 +0200 Message-ID: <560CC949.7020108@suse.com> References: <20150929164726.17589.96920.stgit@Solace.station> <20150929165632.17589.50844.stgit@Solace.station> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZhWjj-00023n-Ru for xen-devel@lists.xenproject.org; Thu, 01 Oct 2015 05:48:59 +0000 In-Reply-To: <20150929165632.17589.50844.stgit@Solace.station> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Dario Faggioli , xen-devel@lists.xenproject.org Cc: George Dunlap , Uma Sharma List-Id: xen-devel@lists.xenproject.org On 09/29/2015 06:56 PM, Dario Faggioli wrote: > Experiments have shown that arranging the scheduing > runqueues on a per-core basis yields better results, > in most cases. > > Such evaluation has been done, for the first time, > by Uma Sharma, during her participation to OPW. Some > of the results she got are summarized here: > > http://lists.xen.org/archives/html/xen-devel/2015-03/msg01499.html > > Signed-off-by: Dario Faggioli > Signed-off-by: Uma Sharma Reviewed-by: Juergen Gross > --- > Cc: George Dunlap > Cc: Uma Sharma > --- > docs/misc/xen-command-line.markdown | 2 +- > xen/common/sched_credit2.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/docs/misc/xen-command-line.markdown b/docs/misc/xen-command-line.markdown > index 71315b8..8fc9cd7 100644 > --- a/docs/misc/xen-command-line.markdown > +++ b/docs/misc/xen-command-line.markdown > @@ -470,7 +470,7 @@ combination with the `low_crashinfo` command line option. > ### credit2\_runqueue > > `= socket | core` > > -> Default: `socket` > +> Default: `core` > > Specify how host CPUs are arranged in runqueues. Runqueues are kept > balanced with respect to the load generated by the vCPUs running on > diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c > index 025626f..0e9e722 100644 > --- a/xen/common/sched_credit2.c > +++ b/xen/common/sched_credit2.c > @@ -211,7 +211,7 @@ integer_param("credit2_balance_over", opt_overload_balance_tolerance); > */ > #define OPT_RUNQUEUE_CORE 1 > #define OPT_RUNQUEUE_SOCKET 2 > -static int __read_mostly opt_runqueue = OPT_RUNQUEUE_SOCKET; > +static int __read_mostly opt_runqueue = OPT_RUNQUEUE_CORE; > > static void parse_credit2_runqueue(const char *s) > { > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > http://lists.xen.org/xen-devel >