Lines Matching refs:reply
588 struct audit_reply *reply = (struct audit_reply *)arg; in audit_send_reply_thread() local
589 struct net *net = reply->net; in audit_send_reply_thread()
597 netlink_unicast(aunet->nlsk , reply->skb, reply->portid, 0); in audit_send_reply_thread()
599 kfree(reply); in audit_send_reply_thread()
622 struct audit_reply *reply = kmalloc(sizeof(struct audit_reply), in audit_send_reply() local
625 if (!reply) in audit_send_reply()
632 reply->net = get_net(net); in audit_send_reply()
633 reply->portid = portid; in audit_send_reply()
634 reply->skb = skb; in audit_send_reply()
636 tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply"); in audit_send_reply()
641 kfree(reply); in audit_send_reply()