Lines Matching refs:msg
45 static int dhd_nl_finish_handler(struct nl_msg *msg, void *arg) in dhd_nl_finish_handler() argument
52 static int dhd_nl_ack_handler(struct nl_msg *msg, void *arg) in dhd_nl_ack_handler() argument
59 static int dhd_nl_valid_handler(struct nl_msg *msg, void *arg) in dhd_nl_valid_handler() argument
103 struct nl_msg *msg; in dhd_nl_do_testmode() local
106 msg = nlmsg_alloc(); in dhd_nl_do_testmode()
107 if (msg == NULL) in dhd_nl_do_testmode()
111 genlmsg_put(msg, 0, 0, dhd_nli->nl_id, 0, 0, in dhd_nl_do_testmode()
113 NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, dhd_nli->ifidx); in dhd_nl_do_testmode()
114 NLA_PUT(msg, NL80211_ATTR_TESTDATA, sizeof(*ioc), ioc); in dhd_nl_do_testmode()
116 err = nl_send_auto_complete(dhd_nli->nl, msg); in dhd_nl_do_testmode()
131 nlmsg_free(msg); in dhd_nl_do_testmode()