projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a6c34ac
)
Mark the "vlan_eth_header" struct as packed, because it's getting padded on some...
author
Justin Pettit
<jpettit@nicira.com>
Wed, 7 May 2008 05:11:06 +0000
(22:11 -0700)
committer
Justin Pettit
<jpettit@nicira.com>
Wed, 7 May 2008 05:20:58 +0000
(22:20 -0700)
-- Reported by GigaFin --
include/packets.h
patch
|
blob
|
history
diff --git
a/include/packets.h
b/include/packets.h
index ea30a2aa5986a0f7653619fb9780c91fce594f39..b4a5f05a47e7e9d23b2a1680da0be7554ff427bf 100644
(file)
--- a/
include/packets.h
+++ b/
include/packets.h
@@
-120,7
+120,7
@@
struct vlan_eth_header {
uint16_t veth_type; /* Always htons(ETH_TYPE_VLAN). */
uint16_t veth_tci; /* Lowest 12 bits are VLAN ID. */
uint16_t veth_next_type;
-};
+}
__attribute__((packed))
;
BUILD_ASSERT_DECL(VLAN_ETH_HEADER_LEN == sizeof(struct vlan_eth_header));
#define IP_FMT "%"PRIu8".%"PRIu8".%"PRIu8".%"PRIu8