RE: [Xen-devel] [PATCH] xen-netback: vif counters from int/long to u64

2017-02-10 Thread Paul Durrant
[Xen-devel] [PATCH] xen-netback: vif counters from int/long to u64 > > This patch fixes an issue where the type of counters in the queue(s) > and interface are not in sync (queue counters are int, interface > counters are long), causing incorrect reporting of tx/rx values > of the vif

[PATCH] xen-netback: vif counters from int/long to u64

2017-02-10 Thread Mart van Santen
This patch fixes an issue where the type of counters in the queue(s) and interface are not in sync (queue counters are int, interface counters are long), causing incorrect reporting of tx/rx values of the vif interface and unclear counter overflows. This patch sets both counters to the u64 type. S