parisc: squelch warning when using dev_get_stats
authorKyle McMartin <kyle@dreadnought.i.jkkm.org>
Tue, 28 Sep 2010 16:19:24 +0000 (12:19 -0400)
committerKyle McMartin <kyle@dreadnought.i.jkkm.org>
Thu, 14 Oct 2010 00:34:04 +0000 (20:34 -0400)
And switch to struct rtnl_link_stats64...

Signed-off-by: Kyle McMartin <kyle@redhat.com>
drivers/parisc/led.c

index c5c14dd..2350e8a 100644 (file)
@@ -346,8 +346,8 @@ static __inline__ int led_get_net_activity(void)
 #ifndef CONFIG_NET
        return 0;
 #else
-       static unsigned long rx_total_last, tx_total_last;
-       unsigned long rx_total, tx_total;
+       static u64 rx_total_last, tx_total_last;
+       u64 rx_total, tx_total;
        struct net_device *dev;
        int retval;
 
@@ -356,7 +356,7 @@ static __inline__ int led_get_net_activity(void)
        /* we are running as a workqueue task, so we can use an RCU lookup */
        rcu_read_lock();
        for_each_netdev_rcu(&init_net, dev) {
-           const struct net_device_stats *stats;
+           const struct rtnl_link_stats64 *stats;
            struct rtnl_link_stats64 temp;
            struct in_device *in_dev = __in_dev_get_rcu(dev);
            if (!in_dev || !in_dev->ifa_list)