From: Jouni Malinen Date: Thu, 28 Feb 2013 20:09:32 +0000 (+0200) Subject: nl80211: Add debug print for cancel-frame-wait command X-Git-Tag: aosp-kk-from-upstream~523 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=316a9e4d304ed7e2516b92081a5fba7288715ebb;p=thirdparty%2Fhostap.git nl80211: Add debug print for cancel-frame-wait command This makes it easier to interpret the logs for offloaded TX frame operations. Signed-hostap: Jouni Malinen --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 2903881e3..a10ab3b6e 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -8438,6 +8438,8 @@ static void wpa_driver_nl80211_send_action_cancel_wait(void *priv) if (!msg) return; + wpa_printf(MSG_DEBUG, "nl80211: Cancel TX frame wait: cookie=0x%llx", + (long long unsigned int) drv->send_action_cookie); nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL); NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);