]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ovs: use nla_put_u64_64bit()
authorNicolas Dichtel <nicolas.dichtel@6wind.com>
Mon, 25 Apr 2016 08:25:17 +0000 (10:25 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 25 Apr 2016 19:09:10 +0000 (15:09 -0400)
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/openvswitch.h
net/openvswitch/datapath.c

index 0358f94af86e68953710a5a1f49e4b0c0126189f..d6be1fb778a52680f6b1cad8bd9891f4b41d2bb1 100644 (file)
@@ -519,6 +519,7 @@ enum ovs_flow_attr {
                                  * logging should be suppressed. */
        OVS_FLOW_ATTR_UFID,      /* Variable length unique flow identifier. */
        OVS_FLOW_ATTR_UFID_FLAGS,/* u32 of OVS_UFID_F_*. */
+       OVS_FLOW_ATTR_PAD,
        __OVS_FLOW_ATTR_MAX
 };
 
index 0cc66a4e492deb8484781434d211fef5fa84b25c..22d9a5316304c0e199b54cc98b4208c88013087f 100644 (file)
@@ -754,7 +754,8 @@ static int ovs_flow_cmd_fill_stats(const struct sw_flow *flow,
        ovs_flow_stats_get(flow, &stats, &used, &tcp_flags);
 
        if (used &&
-           nla_put_u64(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used)))
+           nla_put_u64_64bit(skb, OVS_FLOW_ATTR_USED, ovs_flow_used_time(used),
+                             OVS_FLOW_ATTR_PAD))
                return -EMSGSIZE;
 
        if (stats.n_packets &&