diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-01 18:40:56 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-07-01 18:40:56 +0300 |
commit | be21a73edd5ded67524eabb9dad42799b42c0585 (patch) | |
tree | 40a5bc0fcadc99145b92aa16425d14be4cbc6afc /fs | |
parent | 170ab6c51a42a8a1c1a7ce09367b578db6f2f383 (diff) | |
parent | 7fffbc71075dcb733068d711c2593127cdce86f0 (diff) | |
download | linux-be21a73edd5ded67524eabb9dad42799b42c0585.tar.xz |
Merge tag 'sysctl-fixes-v2-v6.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull another sysctl fix from Luis Chamberlain:
"Just one minor nit I forgot to merge"
* tag 'sysctl-fixes-v2-v6.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
sysctl: set variable sysctl_mount_point storage-class-specifier to static
Diffstat (limited to 'fs')
-rw-r--r-- | fs/proc/proc_sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index 4e5488975415..5ea42653126e 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c @@ -29,7 +29,7 @@ static const struct file_operations proc_sys_dir_file_operations; static const struct inode_operations proc_sys_dir_operations; /* Support for permanently empty directories */ -struct ctl_table sysctl_mount_point[] = { +static struct ctl_table sysctl_mount_point[] = { {.type = SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY } }; |