Lines Matching refs:reply
571 struct audit_reply *reply = (struct audit_reply *)arg; in audit_send_reply_thread() local
572 struct net *net = reply->net; in audit_send_reply_thread()
580 netlink_unicast(aunet->nlsk , reply->skb, reply->portid, 0); in audit_send_reply_thread()
582 kfree(reply); in audit_send_reply_thread()
605 struct audit_reply *reply = kmalloc(sizeof(struct audit_reply), in audit_send_reply() local
608 if (!reply) in audit_send_reply()
615 reply->net = get_net(net); in audit_send_reply()
616 reply->portid = portid; in audit_send_reply()
617 reply->skb = skb; in audit_send_reply()
619 tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply"); in audit_send_reply()
624 kfree(reply); in audit_send_reply()