[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1210238538.3453.146.camel@ymzhang>
Date: Thu, 08 May 2008 17:22:18 +0800
From: "Zhang, Yanmin" <yanmin_zhang@...ux.intel.com>
To: Mike Galbraith <efault@....de>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>,
LKML <linux-kernel@...r.kernel.org>, Ingo Molnar <mingo@...e.hu>
Subject: Re: sysbench+mysql(oltp, readonly) 30% regression with 2.6.26-rc1
On Thu, 2008-05-08 at 11:15 +0200, Mike Galbraith wrote:
> On Thu, 2008-05-08 at 17:01 +0800, Zhang, Yanmin wrote:
> > On Thu, 2008-05-08 at 10:00 +0200, Mike Galbraith wrote:
>
> > > Hm. I was doing some sysbench+postgress(oltp, ro) testing on my little
> > > Q6600 box this morning, and saw a different picture.
>
> > How many cpu are in the Q6600?
>
> 1.
> > 3) 2.6.26-rc1+weight
> > Number of threads: 16
> > read/write requests: 3219076 (26824.22 per sec.)
> >
> > I'm not sure if more cpu could introduce more contention in this test.
>
> -rc1. Do you have the fix below applied?
No.
>
> commit a992241de614dd2b7c97a9ba64e28c0e563f19bf
> Author: Peter Zijlstra <a.p.zijlstra@...llo.nl>
> Date: Mon May 5 23:56:17 2008 +0200
>
> sched: fix normalized sleeper
>
> Normalized sleeper uses calc_delta*() which requires that the rq load is
> already updated, so move account_entity_enqueue() before place_entity()
>
> Tested-by: Frans Pop <elendil@...net.nl>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@...llo.nl>
> Signed-off-by: Ingo Molnar <mingo@...e.hu>
>
> diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c
> index 89fa32b..1295ddc 100644
> --- a/kernel/sched_fair.c
> +++ b/kernel/sched_fair.c
> @@ -682,6 +682,7 @@ enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
> * Update run-time statistics of the 'current'.
> */
> update_curr(cfs_rq);
> + account_entity_enqueue(cfs_rq, se);
>
> if (wakeup) {
> place_entity(cfs_rq, se, 0);
> @@ -692,7 +693,6 @@ enqueue_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int wakeup)
> check_spread(cfs_rq, se);
> if (se != cfs_rq->curr)
> __enqueue_entity(cfs_rq, se);
> - account_entity_enqueue(cfs_rq, se);
> }
>
> static void update_avg(u64 *avg, u64 sample)
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists