Skip to content

Commit

Permalink
[DUMMY]: Use dev->stats
Browse files Browse the repository at this point in the history
Use dev->stats instead of netdev_priv().

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jul 11, 2007
1 parent 38f7b87 commit 58651b2
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions drivers/net/dummy.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
static int numdummies = 1;

static int dummy_xmit(struct sk_buff *skb, struct net_device *dev);
static struct net_device_stats *dummy_get_stats(struct net_device *dev);

static int dummy_set_address(struct net_device *dev, void *p)
{
Expand All @@ -59,7 +58,6 @@ static void set_multicast_list(struct net_device *dev)
static void __init dummy_setup(struct net_device *dev)
{
/* Initialize the device structure. */
dev->get_stats = dummy_get_stats;
dev->hard_start_xmit = dummy_xmit;
dev->set_multicast_list = set_multicast_list;
dev->set_mac_address = dummy_set_address;
Expand All @@ -76,20 +74,13 @@ static void __init dummy_setup(struct net_device *dev)

static int dummy_xmit(struct sk_buff *skb, struct net_device *dev)
{
struct net_device_stats *stats = netdev_priv(dev);

stats->tx_packets++;
stats->tx_bytes+=skb->len;
dev->stats.tx_packets++;
dev->stats.tx_bytes += skb->len;

dev_kfree_skb(skb);
return 0;
}

static struct net_device_stats *dummy_get_stats(struct net_device *dev)
{
return netdev_priv(dev);
}

static struct net_device **dummies;

/* Number of dummy devices to be set up by this module. */
Expand All @@ -101,8 +92,7 @@ static int __init dummy_init_one(int index)
struct net_device *dev_dummy;
int err;

dev_dummy = alloc_netdev(sizeof(struct net_device_stats),
"dummy%d", dummy_setup);
dev_dummy = alloc_netdev(0, "dummy%d", dummy_setup);

if (!dev_dummy)
return -ENOMEM;
Expand Down

0 comments on commit 58651b2

Please sign in to comment.