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

2017-02-10 Thread Mart van Santen
. Signed-off-by: Mart van Santen --- drivers/net/xen-netback/common.h| 8 drivers/net/xen-netback/interface.c | 8 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/net/xen-netback/common.h b/drivers/net/xen-netback/common.h index 3ce1f7d..530586b 100644

[PATCH] vif queue counters from int to long

2016-12-23 Thread Mart van Santen
Hello, This patch fixes an issue where counters in the queue have type int, while the counters of the vif itself are specified as long. This can cause incorrect reporting of tx/rx values of the vif interface. More extensively reported on xen-devel mailinglist. Signed-off-by: Mart van Santen