diff options
author | 2024-05-27 14:06:47 +0200 | |
---|---|---|
committer | 2024-07-29 12:22:35 +0200 | |
commit | f23c042ce34ba265cf3129d530702b5d218e3f4b (patch) | |
tree | 33638077923fa77c878c53bb07040fc56ddd56cf | |
parent | sched/fair: Make SCHED_IDLE entity be preempted in strict hierarchy (diff) | |
download | wireguard-linux-f23c042ce34ba265cf3129d530702b5d218e3f4b.tar.xz wireguard-linux-f23c042ce34ba265cf3129d530702b5d218e3f4b.zip |
sched/deadline: Comment sched_dl_entity::dl_server variable
Add an explanation for the newly added variable.
Fixes: 63ba8422f876 ("sched/deadline: Introduce deadline servers")
Signed-off-by: Daniel Bristot de Oliveira <bristot@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: Juri Lelli <juri.lelli@redhat.com>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/147f7aa8cb8fd925f36aa8059af6a35aad08b45a.1716811044.git.bristot@kernel.org
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index f8d150343d42..1c771ea4481d 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -639,6 +639,8 @@ struct sched_dl_entity { * * @dl_overrun tells if the task asked to be informed about runtime * overruns. + * + * @dl_server tells if this is a server entity. */ unsigned int dl_throttled : 1; unsigned int dl_yielded : 1; |