.TH "proc_doulongvec_ms_jiffies_minmax" 9 "proc_doulongvec_ms_jiffies_minmax" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME proc_doulongvec_ms_jiffies_minmax \- read a vector of millisecond values with min/max values .SH SYNOPSIS .B "int" proc_doulongvec_ms_jiffies_minmax .BI "(ctl_table *" table "," .BI "int " write "," .BI "struct file *" filp "," .BI "void *" buffer "," .BI "size_t *" lenp ");" .SH ARGUMENTS .IP "table" 12 the sysctl table .IP "write" 12 TRUE if this is a write to the sysctl file .IP "filp" 12 the file structure .IP "buffer" 12 the user buffer .IP "lenp" 12 the size of the user buffer .SH "DESCRIPTION" Reads/writes up to table->maxlen/sizeof(unsigned long) unsigned long values from/to the user buffer, treated as an ASCII string. The values are treated as milliseconds, and converted to jiffies when they are stored. This routine will ensure the values are within the range specified by table->extra1 (min) and table->extra2 (max). Returns 0 on success.