aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/uapi/linux/openvswitch.h1
-rw-r--r--net/openvswitch/datapath.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/include/uapi/linux/openvswitch.h b/include/uapi/linux/openvswitch.h
index 0358f94af86e..d6be1fb778a5 100644
--- a/include/uapi/linux/openvswitch.h
+++ b/include/uapi/linux/openvswitch.h
@@ -519,6 +519,7 @@ enum ovs_flow_attr {
519 * logging should be suppressed. */ 519 * logging should be suppressed. */
520 OVS_FLOW_ATTR_UFID, /* Variable length unique flow identifier. */ 520 OVS_FLOW_ATTR_UFID, /* Variable length unique flow identifier. */
521 OVS_FLOW_ATTR_UFID_FLAGS,/* u32 of OVS_UFID_F_*. */ 521 OVS_FLOW_ATTR_UFID_FLAGS,/* u32 of OVS_UFID_F_*. */
522 OVS_FLOW_ATTR_PAD,
522 __OVS_FLOW_ATTR_MAX 523 __OVS_FLOW_ATTR_MAX
523}; 524};
524 525
diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
index 0cc66a4e492d..22d9a5316304 100644
--- a/net/openvswitch/datapath.c
+++ b/net/openvswitch/datapath.c
@@ -754,7 +754,8 @@ static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
754 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags); 754 ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
755 755
756 if (used && 756 if (used &&
757 nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used))) 757 nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
758 OVS_FLOW_ATTR_PAD))
758 return -EMSGSIZE; 759 return -EMSGSIZE;
759 760
760 if (stats.n_packets && 761 if (stats.n_packets &&