linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Cong Wang <xiyou.wangcong@gmail.com>
To: Ben Segall <bsegall@google.com>
Cc: Xunlei Pang <xlpang@linux.alibaba.com>,
	LKML <linux-kernel@vger.kernel.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [PATCH] sched/fair: sync expires_seq in distribute_cfs_runtime()
Date: Tue, 31 Jul 2018 13:55:23 -0700	[thread overview]
Message-ID: <CAM_iQpXGCqo9AAp2kpSKk9sHx0ZRK7JU_c07sWh4vR9kFQ+LxA@mail.gmail.com> (raw)
In-Reply-To: <xm26ftzz8h0r.fsf@bsegall-linux.svl.corp.google.com>

On Tue, Jul 31, 2018 at 10:13 AM <bsegall@google.com> wrote:
>
> Xunlei Pang <xlpang@linux.alibaba.com> writes:
>
> > On 7/31/18 1:55 AM, Cong Wang wrote:
> >> On Sun, Jul 29, 2018 at 10:29 PM Xunlei Pang <xlpang@linux.alibaba.com> wrote:
> >>>
> >>> Hi Cong,
> >>>
> >>> On 7/28/18 8:24 AM, Cong Wang wrote:
> >>>> Each time we sync cfs_rq->runtime_expires with cfs_b->runtime_expires,
> >>>> we should sync its ->expires_seq too. However it is missing
> >>>> for distribute_cfs_runtime(), especially the slack timer call path.
> >>>
> >>> I don't think it's a problem, as expires_seq will get synced in
> >>> assign_cfs_rq_runtime().
> >>
> >> Sure, but there is a small window during which they are not synced.
> >> Why do you want to wait until the next assign_cfs_rq_runtime() when
> >> you already know runtime_expires is synced?
> >>
> >> Also, expire_cfs_rq_runtime() is called before assign_cfs_rq_runtime()
> >> inside __account_cfs_rq_runtime(), which means the check of
> >> cfs_rq->expires_seq is not accurate for unthrottling case if the clock
> >> drift happens soon enough?
> >>
> >
> > expire_cfs_rq_runtime():
> >     if (cfs_rq->expires_seq == cfs_b->expires_seq) {
> >         /* extend local deadline, drift is bounded above by 2 ticks */
> >         cfs_rq->runtime_expires += TICK_NSEC;
> >     } else {
> >         /* global deadline is ahead, expiration has passed */
> >         cfs_rq->runtime_remaining = 0;
> >     }
> >
> > So if clock drift happens soon, then expires_seq decides the correct
> > thing we should do: if cfs_b->expires_seq advanced, then clear the stale
> > cfs_rq->runtime_remaining from the slack timer of the past period, then
> > assign_cfs_rq_runtime() will refresh them afterwards, otherwise it is a
> > real clock drift. I am still not getting where the race is?

But expires_seq is supposed to be the same here, after
distribute_cfs_runtime(), therefore runtime_remaining is not supposed
to be cleared.

Which part do I misunderstand? expires_seq should not be same here?
Or you are saying a wrongly clear of runtime_remaning is fine?


>
> Nothing /important/ goes wrong because distribute_cfs_runtime only fills
> runtime_remaining up to 1, not a real amount.

No, runtime_remaining is updated right before expire_cfs_rq_runtime():

static void __account_cfs_rq_runtime(struct cfs_rq *cfs_rq, u64 delta_exec)
{
        /* dock delta_exec before expiring quota (as it could span periods) */
        cfs_rq->runtime_remaining -= delta_exec;
        expire_cfs_rq_runtime(cfs_rq);

so almost certainly it can't be 1.

Which means the following check could be passed:

 4655         if (cfs_rq->runtime_remaining < 0)
 4656                 return;

therefore we are reaching the clock drift logic code inside
expire_cfs_rq_runtime()
where expires_seq is supposed to be same as they should be sync'ed.
Therefore without patch, we wrongly clear the runtime_remainng?

Thanks.

  reply	other threads:[~2018-07-31 20:55 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-28  0:24 [PATCH] sched/fair: sync expires_seq in distribute_cfs_runtime() Cong Wang
2018-07-30  5:28 ` Xunlei Pang
2018-07-30 17:32   ` bsegall
2018-07-30 17:55   ` Cong Wang
2018-07-31 14:58     ` Xunlei Pang
2018-07-31 17:13       ` bsegall
2018-07-31 20:55         ` Cong Wang [this message]
2018-08-01  3:24           ` Xunlei Pang
2018-08-03 18:57             ` Cong Wang
2018-08-01 17:17           ` bsegall
2018-08-03 21:56             ` Cong Wang

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=CAM_iQpXGCqo9AAp2kpSKk9sHx0ZRK7JU_c07sWh4vR9kFQ+LxA@mail.gmail.com \
    --to=xiyou.wangcong@gmail.com \
    --cc=bsegall@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=xlpang@linux.alibaba.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;
as well as URLs for NNTP newsgroup(s).