Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 193794
b: refs/heads/master
c: 14a4b42
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt authored and David S. Miller committed Mar 27, 2010
1 parent d833b83 commit 4cd2148
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 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: 8544b9f7371ec6a7a5c0f8701ddde9e98f52a37e
refs/heads/master: 14a4b42bd6082b4ce3b94bad00cd367707cc1e97
62 changes: 31 additions & 31 deletions trunk/net/core/rtnetlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -602,36 +602,38 @@ static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
a->tx_compressed = b->tx_compressed;
}

static void copy_rtnl_link_stats64(struct rtnl_link_stats64 *a,
const struct net_device_stats *b)
static void copy_rtnl_link_stats64(void *v, const struct net_device_stats *b)
{
a->rx_packets = b->rx_packets;
a->tx_packets = b->tx_packets;
a->rx_bytes = b->rx_bytes;
a->tx_bytes = b->tx_bytes;
a->rx_errors = b->rx_errors;
a->tx_errors = b->tx_errors;
a->rx_dropped = b->rx_dropped;
a->tx_dropped = b->tx_dropped;

a->multicast = b->multicast;
a->collisions = b->collisions;

a->rx_length_errors = b->rx_length_errors;
a->rx_over_errors = b->rx_over_errors;
a->rx_crc_errors = b->rx_crc_errors;
a->rx_frame_errors = b->rx_frame_errors;
a->rx_fifo_errors = b->rx_fifo_errors;
a->rx_missed_errors = b->rx_missed_errors;

a->tx_aborted_errors = b->tx_aborted_errors;
a->tx_carrier_errors = b->tx_carrier_errors;
a->tx_fifo_errors = b->tx_fifo_errors;
a->tx_heartbeat_errors = b->tx_heartbeat_errors;
a->tx_window_errors = b->tx_window_errors;

a->rx_compressed = b->rx_compressed;
a->tx_compressed = b->tx_compressed;
struct rtnl_link_stats64 a;

a.rx_packets = b->rx_packets;
a.tx_packets = b->tx_packets;
a.rx_bytes = b->rx_bytes;
a.tx_bytes = b->tx_bytes;
a.rx_errors = b->rx_errors;
a.tx_errors = b->tx_errors;
a.rx_dropped = b->rx_dropped;
a.tx_dropped = b->tx_dropped;

a.multicast = b->multicast;
a.collisions = b->collisions;

a.rx_length_errors = b->rx_length_errors;
a.rx_over_errors = b->rx_over_errors;
a.rx_crc_errors = b->rx_crc_errors;
a.rx_frame_errors = b->rx_frame_errors;
a.rx_fifo_errors = b->rx_fifo_errors;
a.rx_missed_errors = b->rx_missed_errors;

a.tx_aborted_errors = b->tx_aborted_errors;
a.tx_carrier_errors = b->tx_carrier_errors;
a.tx_fifo_errors = b->tx_fifo_errors;
a.tx_heartbeat_errors = b->tx_heartbeat_errors;
a.tx_window_errors = b->tx_window_errors;

a.rx_compressed = b->rx_compressed;
a.tx_compressed = b->tx_compressed;
memcpy(v, &a, sizeof(a));
}

static inline int rtnl_vfinfo_size(const struct net_device *dev)
Expand Down Expand Up @@ -734,8 +736,6 @@ static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
sizeof(struct rtnl_link_stats64));
if (attr == NULL)
goto nla_put_failure;

stats = dev_get_stats(dev);
copy_rtnl_link_stats64(nla_data(attr), stats);

if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) {
Expand Down

0 comments on commit 4cd2148

Please sign in to comment.