Lines Matching refs:pid
167 __u32 pid;
194 extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 pid, int nonblock);
195 extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 pid,
197 extern void netlink_set_err(struct sock *ssk, __u32 pid, __u32 group, int code);
237 int pid;
242 __nlmsg_put(struct sk_buff *skb, u32 pid, u32 seq, int type, int len, int flags)
251 nlh->nlmsg_pid = pid;
258 #define NLMSG_NEW(skb, pid, seq, type, len, flags) \
261 __nlmsg_put(skb, pid, seq, type, len, flags); })
263 #define NLMSG_PUT(skb, pid, seq, type, len) \
264 NLMSG_NEW(skb, pid, seq, type, len, 0)