dpif-netdev: Make odp_flow_key_to_flow() check more explicit.
authorBen Pfaff <blp@nicira.com>
Tue, 20 Nov 2012 15:46:41 +0000 (07:46 -0800)
committerBen Pfaff <blp@nicira.com>
Tue, 20 Nov 2012 15:46:41 +0000 (07:46 -0800)
ODP_FIT_PERFECT has value 0 but this 'if' statement doesn't make much sense
unless you happen to know that.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Kyle Mestery <kmestery@cisco.com>
lib/dpif-netdev.c

index cd4ab2827acae1852010980ea615fd2e4e1413fc..92108df1c4614f3f602e91a4f727f9977ec75892 100644 (file)
@@ -670,7 +670,7 @@ static int
 dpif_netdev_flow_from_nlattrs(const struct nlattr *key, uint32_t key_len,
                               struct flow *flow)
 {
-    if (odp_flow_key_to_flow(key, key_len, flow)) {
+    if (odp_flow_key_to_flow(key, key_len, flow) != ODP_FIT_PERFECT) {
         /* This should not happen: it indicates that odp_flow_key_from_flow()
          * and odp_flow_key_to_flow() disagree on the acceptable form of a
          * flow.  Log the problem as an error, with enough details to enable