Searched refs:gopt (Results 1 – 2 of 2) sorted by relevance
401 struct geneve_opt gopt; in _geneve_set_tunnel() local409 __builtin_memset(&gopt, 0x0, sizeof(gopt)); in _geneve_set_tunnel()410 gopt.opt_class = bpf_htons(0x102); /* Open Virtual Networking (OVN) */ in _geneve_set_tunnel()411 gopt.type = 0x08; in _geneve_set_tunnel()412 gopt.r1 = 0; in _geneve_set_tunnel()413 gopt.r2 = 0; in _geneve_set_tunnel()414 gopt.r3 = 0; in _geneve_set_tunnel()415 gopt.length = 2; /* 4-byte multiple */ in _geneve_set_tunnel()416 *(int *) &gopt.opt_data = bpf_htonl(0xdeadbeef); in _geneve_set_tunnel()425 ret = bpf_skb_set_tunnel_opt(skb, &gopt, sizeof(gopt)); in _geneve_set_tunnel()[all …]
1057 struct tc_htb_glob *gopt; in htb_init() local1080 gopt = nla_data(tb[TCA_HTB_INIT]); in htb_init()1081 if (gopt->version != HTB_VER >> 16) in htb_init()1112 if ((q->rate2quantum = gopt->rate2quantum) < 1) in htb_init()1114 q->defcls = gopt->defcls; in htb_init()1225 struct tc_htb_glob gopt; in htb_dump() local1237 gopt.direct_pkts = q->direct_pkts; in htb_dump()1238 gopt.version = HTB_VER; in htb_dump()1239 gopt.rate2quantum = q->rate2quantum; in htb_dump()1240 gopt.defcls = q->defcls; in htb_dump()[all …]