diff options
author | Zhouyi Zhou <zhouzhouyi@gmail.com> | 2020-10-15 06:53:03 +0300 |
---|---|---|
committer | Paul E. McKenney <paulmck@kernel.org> | 2020-11-20 06:37:17 +0300 |
commit | 354c3f0e22dcb17c10d0b79f6e1c5ba286eec0b0 (patch) | |
tree | 837e0fce8c7becbcb71cec30e54b260968a0e2b4 /kernel/rcu | |
parent | 4d60b475f858ebdb06c1339f01a890f287b5e587 (diff) | |
download | linux-354c3f0e22dcb17c10d0b79f6e1c5ba286eec0b0.tar.xz |
rcu: Fix a typo in rcu_blocking_is_gp() header comment
This commit fixes a typo in the rcu_blocking_is_gp() function's header
comment.
Signed-off-by: Zhouyi Zhou <zhouzhouyi@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'kernel/rcu')
-rw-r--r-- | kernel/rcu/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index 34385341f66a..0f278d6486c2 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -3572,7 +3572,7 @@ void __init kfree_rcu_scheduler_running(void) * During early boot, any blocking grace-period wait automatically * implies a grace period. Later on, this is never the case for PREEMPTION. * - * Howevr, because a context switch is a grace period for !PREEMPTION, any + * However, because a context switch is a grace period for !PREEMPTION, any * blocking grace-period wait automatically implies a grace period if * there is only one CPU online at any point time during execution of * either synchronize_rcu() or synchronize_rcu_expedited(). It is OK to |