From: Hauke Mehrtens Date: Sat, 18 Jan 2014 23:41:51 +0000 (+0100) Subject: backports: backport get_stats in alx driver X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a6c0c92d95fbca445b1c71855fff8947753b23ba;p=openwrt%2Fstaging%2Fblogic.git 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 --- 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 000000000000..9e4e6d9c127c --- /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,