diff options
author | Paolo Abeni <pabeni@redhat.com> | 2022-06-30 13:14:38 +0200 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2022-06-30 13:14:38 +0200 |
commit | bf48c3fae6d78d6418f62bd3259cd62dd16f83ec (patch) | |
tree | c6ee46505746d9109d1e4aaff25c15a00b34da27 /include/linux/sysctl.h | |
parent | d19b4c52f7c99fdc5198a6f5885ba818245966cd (diff) | |
parent | 211da42eaa45db7b0edfde187dd88a85fbd466b5 (diff) | |
download | linux-bf48c3fae6d78d6418f62bd3259cd62dd16f83ec.tar.gz linux-bf48c3fae6d78d6418f62bd3259cd62dd16f83ec.tar.bz2 linux-bf48c3fae6d78d6418f62bd3259cd62dd16f83ec.zip |
Merge branch 'net-neigh-introduce-interval_probe_time-for-periodic-probe'
Yuwei Wang says:
====================
net, neigh: introduce interval_probe_time for periodic probe
This series adds a new option `interval_probe_time_ms` in net, neigh
for periodic probe, and add a limitation to prevent it set to 0
====================
Link: https://lore.kernel.org/r/20220629084832.2842973-1-wangyuweihx@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'include/linux/sysctl.h')
-rw-r--r-- | include/linux/sysctl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 80263f7cdb77..17b42ce89d3e 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h @@ -75,6 +75,8 @@ int proc_douintvec_minmax(struct ctl_table *table, int write, void *buffer, int proc_dou8vec_minmax(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos); int proc_dointvec_jiffies(struct ctl_table *, int, void *, size_t *, loff_t *); +int proc_dointvec_ms_jiffies_minmax(struct ctl_table *table, int write, + void *buffer, size_t *lenp, loff_t *ppos); int proc_dointvec_userhz_jiffies(struct ctl_table *, int, void *, size_t *, loff_t *); int proc_dointvec_ms_jiffies(struct ctl_table *, int, void *, size_t *, |