Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 58894
b: refs/heads/master
c: 58651b2
h: refs/heads/master
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jul 11, 2007
1 parent aae5daf commit 31dfc29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 38f7b870d4a6a5d3ec21557e849620cb7d032965
refs/heads/master: 58651b24acfd9a6fd3b217b52e577ce34b0932af
16 changes: 3 additions & 13 deletions trunk/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 31dfc29

Please sign in to comment.