From c2bb4851cb6401b764081cd36c1cf6624c5c4c00 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 26 Oct 2010 13:09:28 -0700 Subject: [PATCH] flow: Use vlan_tci_to_pcp() helper. This is just a small cleanup that should not change any behavior. --- lib/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flow.c b/lib/flow.c index 96487765..82e60eb9 100644 --- a/lib/flow.c +++ b/lib/flow.c @@ -88,7 +88,7 @@ parse_vlan(struct ofpbuf *b, struct flow *flow) if (b->size >= sizeof(struct qtag_prefix) + sizeof(ovs_be16)) { struct qtag_prefix *qp = ofpbuf_pull(b, sizeof *qp); flow->dl_vlan = qp->tci & htons(VLAN_VID_MASK); - flow->dl_vlan_pcp = (ntohs(qp->tci) & VLAN_PCP_MASK) >> VLAN_PCP_SHIFT; + flow->dl_vlan_pcp = vlan_tci_to_pcp(qp->tci); } } -- 2.30.2