diff options
author | Pingfan Liu <[email protected]> | 2022-11-16 09:52:43 +0800 |
---|---|---|
committer | Paul E. McKenney <[email protected]> | 2023-01-03 17:49:22 -0800 |
commit | aa5210f524edcebf909e6576b515bc3e2d82af0d (patch) | |
tree | ed92c6d1b35e48191799ffa6b9970b5e212cd1e7 | |
parent | 7f24626d6dd844bfc6d1f492d214d29c86d02550 (diff) |
srcu: Fix a misspelling in comment
s/srcu_gq_seq/srcu_gp_seq/
Signed-off-by: Pingfan Liu <[email protected]>
Cc: Lai Jiangshan <[email protected]>
Cc: Josh Triplett <[email protected]>
Cc: Steven Rostedt <[email protected]>
Cc: Mathieu Desnoyers <[email protected]>
Cc: <[email protected]>
Reviewed-by: Mukesh Ojha <[email protected]>
Reviewed-by: Frederic Weisbecker <[email protected]>
Signed-off-by: Paul E. McKenney <[email protected]>
-rw-r--r-- | include/linux/srcutree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/srcutree.h b/include/linux/srcutree.h index c689a81752c9..558057b517b7 100644 --- a/include/linux/srcutree.h +++ b/include/linux/srcutree.h @@ -49,7 +49,7 @@ struct srcu_data { struct srcu_node { spinlock_t __private lock; unsigned long srcu_have_cbs[4]; /* GP seq for children having CBs, but only */ - /* if greater than ->srcu_gq_seq. */ + /* if greater than ->srcu_gp_seq. */ unsigned long srcu_data_have_cbs[4]; /* Which srcu_data structs have CBs for given GP? */ unsigned long srcu_gp_seq_needed_exp; /* Furthest future exp GP. */ struct srcu_node *srcu_parent; /* Next up in tree. */ |