Home | History | Annotate | Download | only in tc

Lines Matching refs:opt

36 	struct tc_sfq_qopt opt;
38 memset(&opt, 0, sizeof(opt));
43 if (get_size(&opt.quantum, *argv)) {
50 if (get_integer(&opt.perturb_period, *argv, 0)) {
57 if (get_u32(&opt.limit, *argv, 0)) {
61 if (opt.limit < 2) {
78 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
82 static int sfq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
87 if (opt == NULL)
90 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
92 qopt = RTA_DATA(opt);