From 521609b14db694e898695f29eb1b36b386efba9a Mon Sep 17 00:00:00 2001 From: "Luis R. Rodriguez" Date: Mon, 12 Aug 2013 19:47:58 -0700 Subject: backports: fix ath5k multicast patch context The ath5k driver was patched on v3.11-rc4 with the following fix which threw off a backport patch. mcgrof@garbanzo ~/linux-stable (git::master)$ git describe --contains \ f287cbd01f2e8e1b325b96233c373619c2d25ee2 v3.11-rc4~5^2~27^2^2~23 commit f287cbd01f2e8e1b325b96233c373619c2d25ee2 Author: Bob Copeland Date: Thu Jul 11 09:19:13 2013 -0400 ath5k: fix extra set bit in multicast mask Bit 32 was always set which looks to have been accidental, according to git history. Signed-off-by: Bob Copeland Signed-off-by: John W. Linville Signed-off-by: Luis R. Rodriguez --- .../drivers_net_wireless_ath_ath5k_mac80211-ops.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch b/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch index 485ab8bd..741c49ae 100644 --- a/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch +++ b/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch @@ -19,7 +19,7 @@ +#endif mfilt[0] = 0; - mfilt[1] = 1; + mfilt[1] = 0; +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35)) netdev_hw_addr_list_for_each(ha, mc_list) { -- cgit v1.2.3