Re: [PATCH v2 2/5] sched: Teach scheduler to understand ONRQ_MIGRATING state

From: Kirill Tkhai
Date: Mon Jul 28 2014 - 05:05:57 EST


Ð ÐÐ, 28/07/2014 Ð 10:01 +0200, Peter Zijlstra ÐÐÑÐÑ:
> On Sat, Jul 26, 2014 at 06:59:21PM +0400, Kirill Tkhai wrote:
>
> > The profit is that double_rq_lock() is not needed now,
> > and this may reduce the latencies in some situations.
>
> > We add a loop in the beginning of set_cpus_allowed_ptr.
> > It's like a handmade spinlock, which is similar
> > to situation we had before. We used to spin on rq->lock,
> > now we spin on "again:" label. Of course, it's worse
> > than arch-dependent spinlock, but we have to have it
> > here.
>
> > @@ -4623,8 +4639,16 @@ int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
> > struct rq *rq;
> > unsigned int dest_cpu;
> > int ret = 0;
> > +again:
> > + while (unlikely(task_migrating(p)))
> > + cpu_relax();
> >
> > rq = task_rq_lock(p, &flags);
> > + /* Check again with rq locked */
> > + if (unlikely(task_migrating(p))) {
> > + task_rq_unlock(rq, p, &flags);
> > + goto again;
> > + }
> >
> > if (cpumask_equal(&p->cpus_allowed, new_mask))
> > goto out;
>
> So I really dislike that, esp since you're now talking of adding more of
> this goo all over the place.
>
> I'll ask again, why isn't this in task_rq_lock() and co?

I thought, this may give a little profit in cases of priority inheritance etc.
But since this is spreading throughout the scheduler, I'm agree with you.
It's better to place this in task_rq_lock() etc. This will decide all
the problems that we have discussed with Oleg.

> Also, you really need to talk the spin bounded, otherwise your two
> quoted paragraphs above are in contradiction. Now I think you can
> actually make an argument that way, so that's good.

Thanks,
Kirill

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/