Lines Matching defs:gopt
1001 struct tc_htb_glob *gopt;
1022 gopt = nla_data(tb[TCA_HTB_INIT]);
1023 if (gopt->version != HTB_VER >> 16)
1037 if ((q->rate2quantum = gopt->rate2quantum) < 1)
1039 q->defcls = gopt->defcls;
1048 struct tc_htb_glob gopt;
1055 gopt.direct_pkts = q->direct_pkts;
1056 gopt.version = HTB_VER;
1057 gopt.rate2quantum = q->rate2quantum;
1058 gopt.defcls = q->defcls;
1059 gopt.debug = 0;
1064 if (nla_put(skb, TCA_HTB_INIT, sizeof(gopt), &gopt) ||