From: Peter Zijlstra <peterz@infradead.org>
To: Changwoo Min <changwoo@igalia.com>
Cc: tj@kernel.org, void@manifault.com, mingo@redhat.com,
kernel-dev@igalia.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/5] sched_ext: Manage the validity of scx_rq_clock
Date: Tue, 19 Nov 2024 09:17:40 +0100 [thread overview]
Message-ID: <20241119081740.GB11903@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <9a2bfe0d-3a1d-4917-bf10-33259c79a3bb@igalia.com>
On Tue, Nov 19, 2024 at 10:19:44AM +0900, Changwoo Min wrote:
> > What's the purpose of that flag? Why can't BPF use sched_clock_local()
> > and call it a day?
>
> Let's suppose the following timeline:
>
> T1. rq_lock(rq)
> T2. update_rq_clock(rq)
> T3. a sched_ext BPF operation
> T4. rq_unlock(rq)
> T5. a sched_ext BPF operation
> T6. rq_lock(rq)
> T7. update_rq_clock(rq)
>
> For [T2, T4), we consider that rq clock is valid
> (SCX_RQ_CLK_UPDATED is set), so scx_bpf_clock_get_ns calls during
> [T2, T4) (including T3) will return the rq clock updated at T2.
> Let's think about what we should do for the duration [T4, T7)
> when a BPF scheduler can still call scx_bpf_clock_get_ns (T5).
> During that duration, we consider the rq clock is invalid
> (SCX_RQ_CLK_UPDATED is unset). So when calling
> scx_bpf_clock_get_ns at T5, we call sched_clock() to get the
> fresh clock.
>
> I think the term `UPDATED` was misleading. I will change it to
> `VALID` in the next version.
So the reason rq->clock is tied to rq->lock, is to ensure a scheduling
operation happens at a single point in time.
Suppose re-nice, you dequeue the task, you modify its properties
(weight) and then you requeue it. If time were passing 'normally' the
task would loose the time between dequeue and enqueue -- this is not
right.
The only obvious exception here is a migration.
So the question then becomes, what is T5 doing and is it 'right' for it
to get a fresh clock value.
Please give an example of T5 -- I really don't know this BPF crap much
-- and reason about how the clock should behave.
next prev parent reply other threads:[~2024-11-19 8:17 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-16 16:01 [PATCH 0/5] sched_ext: Support high-performance monotonically non-decreasing clock Changwoo Min
2024-11-16 16:01 ` [PATCH 1/5] sched_ext: Implement scx_rq_clock_update/stale() Changwoo Min
2024-11-16 16:01 ` [PATCH 2/5] sched_ext: Manage the validity of scx_rq_clock Changwoo Min
2024-11-16 19:32 ` Peter Zijlstra
2024-11-17 15:46 ` Changwoo Min
2024-11-18 9:41 ` Peter Zijlstra
2024-11-19 1:19 ` Changwoo Min
2024-11-19 8:17 ` Peter Zijlstra [this message]
2024-11-19 15:57 ` Changwoo Min
2024-11-27 0:41 ` Changwoo Min
2024-11-16 16:01 ` [PATCH 3/5] sched_ext: Implement scx_bpf_clock_get_ns() Changwoo Min
2024-11-16 19:31 ` Peter Zijlstra
2024-11-17 15:48 ` Changwoo Min
2024-11-18 9:44 ` Peter Zijlstra
2024-11-16 16:01 ` [PATCH 4/5] sched_ext: Add scx_bpf_clock_get_ns() for BPF scheduler Changwoo Min
2024-11-16 16:01 ` [PATCH 5/5] sched_ext: Replace bpf_ktime_get_ns() to scx_bpf_clock_get_ns() Changwoo Min
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=20241119081740.GB11903@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=changwoo@igalia.com \
--cc=kernel-dev@igalia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=tj@kernel.org \
--cc=void@manifault.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
all inboxes | Powered by JetHome®