diff options
| author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2024-12-11 20:40:14 +0000 |
|---|---|---|
| committer | Andrew Morton <akpm@linux-foundation.org> | 2026-07-26 22:48:10 -0700 |
| commit | 8d6c41cc8161bb5cba22bf30fbb734434cbd7246 (patch) | |
| tree | 38ab3d65183ea2687cb9894eda18f6d02871d4dd /lib | |
| parent | a494c6ce00bfc78cb9cda44c85ca0cc051b974b7 (diff) | |
| download | linux-next-8d6c41cc8161bb5cba22bf30fbb734434cbd7246.tar.gz linux-next-8d6c41cc8161bb5cba22bf30fbb734434cbd7246.zip | |
percpu_ref: fix documentation of maximum value
Tejun changd percpu_ref to use long instead of int back in 2014 but missed
updating this bit of the documentation. Also add the documentation to the
htmldocs.
Link: https://lore.kernel.org/20241211204017.184512-1-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/percpu-refcount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/percpu-refcount.c b/lib/percpu-refcount.c index 97772e42b9b2..f8d90689af9f 100644 --- a/lib/percpu-refcount.c +++ b/lib/percpu-refcount.c @@ -289,7 +289,7 @@ static void __percpu_ref_switch_mode(struct percpu_ref *ref, * @confirm_switch: optional confirmation callback * * There's no reason to use this function for the usual reference counting. - * Use percpu_ref_kill[_and_confirm](). + * Use percpu_ref_kill() or percpu_ref_kill_and_confirm(). * * Schedule switching of @ref to atomic mode. All its percpu counts will * be collected to the main atomic counter. On completion, when all CPUs |
