diff options
| author | Randy Dunlap <rdunlap@infradead.org> | 2026-03-04 03:50:03 +0300 |
|---|---|---|
| committer | Peter Zijlstra <peterz@infradead.org> | 2026-03-08 13:06:47 +0300 |
| commit | 0da9ca4c08e709144a1bd2f765c14205960ac64d (patch) | |
| tree | eb106598fc40ccb7106d2222be7c6900fe2ee8cf /include | |
| parent | 3dcef70e41ab13483803c536ddea8d5f1803ee25 (diff) | |
| download | linux-0da9ca4c08e709144a1bd2f765c14205960ac64d.tar.xz | |
futex: add missing function parameter comments
Correct or add the missing function parameter kernel-doc comments
to avoid warnings:
Warning: include/asm-generic/futex.h:38 function parameter 'op' not
described in 'futex_atomic_op_inuser_local'
Warning: include/asm-generic/futex.h:38 function parameter 'oparg' not
described in 'futex_atomic_op_inuser_local'
Warning: include/asm-generic/futex.h:38 function parameter 'oval' not
described in 'futex_atomic_op_inuser_local'
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://patch.msgid.link/20260304005008.409858-1-rdunlap@infradead.org
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-generic/futex.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-generic/futex.h b/include/asm-generic/futex.h index 2a19215baae5..fbbcfd801cd0 100644 --- a/include/asm-generic/futex.h +++ b/include/asm-generic/futex.h @@ -25,7 +25,9 @@ * argument and comparison of the previous * futex value with another constant. * - * @encoded_op: encoded operation to execute + * @op: operation to execute + * @oparg: argument of the operation + * @oval: previous value at @uaddr on successful return * @uaddr: pointer to user space address * * Return: |
