diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2024-09-30 13:20:55 +0200 |
---|---|---|
committer | Joel Granados <joel.granados@kernel.org> | 2024-10-23 15:28:40 +0200 |
commit | a883f2efa625e05305aa9f6fc7ca3fae99105412 (patch) | |
tree | 52d65ded99b0b95b0c88c25b55202282820462e6 | |
parent | ucounts: constify sysctl table user_table (diff) | |
download | linux-a883f2efa625e05305aa9f6fc7ca3fae99105412.tar.xz linux-a883f2efa625e05305aa9f6fc7ca3fae99105412.zip |
sysctl: Reorganize kerneldoc parameter names
Reorganize kerneldoc parameter names to match the parameter
order in the function header.
Problems identified using Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: Joel Granados <joel.granados@kernel.org>
-rw-r--r-- | kernel/sysctl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 79e6cb1d5c48..5c9202cb8f59 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -1305,7 +1305,6 @@ int proc_dointvec_userhz_jiffies(const struct ctl_table *table, int write, * @write: %TRUE if this is a write to the sysctl file * @buffer: the user buffer * @lenp: the size of the user buffer - * @ppos: file position * @ppos: the current position in the file * * Reads/writes up to table->maxlen/sizeof(unsigned int) integer |