Commit f446bd76 authored by Paul Chaignon's avatar Paul Chaignon Committed by yonghong-song

Comment on duplicate code for parsing double vlans (#2107)

Comment on duplicate code for parsing double vlans.
I also changed it into a short loop, which I don't think improves (or degrades) the code, but at least makes it clear that the double parsing is intentional.
Signed-off-by: default avatarPaul Chaignon <paul.chaignon@orange.com>
parent c8e98d1f
......@@ -96,6 +96,9 @@ int xdp_prog1(struct CTXTYPE *ctx) {
h_proto = eth->h_proto;
// parse double vlans
#pragma unroll
for (int i=0; i<2; i++) {
if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) {
struct vlan_hdr *vhdr;
......@@ -105,14 +108,6 @@ int xdp_prog1(struct CTXTYPE *ctx) {
return rc;
h_proto = vhdr->h_vlan_encapsulated_proto;
}
if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) {
struct vlan_hdr *vhdr;
vhdr = data + nh_off;
nh_off += sizeof(struct vlan_hdr);
if (data + nh_off > data_end)
return rc;
h_proto = vhdr->h_vlan_encapsulated_proto;
}
if (h_proto == htons(ETH_P_IP))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment