workqueue: Fix typo in comments

Fix typo:
*assing  ==> assign
*alloced  ==> allocated
*Retun  ==> Return
*excute  ==> execute

v1->v2:
*reverse 'iff'
*update changelog

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Cai Huoqing 2021-07-31 08:01:29 +08:00 committed by Tejun Heo
parent f728c4a9e8
commit 67dc832537
2 changed files with 4 additions and 4 deletions

View file

@ -324,7 +324,7 @@ enum {
* to execute and tries to keep idle cores idle to conserve power; * to execute and tries to keep idle cores idle to conserve power;
* however, for example, a per-cpu work item scheduled from an * however, for example, a per-cpu work item scheduled from an
* interrupt handler on an idle CPU will force the scheduler to * interrupt handler on an idle CPU will force the scheduler to
* excute the work item on that CPU breaking the idleness, which in * execute the work item on that CPU breaking the idleness, which in
* turn may lead to more scheduling choices which are sub-optimal * turn may lead to more scheduling choices which are sub-optimal
* in terms of power consumption. * in terms of power consumption.
* *

View file

@ -524,7 +524,7 @@ static inline void debug_work_deactivate(struct work_struct *work) { }
#endif #endif
/** /**
* worker_pool_assign_id - allocate ID and assing it to @pool * worker_pool_assign_id - allocate ID and assign it to @pool
* @pool: the pool pointer of interest * @pool: the pool pointer of interest
* *
* Returns 0 if ID in [0, WORK_OFFQ_POOL_NONE) is allocated and assigned * Returns 0 if ID in [0, WORK_OFFQ_POOL_NONE) is allocated and assigned
@ -3763,7 +3763,7 @@ static void pwq_adjust_max_active(struct pool_workqueue *pwq)
raw_spin_unlock_irqrestore(&pwq->pool->lock, flags); raw_spin_unlock_irqrestore(&pwq->pool->lock, flags);
} }
/* initialize newly alloced @pwq which is associated with @wq and @pool */ /* initialize newly allocated @pwq which is associated with @wq and @pool */
static void init_pwq(struct pool_workqueue *pwq, struct workqueue_struct *wq, static void init_pwq(struct pool_workqueue *pwq, struct workqueue_struct *wq,
struct worker_pool *pool) struct worker_pool *pool)
{ {
@ -5331,7 +5331,7 @@ static int workqueue_apply_unbound_cpumask(void)
* the affinity of all unbound workqueues. This function check the @cpumask * the affinity of all unbound workqueues. This function check the @cpumask
* and apply it to all unbound workqueues and updates all pwqs of them. * and apply it to all unbound workqueues and updates all pwqs of them.
* *
* Retun: 0 - Success * Return: 0 - Success
* -EINVAL - Invalid @cpumask * -EINVAL - Invalid @cpumask
* -ENOMEM - Failed to allocate memory for attrs or pwqs. * -ENOMEM - Failed to allocate memory for attrs or pwqs.
*/ */