Lines Matching defs:tbl
392 struct ctl_table tbl;
396 memset(&tbl, 0, sizeof(struct ctl_table));
399 tbl.data = tmp;
400 tbl.maxlen = sizeof(tmp) - 1;
401 ret = proc_dostring(&tbl, 1, buffer, lenp, ppos);
415 tbl.data = (char *)"sha256";
417 tbl.data = (char *)"none";
418 tbl.maxlen = strlen(tbl.data);
419 return proc_dostring(&tbl, 0, buffer, lenp, ppos);
428 struct ctl_table tbl;
431 memset(&tbl, 0, sizeof(struct ctl_table));
432 tbl.maxlen = sizeof(unsigned int);
435 tbl.data = &new_value;
437 tbl.data = &net->sctp.rto_min;
439 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
456 struct ctl_table tbl;
459 memset(&tbl, 0, sizeof(struct ctl_table));
460 tbl.maxlen = sizeof(unsigned int);
463 tbl.data = &new_value;
465 tbl.data = &net->sctp.rto_max;
467 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
492 struct ctl_table tbl;
495 memset(&tbl, 0, sizeof(struct ctl_table));
496 tbl.maxlen = sizeof(unsigned int);
499 tbl.data = &new_value;
501 tbl.data = &net->sctp.auth_enable;
503 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
525 struct ctl_table tbl;
528 memset(&tbl, 0, sizeof(struct ctl_table));
529 tbl.maxlen = sizeof(unsigned int);
532 tbl.data = &new_value;
534 tbl.data = &net->sctp.udp_port;
536 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);
567 struct ctl_table tbl;
570 memset(&tbl, 0, sizeof(struct ctl_table));
571 tbl.maxlen = sizeof(unsigned int);
574 tbl.data = &new_value;
576 tbl.data = &net->sctp.probe_interval;
578 ret = proc_dointvec(&tbl, write, buffer, lenp, ppos);