• Home
  • Raw
  • Download

Lines Matching refs:nlh

503 	struct nlmsghdr *nlh;  in auditd_set()  local
517 nlh = nlmsg_hdr(skb); in auditd_set()
518 netlink_ack(skb, nlh, 0, NULL); in auditd_set()
543 struct nlmsghdr *nlh = nlmsg_hdr(skb); in kauditd_printk_skb() local
544 char *data = nlmsg_data(nlh); in kauditd_printk_skb()
546 if (nlh->nlmsg_type != AUDIT_EOE && printk_ratelimit()) in kauditd_printk_skb()
547 pr_notice("type=%d %s\n", nlh->nlmsg_type, data); in kauditd_printk_skb()
811 struct nlmsghdr *nlh; in kauditd_send_multicast_skb() local
832 nlh = nlmsg_hdr(copy); in kauditd_send_multicast_skb()
833 nlh->nlmsg_len = skb->len; in kauditd_send_multicast_skb()
942 struct nlmsghdr *nlh; in audit_make_reply() local
951 nlh = nlmsg_put(skb, 0, seq, t, size, flags); in audit_make_reply()
952 if (!nlh) in audit_make_reply()
954 data = nlmsg_data(nlh); in audit_make_reply()
1215 static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh, in audit_receive_msg() argument
1223 u16 msg_type = nlh->nlmsg_type; in audit_receive_msg()
1232 seq = nlh->nlmsg_seq; in audit_receive_msg()
1233 data = nlmsg_data(nlh); in audit_receive_msg()
1234 data_len = nlmsg_len(nlh); in audit_receive_msg()
1342 if (sizeof(s) > (size_t)nlh->nlmsg_len) in audit_receive_msg()
1557 struct nlmsghdr *nlh; in audit_receive() local
1566 nlh = nlmsg_hdr(skb); in audit_receive()
1570 while (nlmsg_ok(nlh, len)) { in audit_receive()
1571 ack = nlh->nlmsg_flags & NLM_F_ACK; in audit_receive()
1572 err = audit_receive_msg(skb, nlh, &ack); in audit_receive()
1577 netlink_ack(skb, nlh, err, NULL); in audit_receive()
1579 nlh = nlmsg_next(nlh, &len); in audit_receive()
2428 struct nlmsghdr *nlh; in audit_log_end() local
2439 nlh = nlmsg_hdr(skb); in audit_log_end()
2440 nlh->nlmsg_len = skb->len - NLMSG_HDRLEN; in audit_log_end()