diff options
author | 2024-06-27 20:50:09 +0200 | |
---|---|---|
committer | 2024-06-27 08:57:09 -1000 | |
commit | 1ff4f169c9f576a73c529365770d82595c53b6ef (patch) | |
tree | ace408b2e421cf22951087523a88f17269b5c8e2 /kernel/sched/ext.c | |
parent | sched_ext: Fix spelling mistake: "intead" -> "instead" (diff) | |
download | wireguard-linux-1ff4f169c9f576a73c529365770d82595c53b6ef.tar.xz wireguard-linux-1ff4f169c9f576a73c529365770d82595c53b6ef.zip |
sched_ext: fix typo in set_weight() description
Correct eight to weight in the description of the .set_weight()
operation in sched_ext_ops.
Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | kernel/sched/ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c index 8e8b44f2c74a..f6e25545bfc0 100644 --- a/kernel/sched/ext.c +++ b/kernel/sched/ext.c @@ -369,7 +369,7 @@ struct sched_ext_ops { /** * set_weight - Set task weight * @p: task to set weight for - * @weight: new eight [1..10000] + * @weight: new weight [1..10000] * * Update @p's weight to @weight. */ |