Home
last modified time | relevance | path

Searched refs:gopt (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.6/tools/testing/selftests/bpf/progs/
Dtest_tunnel_kern.c605 struct geneve_opt gopt; in geneve_set_tunnel() local
613 __builtin_memset(&gopt, 0x0, sizeof(gopt)); in geneve_set_tunnel()
614 gopt.opt_class = bpf_htons(0x102); /* Open Virtual Networking (OVN) */ in geneve_set_tunnel()
615 gopt.type = 0x08; in geneve_set_tunnel()
616 gopt.r1 = 0; in geneve_set_tunnel()
617 gopt.r2 = 0; in geneve_set_tunnel()
618 gopt.r3 = 0; in geneve_set_tunnel()
619 gopt.length = 2; /* 4-byte multiple */ in geneve_set_tunnel()
620 *(int *) &gopt.opt_data = bpf_htonl(0xdeadbeef); in geneve_set_tunnel()
629 ret = bpf_skb_set_tunnel_opt(skb, &gopt, sizeof(gopt)); in geneve_set_tunnel()
[all …]
/Linux-v6.6/net/sched/
Dsch_htb.c1061 struct tc_htb_glob *gopt; in htb_init() local
1084 gopt = nla_data(tb[TCA_HTB_INIT]); in htb_init()
1085 if (gopt->version != HTB_VER >> 16) in htb_init()
1118 if ((q->rate2quantum = gopt->rate2quantum) < 1) in htb_init()
1120 q->defcls = gopt->defcls; in htb_init()
1214 struct tc_htb_glob gopt; in htb_dump() local
1226 gopt.direct_pkts = q->direct_pkts; in htb_dump()
1227 gopt.version = HTB_VER; in htb_dump()
1228 gopt.rate2quantum = q->rate2quantum; in htb_dump()
1229 gopt.defcls = q->defcls; in htb_dump()
[all …]