Home
last modified time | relevance | path

Searched refs:cn_msg (Results 1 – 7 of 7) sorted by relevance

/drivers/connector/
Dcn_proc.c30 #define CN_PROC_MSG_SIZE (sizeof(struct cn_msg) + sizeof(struct proc_event) + 4)
33 static inline struct cn_msg *buffer_to_cn_msg(__u8 *buffer) in buffer_to_cn_msg()
35 BUILD_BUG_ON(sizeof(struct cn_msg) != 20); in buffer_to_cn_msg()
36 return (struct cn_msg *)(buffer + 4); in buffer_to_cn_msg()
51 static inline void send_msg(struct cn_msg *msg) in send_msg()
71 struct cn_msg *msg; in proc_fork_connector()
101 struct cn_msg *msg; in proc_exec_connector()
125 struct cn_msg *msg; in proc_id_connector()
163 struct cn_msg *msg; in proc_sid_connector()
187 struct cn_msg *msg; in proc_ptrace_connector()
[all …]
Dconnector.c61 int cn_netlink_send_mult(struct cn_msg *msg, u16 len, u32 portid, u32 __group, in cn_netlink_send_mult()
68 struct cn_msg *data; in cn_netlink_send_mult()
121 int cn_netlink_send(struct cn_msg *msg, u32 portid, u32 __group, in cn_netlink_send()
136 struct cn_msg *msg = nlmsg_data(nlmsg_hdr(skb)); in cn_call_callback()
142 if (nlh->nlmsg_len < NLMSG_HDRLEN + sizeof(struct cn_msg) + msg->len) in cn_call_callback()
179 if (len < (int)sizeof(struct cn_msg) || in cn_rx_skb()
197 void (*callback)(struct cn_msg *, in cn_add_callback() argument
Dcn_queue.c23 void (*callback)(struct cn_msg *, in cn_queue_alloc_callback_entry() argument
61 void (*callback)(struct cn_msg *, in cn_queue_add_callback() argument
/drivers/hv/
Dhv_utils_transport.c184 static void hvt_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) in hvt_cn_callback()
220 struct cn_msg *cn_msg; in hvutil_transport_send() local
227 cn_msg = kzalloc(sizeof(*cn_msg) + len, GFP_ATOMIC); in hvutil_transport_send()
228 if (!cn_msg) in hvutil_transport_send()
230 cn_msg->id.idx = hvt->cn_id.idx; in hvutil_transport_send()
231 cn_msg->id.val = hvt->cn_id.val; in hvutil_transport_send()
232 cn_msg->len = len; in hvutil_transport_send()
233 memcpy(cn_msg->data, msg, len); in hvutil_transport_send()
234 ret = cn_netlink_send(cn_msg, 0, 0, GFP_ATOMIC); in hvutil_transport_send()
235 kfree(cn_msg); in hvutil_transport_send()
/drivers/md/
Ddm-log-userspace-transfer.c32 static struct cn_msg *prealloced_cn_msg;
59 struct cn_msg *msg = prealloced_cn_msg; in dm_ulog_sendto_server()
61 memset(msg, 0, sizeof(struct cn_msg)); in dm_ulog_sendto_server()
82 static int fill_pkg(struct cn_msg *msg, struct dm_ulog_request *tfr) in fill_pkg()
133 static void cn_ulog_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) in cn_ulog_callback()
177 int overhead_size = sizeof(struct dm_ulog_request) + sizeof(struct cn_msg); in dm_consult_userspace()
200 memset(tfr, 0, DM_ULOG_PREALLOCED_SIZE - sizeof(struct cn_msg)); in dm_consult_userspace()
272 prealloced_ulog_tfr = prealloced + sizeof(struct cn_msg); in dm_ulog_tfr_init()
/drivers/w1/
Dw1_netlink.c25 struct cn_msg *first_cn; /* fixed once the structure is populated */
26 struct cn_msg *cn; /* advances as cn_msg is appeneded */
31 struct cn_msg request_cn;
117 block->cn = (struct cn_msg *)(block->cn->data + in w1_netlink_setup_msg()
137 w1_reply_make_space(block, sizeof(struct cn_msg) + in w1_netlink_queue_cmd()
164 u16 space = sizeof(struct cn_msg) + sizeof(*req_msg) + sizeof(*req_cmd); in w1_netlink_queue_status()
192 static void w1_netlink_send_error(struct cn_msg *cn, struct w1_netlink_msg *msg, in w1_netlink_send_error()
196 struct cn_msg cn; in w1_netlink_send_error()
217 struct cn_msg cn; in w1_netlink_send()
397 static int w1_process_command_root(struct cn_msg *req_cn, u32 portid) in w1_process_command_root()
[all …]
/drivers/video/fbdev/
Duvesafb.c72 static void uvesafb_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) in uvesafb_cn_callback()
147 struct cn_msg *m; in uvesafb_exec()