diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2014-01-19 00:41:51 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2014-01-19 17:47:13 +0100 |
commit | a6c0c92d95fbca445b1c71855fff8947753b23ba (patch) | |
tree | 8c346890f264416b257e00c8d8fdaa84954e066e /patches/collateral-evolutions | |
parent | ed058e9c27b8c188f182ce8594e98195aa700e1f (diff) |
backports: backport get_stats in alx driver
alx_get_stats64() was added recently to alx driver, but on kernel <
2.6.30 only get_stats is available, convert the function on such
kernels to use the old api.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'patches/collateral-evolutions')
-rw-r--r-- | patches/collateral-evolutions/network/64-b44-32bit-stats/alx.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/patches/collateral-evolutions/network/64-b44-32bit-stats/alx.patch b/patches/collateral-evolutions/network/64-b44-32bit-stats/alx.patch new file mode 100644 index 00000000..9e4e6d9c --- /dev/null +++ b/patches/collateral-evolutions/network/64-b44-32bit-stats/alx.patch @@ -0,0 +1,36 @@ +diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c +index e92ffd6..78bf4f4 100644 +--- a/drivers/net/ethernet/atheros/alx/main.c ++++ b/drivers/net/ethernet/atheros/alx/main.c +@@ -1180,11 +1180,19 @@ static void alx_poll_controller(struct n + } + #endif + ++ ++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) + static struct rtnl_link_stats64 *alx_get_stats64(struct net_device *dev, + struct rtnl_link_stats64 *net_stats) ++#else ++static struct net_device_stats *alx_get_stats(struct net_device *dev) ++#endif + { + struct alx_priv *alx = netdev_priv(dev); + struct alx_hw_stats *hw_stats = &alx->hw.stats; ++#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)) ++ struct net_device_stats *net_stats = &dev->stats; ++#endif + + spin_lock(&alx->stats_lock); + +@@ -1233,7 +1241,11 @@ static const struct net_device_ops alx_n + .ndo_open = alx_open, + .ndo_stop = alx_stop, + .ndo_start_xmit = alx_start_xmit, ++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)) + .ndo_get_stats64 = alx_get_stats64, ++#else ++ .ndo_get_stats = alx_get_stats, ++#endif + .ndo_set_rx_mode = alx_set_rx_mode, + .ndo_validate_addr = eth_validate_addr, + .ndo_set_mac_address = alx_set_mac_address, |