diff options
author | Christian Loehle <christian.loehle@arm.com> | 2024-08-13 15:43:46 +0100 |
---|---|---|
committer | Peter Zijlstra <peterz@infradead.org> | 2024-09-11 11:23:56 +0200 |
commit | 6ebf2d021a13a77b495b4de15c6834e26b80d08e (patch) | |
tree | 9fafacd83728a8b405fd4f0f7c003e8791702346 | |
parent | 8bee4ca5bd64afa6a08c40db621d3c6336685bcf (diff) |
sched/deadline: Clarify nanoseconds in uapi
Specify the time values of the deadline parameters of deadline,
runtime, and period as being in nanoseconds explicitly as they always
have been.
Signed-off-by: Christian Loehle <christian.loehle@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Juri Lelli <juri.lelli@redhat.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Link: https://lore.kernel.org/r/20240813144348.1180344-3-christian.loehle@arm.com
-rw-r--r-- | include/uapi/linux/sched/types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/uapi/linux/sched/types.h b/include/uapi/linux/sched/types.h index 90662385689b..bf6e9ae031c1 100644 --- a/include/uapi/linux/sched/types.h +++ b/include/uapi/linux/sched/types.h @@ -58,9 +58,9 @@ * * This is reflected by the following fields of the sched_attr structure: * - * @sched_deadline representative of the task's deadline - * @sched_runtime representative of the task's runtime - * @sched_period representative of the task's period + * @sched_deadline representative of the task's deadline in nanoseconds + * @sched_runtime representative of the task's runtime in nanoseconds + * @sched_period representative of the task's period in nanoseconds * * Given this task model, there are a multiplicity of scheduling algorithms * and policies, that can be used to ensure all the tasks will make their |