From: chris hyser <chris.hyser@oracle.com>
To: Parth Shah <parth@linux.ibm.com>, Qais Yousef <qais.yousef@arm.com>
Cc: vincent.guittot@linaro.org, patrick.bellasi@matbug.net,
valentin.schneider@arm.com, dhaval.giani@oracle.com,
dietmar.eggemann@arm.com, linux-kernel@vger.kernel.org,
peterz@infradead.org, mingo@redhat.com, pavel@ucw.cz,
qperret@qperret.net, David.Laight@ACULAB.COM, pjt@google.com,
tj@kernel.org
Subject: Re: [PATCH v3 0/3] Introduce per-task latency_nice for scheduler hints
Date: Fri, 21 Feb 2020 11:51:07 -0500 [thread overview]
Message-ID: <2983937b-d2de-d1ab-e387-271c7caf2a81@oracle.com> (raw)
In-Reply-To: <bf063130-cd08-2d7b-40eb-84575b4ba271@linux.ibm.com>
On 2/21/20 5:01 AM, Parth Shah wrote:
>
>
> On 2/21/20 2:59 PM, Qais Yousef wrote:
>> On 02/20/20 11:34, chris hyser wrote:
>>>>> Whether called a hint or not, it is a trade-off to reduce latency of select
>>>>> tasks at the expense of the throughput of the other tasks in the the system.
>>>>
>>>> Does it actually affect the throughput of the other tasks? I thought this will
>>>> allow the scheduler to reduce latencies, for instance, when selecting which cpu
>>>> it should land on. I can't see how this could hurt other tasks.
>>>
>>> This is why it is hard to argue about pure abstractions. The primary idea
>>> mentioned so far for how these latencies are reduced is by short cutting the
>>> brute-force search for something idle. If you don't find an idle cpu because
>>> you didn't spend the time to look, then you pre-empted a task, possibly with
>>> a large nice warm cache footprint that was cranking away on throughput. It
>>> is ultimately going to be the usual latency vs throughput trade off. If
>>> latency reduction were "free" we wouldn't need a per task attribute. We
>>> would just do the reduction for all tasks, everywhere, all the time.
>>
>> This could still happen without the latency nice bias. I'm not sure if this
>> falls under DoS; maybe if you end up spawning a lot of task with high latency
>> nice value, then you might end up cramming a lot of tasks on a small subset of
>> CPUs. But then, shouldn't the logic that uses latency_nice try to handle this
>> case anyway since it could be legit?
>>
>> Not sure if this can be used by someone to trigger timing based attacks on
>> another process.
>>
>> I can't fully see the whole security implications, but regardless. I do agree
>> it is prudent to not allow tasks to set their own latency_nice. Mainly because
>> the meaning of this flag will be system dependent and I think Admins are the
>> better ones to decide how to use this flag for the system they're running on.
>> I don't think application writers should be able to tweak their tasks
>> latency_nice value. Not if they can't get the right privilege at least.
>>
>
> AFAICT if latency_nice is really used for scheduler hints to provide
> latency requirements, then the worst that can happen is the user can
> request to have all the created tasks get least latency (which might not
> even be possible). Hence, unless we bias priority or vruntime, I don't see
> the DoS possibility with latency_nice.
A latency nice that does not allow reducing the latency of select tasks at the expense of the throughput of other tasks
(ie the classic trade-off) doesn't seem to be all that useful and would fail to meet the requirements. Latency nice in
this view is a directive on how to make that trade-off much like nice is a directive on how to trade-off what should get
to run next and we don't accept the system optionally treating +19 and -20 tasks the same. Even when we don't get
exactly what we want we expect "best effort" and that is not the same as optional.
-chrish
next prev parent reply other threads:[~2020-02-21 16:51 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-16 12:02 Parth Shah
2020-01-16 12:02 ` [PATCH v3 1/3] sched: Introduce latency-nice as a per-task attribute Parth Shah
2020-01-16 12:02 ` [PATCH v3 2/3] sched/core: Propagate parent task's latency requirements to the child task Parth Shah
2020-01-16 12:02 ` [PATCH v3 3/3] sched: Allow sched_{get,set}attr to change latency_nice of the task Parth Shah
2020-02-17 8:57 ` [PATCH v3 0/3] Introduce per-task latency_nice for scheduler hints Parth Shah
2020-02-18 23:00 ` chris hyser
2020-02-19 10:09 ` Parth Shah
2020-02-19 14:15 ` chris hyser
2020-02-19 18:23 ` chris hyser
2020-02-20 8:34 ` Parth Shah
2020-02-20 8:50 ` Parth Shah
2020-02-20 14:30 ` chris hyser
2020-02-20 15:03 ` Qais Yousef
2020-02-20 16:34 ` chris hyser
2020-02-21 9:29 ` Qais Yousef
2020-02-21 10:01 ` Parth Shah
2020-02-21 16:51 ` chris hyser [this message]
2020-02-21 17:08 ` chris hyser
2020-02-21 17:52 ` chris hyser
2020-02-19 11:18 ` David Laight
2020-02-19 17:16 ` chris hyser
2020-02-20 14:39 ` David Laight
2020-02-20 15:55 ` chris hyser
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=2983937b-d2de-d1ab-e387-271c7caf2a81@oracle.com \
--to=chris.hyser@oracle.com \
--cc=David.Laight@ACULAB.COM \
--cc=dhaval.giani@oracle.com \
--cc=dietmar.eggemann@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=parth@linux.ibm.com \
--cc=patrick.bellasi@matbug.net \
--cc=pavel@ucw.cz \
--cc=peterz@infradead.org \
--cc=pjt@google.com \
--cc=qais.yousef@arm.com \
--cc=qperret@qperret.net \
--cc=tj@kernel.org \
--cc=valentin.schneider@arm.com \
--cc=vincent.guittot@linaro.org \
/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®