Added lookup count to ofp_table_stats.
[sliver-openvswitch.git] / switch / datapath.c
index 032b7ec..5d4590f 100644 (file)
@@ -1448,6 +1448,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 = htonll(stats.n_lookup);
         ots->matched_count = htonll(stats.n_matched);
     }
     return 0;