Hi, all
Recently I did some test about supporting 8021p. Because of the NIC
driver, I have to set the physical NIC's vlan-splinter to be true.
The frame's vlan priorty si set to be 0 while it being send out by the physical
NIC.
I check the code in ofproto-dpif.c, in function compose_output_action__(), it
would clear frame's vlan priority:
... ...
out_port = vsp_realdev_to_vlandev(ctx->ofproto, odp_port,
ctx->flow.vlan_tci);
if (out_port != odp_port) {
ctx->flow.vlan_tci = htons(0);
}
... ...
Does it should be perfect ?
And I found ovs-vlan-bug-workaround is achieved, but it doesn't support the
ioctl(ADD_ALL_VLANS_CMD and DEL_ALL_VLANS_CMD) in my kernel,
Hoping for the patch in kernel or the address I can get it
Thanks
_______________________________________________
discuss mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/discuss