projects
/
openvswitch
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5aca80f
)
Fix a couple of problems when modifying VLAN tags.
author
Justin Pettit
<jpettit@nicira.com>
Thu, 26 Jun 2008 18:44:30 +0000
(11:44 -0700)
committer
Justin Pettit
<jpettit@nicira.com>
Thu, 26 Jun 2008 18:48:50 +0000
(11:48 -0700)
switch/datapath.c
patch
|
blob
|
history
diff --git
a/switch/datapath.c
b/switch/datapath.c
index aa1cb802d26e6e2b3d02fc1e77fe26b85125620e..12bb714469954605db10068eb4b8c2ebd5a90055 100644
(file)
--- a/
switch/datapath.c
+++ b/
switch/datapath.c
@@
-952,12
+952,12
@@
modify_vlan(struct buffer *buffer,
uint16_t new_id = a->arg.vlan_id;
struct vlan_eth_header *veh;
- if (new_id !=
OFP_VLAN_NONE
) {
+ if (new_id !=
htons(OFP_VLAN_NONE)
) {
if (key->flow.dl_vlan != htons(OFP_VLAN_NONE)) {
/* Modify vlan id, but maintain other TCI values */
veh = buffer->l2;
veh->veth_tci &= ~htons(VLAN_VID);
- veh->veth_tci |=
htons(new_id)
;
+ veh->veth_tci |=
new_id
;
} else {
/* Insert new vlan id. */
struct eth_header *eh = buffer->l2;