Use new method to describe table entries in OpenFlow wire protocol.
[sliver-openvswitch.git] / switch / table-linear.c
index ea3777f..b1143c7 100644 (file)
@@ -182,7 +182,8 @@ static void table_linear_stats(struct sw_table *swt,
 {
     struct sw_table_linear *tl = (struct sw_table_linear *) swt;
     stats->name = "linear";
-    stats->n_flows = tl->n_flows;
+    stats->wildcards = OFPFW_ALL;
+    stats->n_flows   = tl->n_flows;
     stats->max_flows = tl->max_flows;
     stats->n_matched = swt->n_matched;
 }