diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2018-08-22 01:01:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-08-22 13:52:51 -0400 |
commit | 5f733e8a2dd130eaeed24cbaef49d349206cdb8b (patch) | |
tree | 20a944cc22402eda1c6ecadb897b90a2983b15fd /kernel | |
parent | 0ba7f398f39ebc33a695058a8d12c4d795430ffa (diff) |
kernel/sysctl.c: fix typos in comments
Fix a few typos/spellos in kernel/sysctl.c.
Link: http://lkml.kernel.org/r/bb09a8b9-f984-6dd4-b07b-3ecaf200862e@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Kees Cook <keescook@chromium.org>
Cc: "Luis R. Rodriguez" <mcgrof@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sysctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index dbdcb6673b27..71ceb6c13c1a 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -225,7 +225,7 @@ static int proc_dopipe_max_size(struct ctl_table *table, int write, | |||
225 | void __user *buffer, size_t *lenp, loff_t *ppos); | 225 | void __user *buffer, size_t *lenp, loff_t *ppos); |
226 | 226 | ||
227 | #ifdef CONFIG_MAGIC_SYSRQ | 227 | #ifdef CONFIG_MAGIC_SYSRQ |
228 | /* Note: sysrq code uses it's own private copy */ | 228 | /* Note: sysrq code uses its own private copy */ |
229 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; | 229 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; |
230 | 230 | ||
231 | static int sysrq_sysctl_handler(struct ctl_table *table, int write, | 231 | static int sysrq_sysctl_handler(struct ctl_table *table, int write, |
@@ -1976,13 +1976,13 @@ static void warn_sysctl_write(struct ctl_table *table) | |||
1976 | } | 1976 | } |
1977 | 1977 | ||
1978 | /** | 1978 | /** |
1979 | * proc_first_pos_non_zero_ignore - check if firs position is allowed | 1979 | * proc_first_pos_non_zero_ignore - check if first position is allowed |
1980 | * @ppos: file position | 1980 | * @ppos: file position |
1981 | * @table: the sysctl table | 1981 | * @table: the sysctl table |
1982 | * | 1982 | * |
1983 | * Returns true if the first position is non-zero and the sysctl_writes_strict | 1983 | * Returns true if the first position is non-zero and the sysctl_writes_strict |
1984 | * mode indicates this is not allowed for numeric input types. String proc | 1984 | * mode indicates this is not allowed for numeric input types. String proc |
1985 | * hadlers can ignore the return value. | 1985 | * handlers can ignore the return value. |
1986 | */ | 1986 | */ |
1987 | static bool proc_first_pos_non_zero_ignore(loff_t *ppos, | 1987 | static bool proc_first_pos_non_zero_ignore(loff_t *ppos, |
1988 | struct ctl_table *table) | 1988 | struct ctl_table *table) |