Use new method to describe table entries in OpenFlow wire protocol.
[sliver-openvswitch.git] / datapath / table-linear.c
index e7c6e67..80f07c2 100644 (file)
@@ -157,7 +157,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;
 }