From: Ben Pfaff Date: Fri, 28 Mar 2008 00:46:35 +0000 (-0700) Subject: Improve comment. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8b4fd4096979da261e237c865f282e04115255f;p=openvswitch Improve comment. --- diff --git a/include/packets.h b/include/packets.h index a9dfe88b..fc753815 100644 --- a/include/packets.h +++ b/include/packets.h @@ -75,7 +75,7 @@ BUILD_ASSERT_DECL(VLAN_HEADER_LEN == sizeof(struct vlan_header)); struct vlan_eth_header { uint8_t veth_dst[ETH_ADDR_LEN]; uint8_t veth_src[ETH_ADDR_LEN]; - uint16_t veth_type; + uint16_t veth_type; /* Always htons(ETH_TYPE_VLAN). */ uint16_t veth_tci; /* Lowest 12 bits are VLAN ID. */ uint16_t veth_next_type; };