Added lookup count to ofp_table_stats.
[openvswitch] / datapath / datapath.c
index 83ef565477d36f4921bb13765351731c58719d7e..0ec226d9dcf061c73428a4bbe2df51d7e69a4b8d 100644 (file)
@@ -1420,6 +1420,7 @@ static int table_stats_dump(struct datapath *dp, void *state,
                memset(ots->pad, 0, sizeof ots->pad);
                ots->max_entries = htonl(stats.max_flows);
                ots->active_count = htonl(stats.n_flows);
+               ots->lookup_count = cpu_to_be64(stats.n_lookup);
                ots->matched_count = cpu_to_be64(stats.n_matched);
        }
        return 0;