diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-24 01:16:56 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-24 01:16:56 +0300 |
commit | fcc77d7c8ef6478844547d50dd3d03270c86116c (patch) | |
tree | 57579e819aa9694dd85eaef3ad4e19d9c0432f67 /mm | |
parent | c538944d8efb14e9809b685608490b017bfc2d48 (diff) | |
parent | f1aa2eb5ea05ccd1fd92d235346e60e90a1ed949 (diff) | |
download | linux-fcc77d7c8ef6478844547d50dd3d03270c86116c.tar.xz |
Merge tag 'sysctl-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull sysctl update from Luis Chamberlain:
"Just one fix which just came in.
Sadly the eager beavers willing to help with the sysctl moves have
slowed"
* tag 'sysctl-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux:
sysctl: fix proc_dobool() usability
Diffstat (limited to 'mm')
-rw-r--r-- | mm/hugetlb_vmemmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb_vmemmap.c b/mm/hugetlb_vmemmap.c index 45e93a545dd7..a559037cce00 100644 --- a/mm/hugetlb_vmemmap.c +++ b/mm/hugetlb_vmemmap.c @@ -581,7 +581,7 @@ static struct ctl_table hugetlb_vmemmap_sysctls[] = { { .procname = "hugetlb_optimize_vmemmap", .data = &vmemmap_optimize_enabled, - .maxlen = sizeof(int), + .maxlen = sizeof(vmemmap_optimize_enabled), .mode = 0644, .proc_handler = proc_dobool, }, |