.TH "proc_dointvec_minmax" 9 "proc_dointvec_minmax" "25 May 1998" "Kernel Hacker's Manual" LINUX .SH NAME proc_dointvec_minmax \- read a vector of integers with min/max values .SH SYNOPSIS .B "int" proc_dointvec_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 int) integer values from/to the user buffer, treated as an ASCII string. This routine will ensure the values are within the range specified by table->extra1 (min) and table->extra2 (max). Returns 0 on success.