1PROC_DOINTVEC_MS_JIF(9) The proc filesystem PROC_DOINTVEC_MS_JIF(9)
2
3
4
6 proc_dointvec_ms_jiffies - read a vector of integers as 1 milliseconds
7
9 int proc_dointvec_ms_jiffies(struct ctl_table * table, int write,
10 void __user * buffer, size_t * lenp,
11 loff_t * ppos);
12
14 table
15 the sysctl table
16
17 write
18 TRUE if this is a write to the sysctl file
19
20 buffer
21 the user buffer
22
23 lenp
24 the size of the user buffer
25
26 ppos
27 the current position in the file
28
30 Reads/writes up to table->maxlen/sizeof(unsigned int) integer values
31 from/to the user buffer, treated as an ASCII string. The values read
32 are assumed to be in 1/1000 seconds, and are converted into jiffies.
33
34 Returns 0 on success.
35
37Kernel Hackers Manual 3.10 June 2019 PROC_DOINTVEC_MS_JIF(9)