[PATCH] sched/fair: Make 'enqueue' spelling consistent

Steven Lung posted 1 patch 3 years, 10 months ago
kernel/sched/fair.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] sched/fair: Make 'enqueue' spelling consistent
Posted by Steven Lung 3 years, 10 months ago
In this file, there are two types of spelling for the word 'enqueue'
in present continuous: 'enqueueing' and 'enqueuing'. 'Enqueuing' is
used more than the other, so I replaced all the 'enqueueing' to
'enqueuing' for making the spelling in this file consistent.

Signed-off-by: Steven Lung <1030steven@gmail.com>
---
 kernel/sched/fair.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 77b2048a9..37317710d 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -1000,7 +1000,7 @@ update_stats_enqueue_fair(struct cfs_rq *cfs_rq, struct sched_entity *se, int fl
 		return;
 
 	/*
-	 * Are we enqueueing a waiting task? (for current tasks
+	 * Are we enqueuing a waiting task? (for current tasks
 	 * a dequeue/enqueue event is a NOP)
 	 */
 	if (se != cfs_rq->curr)
@@ -1018,7 +1018,7 @@ update_stats_dequeue_fair(struct cfs_rq *cfs_rq, struct sched_entity *se, int fl
 		return;
 
 	/*
-	 * Mark the end of the wait period if dequeueing a
+	 * Mark the end of the wait period if dequeuing a
 	 * waiting task:
 	 */
 	if (se != cfs_rq->curr)
@@ -3920,7 +3920,7 @@ static inline void update_load_avg(struct cfs_rq *cfs_rq, struct sched_entity *s
 		 * !last_update_time means we've passed through
 		 * migrate_task_rq_fair() indicating we migrated.
 		 *
-		 * IOW we're enqueueing a task on a new CPU.
+		 * IOW we're enqueuing a task on a new CPU.
 		 */
 		attach_entity_load_avg(cfs_rq, se);
 		update_tg_load_avg(cfs_rq);
-- 
2.35.1