diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-29 17:44:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-29 17:44:56 -0700 |
commit | 82a2a51055895f419a3aaba15ffad419063191f0 (patch) | |
tree | 3a3ebdc415e535b19708630a067058202bc2e47d /kernel | |
parent | 43ec8a620b38291c959afb47816cf2de6207125a (diff) | |
parent | 554588e8e932e7a0fac7d3ae2132f2b727d9acfe (diff) |
Merge tag 'sysctl-6.5-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull sysctl fix from Luis Chamberlain:
"A missed minor fix which Matthieu Baerts noted I had not picked up"
* tag 'sysctl-6.5-rc1-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
sysctl: fix unused proc_cap_handler() function warning
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/umh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/umh.c b/kernel/umh.c index 41088c5c39fd..1b13c5d34624 100644 --- a/kernel/umh.c +++ b/kernel/umh.c @@ -494,6 +494,7 @@ int call_usermodehelper(const char *path, char **argv, char **envp, int wait) } EXPORT_SYMBOL(call_usermodehelper); +#if defined(CONFIG_SYSCTL) static int proc_cap_handler(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) { @@ -544,7 +545,6 @@ static int proc_cap_handler(struct ctl_table *table, int write, return 0; } -#if defined(CONFIG_SYSCTL) static struct ctl_table usermodehelper_table[] = { { .procname = "bset", |