2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-30 22:05:19 +00:00

lib: Rename ofp to buf.

dpif-packet contains ofpbuf which points to packet data.  Here buf
is better name rather than ofp.
Following patch renames all remaining instances of ofp variable.

Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Acked-by: Daniele Di Proietto <ddiproietto@vmware.com>
This commit is contained in:
Pravin B Shelar
2014-06-24 13:00:52 -07:00
parent 5640cbd8bd
commit e381def971
3 changed files with 14 additions and 14 deletions

View File

@@ -240,9 +240,9 @@ odp_execute_actions__(void *dp, struct dpif_packet **packets, int cnt,
uint32_t hash;
for (i = 0; i < cnt; i++) {
struct ofpbuf *ofp = &packets[i]->ofpbuf;
struct ofpbuf *buf = &packets[i]->ofpbuf;
flow_extract(ofp, md, &flow);
flow_extract(buf, md, &flow);
hash = flow_hash_5tuple(&flow, hash_act->hash_basis);
/* The hash of the first packet is in shared metadata */
@@ -264,18 +264,18 @@ odp_execute_actions__(void *dp, struct dpif_packet **packets, int cnt,
const struct ovs_action_push_vlan *vlan = nl_attr_get(a);
for (i = 0; i < cnt; i++) {
struct ofpbuf *ofp = &packets[i]->ofpbuf;
struct ofpbuf *buf = &packets[i]->ofpbuf;
eth_push_vlan(ofp, htons(ETH_TYPE_VLAN), vlan->vlan_tci);
eth_push_vlan(buf, htons(ETH_TYPE_VLAN), vlan->vlan_tci);
}
break;
}
case OVS_ACTION_ATTR_POP_VLAN:
for (i = 0; i < cnt; i++) {
struct ofpbuf *ofp = &packets[i]->ofpbuf;
struct ofpbuf *buf = &packets[i]->ofpbuf;
eth_pop_vlan(ofp);
eth_pop_vlan(buf);
}
break;
@@ -283,18 +283,18 @@ odp_execute_actions__(void *dp, struct dpif_packet **packets, int cnt,
const struct ovs_action_push_mpls *mpls = nl_attr_get(a);
for (i = 0; i < cnt; i++) {
struct ofpbuf *ofp = &packets[i]->ofpbuf;
struct ofpbuf *buf = &packets[i]->ofpbuf;
push_mpls(ofp, mpls->mpls_ethertype, mpls->mpls_lse);
push_mpls(buf, mpls->mpls_ethertype, mpls->mpls_lse);
}
break;
}
case OVS_ACTION_ATTR_POP_MPLS:
for (i = 0; i < cnt; i++) {
struct ofpbuf *ofp = &packets[i]->ofpbuf;
struct ofpbuf *buf = &packets[i]->ofpbuf;
pop_mpls(ofp, nl_attr_get_be16(a));
pop_mpls(buf, nl_attr_get_be16(a));
}
break;