diff options
author | Daniel Bristot de Oliveira <[email protected]> | 2024-05-27 14:06:47 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2024-07-29 12:22:35 +0200 |
commit | f23c042ce34ba265cf3129d530702b5d218e3f4b (patch) | |
tree | 33638077923fa77c878c53bb07040fc56ddd56cf | |
parent | faa42d29419def58d3c3e5b14ad4037f0af3b496 (diff) |
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 <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Tested-by: Juri Lelli <[email protected]>
Cc: [email protected]
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; |