Lines Matching refs:skb_out
25924 struct sk_buff *skb_out = NULL; in dhd_send_msg_to_ts() local
25932 if ((skb_out = nlmsg_new(size, GFP_ATOMIC)) == NULL) { in dhd_send_msg_to_ts()
25937 nlh = nlmsg_put(skb_out, 0, 0, NLMSG_DONE, size, 0); in dhd_send_msg_to_ts()
25943 NETLINK_CB(skb_out).dst_group = 0; /* Unicast */ in dhd_send_msg_to_ts()
25946 if ((ret = nlmsg_unicast(nl_to_ts, skb_out, sender_pid_ts)) < 0) { in dhd_send_msg_to_ts()
25950 skb_out = NULL; in dhd_send_msg_to_ts()
25956 if (skb_out) { in dhd_send_msg_to_ts()
25957 nlmsg_free(skb_out); in dhd_send_msg_to_ts()
26012 struct sk_buff *skb_out; in dhd_send_msg_to_daemon() local
26018 skb_out = NULL; in dhd_send_msg_to_daemon()
26022 if ((skb_out = nlmsg_new(size, 0)) == NULL) { in dhd_send_msg_to_daemon()
26027 nlh = nlmsg_put(skb_out, 0, 0, NLMSG_DONE, size, 0); in dhd_send_msg_to_daemon()
26032 NETLINK_CB(skb_out).dst_group = 0; /* Unicast */ in dhd_send_msg_to_daemon()
26035 if ((ret = nlmsg_unicast(nl_to_event_sk, skb_out, sender_pid)) < 0) { in dhd_send_msg_to_daemon()
26039 skb_out = NULL; in dhd_send_msg_to_daemon()
26044 if (skb_out) { in dhd_send_msg_to_daemon()
26045 nlmsg_free(skb_out); in dhd_send_msg_to_daemon()