From: Peter Zijlstra <peterz@infradead.org>
To: Byungchul Park <byungchul.park@lge.com>
Cc: mingo@kernel.org, linux-kernel@vger.kernel.org,
yuyang.du@intel.com, pjt@google.com, efault@gmx.de,
tglx@linutronix.de
Subject: Re: [PATCH v4 3/3] sched: optimize migration by forcing rmb() and updating to be called once
Date: Tue, 17 Nov 2015 12:21:49 +0100 [thread overview]
Message-ID: <20151117112149.GV3816@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <20151117004416.GC18234@byungchulpark-X58A-UD3R>
On Tue, Nov 17, 2015 at 09:44:16AM +0900, Byungchul Park wrote:
> > So currently, set_task_cpu() is serialized by:
> >
> > - p->pi_lock; on wakeup
> > - rq->lock; otherwise
> >
> > (see the #ifdef CONFIG_LOCKDEP comment in set_task_cpu())
>
> I already read the comment.. Then do you mean the comment above
> migrate_task_rq_fair() is wrong and should be fixed?
Looks that way, I'm not sure we always hold pi_lock there. But I'm low
on sleep, so I could have overlooked something.
See for example move_queued_task(), we call set_task_cpu() with rq->lock
held, but no pi_lock.
> I thought the comment above migrate_task_rq_fair() is correct rather
> than CONFIG_LOCKDEP comment in set_task_cpu(), when I read it. I think
> these two comments are conflict each other a little bit, so one of
> those should be fixed.
Agreed.
> * the comment above migrate_task_rq_fair() describes it like,
> Caller SHOULD HOLD (&p->pi_lock)
>
> * the CONFIG_LOCKDEP comment in set_task_cpu() describes it like,
> Caller SHOULD HOLD (&p->pi_lock || &rq->lock)
Indeed.
> >
> > This means that sched_class::migrate_task() cannot indeed rely on
> > rq->lock for full serialization, however it still means that
> > task_rq_lock() will fully serialize against the thing.
>
> Yes I also think this is true.
>
> >
> > By changing this, it no longer will.
>
> ???
I meant, if you call __set_task_cpu() before
sched_class::migrate_task_rq(), in that case task_rq_lock() will no
longer fully serialize against set_task_cpu().
Because once you've called __set_task_cpu(), task_rq_lock() will acquire
the _other_ rq->lock. And we cannot rely on our rq->lock to serialize
things.
next prev parent reply other threads:[~2015-11-17 11:21 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-23 16:16 [PATCH v4 0/3] sched: account fair load avg consistently byungchul.park
2015-10-23 16:16 ` [PATCH v4 1/3] sched/fair: make it possible to " byungchul.park
2015-12-04 11:54 ` [tip:sched/core] sched/fair: Make " tip-bot for Byungchul Park
2015-10-23 16:16 ` [PATCH v4 2/3] sched/fair: split the remove_entity_load_avg() into two functions byungchul.park
2015-10-23 16:16 ` [PATCH v4 3/3] sched: optimize migration by forcing rmb() and updating to be called once byungchul.park
2015-11-09 13:29 ` Peter Zijlstra
2015-11-10 1:09 ` Byungchul Park
2015-11-10 12:16 ` Peter Zijlstra
2015-11-10 23:51 ` Byungchul Park
2015-11-11 10:15 ` Byungchul Park
2015-11-16 12:53 ` Peter Zijlstra
2015-11-17 0:44 ` Byungchul Park
2015-11-17 11:21 ` Peter Zijlstra [this message]
2015-11-17 23:37 ` Byungchul Park
2015-11-17 23:55 ` Peter Zijlstra
2015-11-18 0:02 ` Byungchul Park
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=20151117112149.GV3816@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=byungchul.park@lge.com \
--cc=efault@gmx.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pjt@google.com \
--cc=tglx@linutronix.de \
--cc=yuyang.du@intel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox