nl80211: Show station flush failures in debug log
Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
36488c054c
commit
82554b100c
1 changed files with 7 additions and 1 deletions
|
@ -7046,6 +7046,7 @@ static int i802_flush(void *priv)
|
||||||
struct i802_bss *bss = priv;
|
struct i802_bss *bss = priv;
|
||||||
struct wpa_driver_nl80211_data *drv = bss->drv;
|
struct wpa_driver_nl80211_data *drv = bss->drv;
|
||||||
struct nl_msg *msg;
|
struct nl_msg *msg;
|
||||||
|
int res;
|
||||||
|
|
||||||
msg = nlmsg_alloc();
|
msg = nlmsg_alloc();
|
||||||
if (!msg)
|
if (!msg)
|
||||||
|
@ -7059,7 +7060,12 @@ static int i802_flush(void *priv)
|
||||||
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
|
||||||
if_nametoindex(bss->ifname));
|
if_nametoindex(bss->ifname));
|
||||||
|
|
||||||
return send_and_recv_msgs(drv, msg, NULL, NULL);
|
res = send_and_recv_msgs(drv, msg, NULL, NULL);
|
||||||
|
if (res) {
|
||||||
|
wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
|
||||||
|
"(%s)", res, strerror(-res));
|
||||||
|
}
|
||||||
|
return res;
|
||||||
nla_put_failure:
|
nla_put_failure:
|
||||||
nlmsg_free(msg);
|
nlmsg_free(msg);
|
||||||
return -ENOBUFS;
|
return -ENOBUFS;
|
||||||
|
|
Loading…
Reference in a new issue