From: Ben Pfaff Date: Tue, 9 Nov 2010 21:48:57 +0000 (-0800) Subject: datapath: Use "struct rtnl_link_stats64" instead of "struct odp_vport_stats". X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec61a01cd8ed73b13ffe042ddff4baf41f6b63e7;hp=ec61a01cd8ed73b13ffe042ddff4baf41f6b63e7;p=openvswitch datapath: Use "struct rtnl_link_stats64" instead of "struct odp_vport_stats". Linux 2.6.35 added struct rtnl_link_stats64, which as a set of 64-bit network device counters is what the OVS datapath needs. We might as well use it instead of our own. This commit moves the if_link.h compat header from datapath/ into the top-level include/ directory so that it is visible both to kernel and userspace code. Signed-off-by: Ben Pfaff Acked-by: Jesse Gross ---