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