Staging: hv: use network device stats
The network device structure has space already reserved for statistics. Compile tested only. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ff13209b00
commit
b852fdcefc
@@ -7,7 +7,6 @@ TODO:
|
|||||||
- see if the vmbus can be merged with the other virtual busses
|
- see if the vmbus can be merged with the other virtual busses
|
||||||
in the kernel
|
in the kernel
|
||||||
- audit the network driver
|
- audit the network driver
|
||||||
- use existing net_device_stats struct in network device
|
|
||||||
- checking for carrier inside open is wrong, network device API
|
- checking for carrier inside open is wrong, network device API
|
||||||
confusion??
|
confusion??
|
||||||
- audit the block driver
|
- audit the block driver
|
||||||
|
@@ -43,7 +43,6 @@
|
|||||||
struct net_device_context {
|
struct net_device_context {
|
||||||
/* point back to our device context */
|
/* point back to our device context */
|
||||||
struct vm_device *device_ctx;
|
struct vm_device *device_ctx;
|
||||||
struct net_device_stats stats;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct netvsc_driver_context {
|
struct netvsc_driver_context {
|
||||||
@@ -58,13 +57,6 @@ static int netvsc_ringbuffer_size = NETVSC_DEVICE_RING_BUFFER_SIZE;
|
|||||||
/* The one and only one */
|
/* The one and only one */
|
||||||
static struct netvsc_driver_context g_netvsc_drv;
|
static struct netvsc_driver_context g_netvsc_drv;
|
||||||
|
|
||||||
static struct net_device_stats *netvsc_get_stats(struct net_device *net)
|
|
||||||
{
|
|
||||||
struct net_device_context *net_device_ctx = netdev_priv(net);
|
|
||||||
|
|
||||||
return &net_device_ctx->stats;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void netvsc_set_multicast_list(struct net_device *net)
|
static void netvsc_set_multicast_list(struct net_device *net)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@@ -78,9 +70,6 @@ static int netvsc_open(struct net_device *net)
|
|||||||
DPRINT_ENTER(NETVSC_DRV);
|
DPRINT_ENTER(NETVSC_DRV);
|
||||||
|
|
||||||
if (netif_carrier_ok(net)) {
|
if (netif_carrier_ok(net)) {
|
||||||
memset(&net_device_ctx->stats, 0,
|
|
||||||
sizeof(struct net_device_stats));
|
|
||||||
|
|
||||||
/* Open up the device */
|
/* Open up the device */
|
||||||
ret = RndisFilterOnOpen(device_obj);
|
ret = RndisFilterOnOpen(device_obj);
|
||||||
if (ret != 0) {
|
if (ret != 0) {
|
||||||
@@ -224,8 +213,8 @@ retry_send:
|
|||||||
|
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
ret = NETDEV_TX_OK;
|
ret = NETDEV_TX_OK;
|
||||||
net_device_ctx->stats.tx_bytes += skb->len;
|
net->stats.tx_bytes += skb->len;
|
||||||
net_device_ctx->stats.tx_packets++;
|
net->stats.tx_packets++;
|
||||||
} else {
|
} else {
|
||||||
retries++;
|
retries++;
|
||||||
if (retries < 4) {
|
if (retries < 4) {
|
||||||
@@ -241,7 +230,7 @@ retry_send:
|
|||||||
DPRINT_INFO(NETVSC_DRV, "net device (%p) stopping", net);
|
DPRINT_INFO(NETVSC_DRV, "net device (%p) stopping", net);
|
||||||
|
|
||||||
ret = NETDEV_TX_BUSY;
|
ret = NETDEV_TX_BUSY;
|
||||||
net_device_ctx->stats.tx_dropped++;
|
net->stats.tx_dropped++;
|
||||||
|
|
||||||
netif_stop_queue(net);
|
netif_stop_queue(net);
|
||||||
|
|
||||||
@@ -259,8 +248,8 @@ retry_send:
|
|||||||
}
|
}
|
||||||
|
|
||||||
DPRINT_DBG(NETVSC_DRV, "# of xmits %lu total size %lu",
|
DPRINT_DBG(NETVSC_DRV, "# of xmits %lu total size %lu",
|
||||||
net_device_ctx->stats.tx_packets,
|
net->stats.tx_packets,
|
||||||
net_device_ctx->stats.tx_bytes);
|
net->stats.tx_bytes);
|
||||||
|
|
||||||
DPRINT_EXIT(NETVSC_DRV);
|
DPRINT_EXIT(NETVSC_DRV);
|
||||||
return ret;
|
return ret;
|
||||||
@@ -360,17 +349,16 @@ static int netvsc_recv_callback(struct hv_device *device_obj,
|
|||||||
|
|
||||||
switch (ret) {
|
switch (ret) {
|
||||||
case NET_RX_DROP:
|
case NET_RX_DROP:
|
||||||
net_device_ctx->stats.rx_dropped++;
|
net->stats.rx_dropped++;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
net_device_ctx->stats.rx_packets++;
|
net->stats.rx_packets++;
|
||||||
net_device_ctx->stats.rx_bytes += skb->len;
|
net->stats.rx_bytes += skb->len;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
DPRINT_DBG(NETVSC_DRV, "# of recvs %lu total size %lu",
|
DPRINT_DBG(NETVSC_DRV, "# of recvs %lu total size %lu",
|
||||||
net_device_ctx->stats.rx_packets,
|
net->stats.rx_packets, net->stats.rx_bytes);
|
||||||
net_device_ctx->stats.rx_bytes);
|
|
||||||
|
|
||||||
DPRINT_EXIT(NETVSC_DRV);
|
DPRINT_EXIT(NETVSC_DRV);
|
||||||
|
|
||||||
@@ -381,7 +369,6 @@ static const struct net_device_ops device_ops = {
|
|||||||
.ndo_open = netvsc_open,
|
.ndo_open = netvsc_open,
|
||||||
.ndo_stop = netvsc_close,
|
.ndo_stop = netvsc_close,
|
||||||
.ndo_start_xmit = netvsc_start_xmit,
|
.ndo_start_xmit = netvsc_start_xmit,
|
||||||
.ndo_get_stats = netvsc_get_stats,
|
|
||||||
.ndo_set_multicast_list = netvsc_set_multicast_list,
|
.ndo_set_multicast_list = netvsc_set_multicast_list,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user