Message ID | 20250306123514.386434-2-nicolas.bouchinet@clip-os.org (mailing list archive) |
---|---|
State | Handled Elsewhere |
Headers | show |
Series | Fixes multiple sysctl bound checks | expand |
diff --git a/fs/nfs/nfs4sysctl.c b/fs/nfs/nfs4sysctl.c index d1a92d8f8ba4c..c36d89afb13af 100644 --- a/fs/nfs/nfs4sysctl.c +++ b/fs/nfs/nfs4sysctl.c @@ -32,7 +32,9 @@ static const struct ctl_table nfs4_cb_sysctls[] = { .data = &nfs_idmap_cache_timeout, .maxlen = sizeof(int), .mode = 0644, - .proc_handler = proc_dointvec, + .proc_handler = proc_dointvec_minmax, + .extra1 = SYSCTL_ZERO, + .extra2 = SYSCTL_INT_MAX, }, };