Home | History | Annotate | Download | only in tc

Lines Matching refs:opt

34 	struct tc_sfq_qopt opt;
36 memset(&opt, 0, sizeof(opt));
41 if (get_size(&opt.quantum, *argv)) {
48 if (get_integer(&opt.perturb_period, *argv, 0)) {
55 if (get_u32(&opt.limit, *argv, 0)) {
59 if (opt.limit < 2) {
76 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
80 static int sfq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt)
85 if (opt == NULL)
88 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
90 qopt = RTA_DATA(opt);