diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2014-02-14 18:10:46 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-15 02:06:23 -0500 |
commit | df9d9fdf8fdad710949ce52a403684c991ced29b (patch) | |
tree | 7125ecbb89792ff156341d6ff18b215a93e718f4 /net/openvswitch/datapath.h | |
parent | 73ac0cd48ffcbca2a07ffc90bc8c166a813e03e2 (diff) |
openvswitch: rename ->sync to ->syncp
Openvswitch defines u64_stats_sync as ->sync rather than ->syncp,
so fails to compile with netdev_alloc_pcpu_stats(). So just rename it to ->syncp.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Fixes: 1c213bd24ad04f4430031 (net: introduce netdev_alloc_pcpu_stats() for drivers)
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Reviewed-by: Flavio Leitner <fbl@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/datapath.h')
-rw-r--r-- | net/openvswitch/datapath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h index 6be9fbb5e9cb..05317380fc03 100644 --- a/net/openvswitch/datapath.h +++ b/net/openvswitch/datapath.h | |||
@@ -55,7 +55,7 @@ struct dp_stats_percpu { | |||
55 | u64 n_missed; | 55 | u64 n_missed; |
56 | u64 n_lost; | 56 | u64 n_lost; |
57 | u64 n_mask_hit; | 57 | u64 n_mask_hit; |
58 | struct u64_stats_sync sync; | 58 | struct u64_stats_sync syncp; |
59 | }; | 59 | }; |
60 | 60 | ||
61 | /** | 61 | /** |