Kalle Valo <kvalo@xxxxxxxxxxxxxxxx> writes: > Michal Kazior <michal.kazior@xxxxxxxxx> writes: > >> This makes sure no further tx requests are >> submitted to HTT before driver teardown. >> >> This should prevent invalid pointer/NULL >> dereference on htt tx pool in ath10k_htt_tx() in >> some cases of heavy traffic. >> >> Reported-By: Ben Greear <greearb@xxxxxxxxxxxxxxx> >> Signed-off-by: Michal Kazior <michal.kazior@xxxxxxxxx> > > For some reason I'm not receiving buildbot emails anymore, but I noticed > via the kbuild-all archives that this patch has a warning: > > drivers/net/wireless/ath/ath10k/mac.c: In function 'ath10k_drain_tx': >>> drivers/net/wireless/ath/ath10k/mac.c:2442:2: error: implicit > declaration of function 'lockdep_is_held' > [-Werror=implicit-function-declaration] > > https://lists.01.org/pipermail/kbuild-all/2014-May/004387.html I fixed it with this: --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -19,6 +19,7 @@ #include <net/mac80211.h> #include <linux/etherdevice.h> +#include <linux/lockdep.h> #include "hif.h" #include "core.h" Let's see if buildbot is happier now. -- Kalle Valo -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html