Lines Matching defs:msg
60 struct rpc_pipe_msg *msg = &bl_pipe_msg.msg;
75 memset(msg, 0, sizeof(*msg));
76 msg->len = sizeof(*bl_msg) + b->simple.len;
77 msg->data = kzalloc(msg->len, gfp_mask);
78 if (!msg->data)
81 bl_msg = msg->data;
84 nfs4_encode_simple(msg->data + sizeof(*bl_msg), b);
88 rc = rpc_queue_upcall(nn->bl_device_pipe, msg);
106 kfree(msg->data);
129 static void bl_pipe_destroy_msg(struct rpc_pipe_msg *msg)
132 container_of(msg, struct bl_pipe_msg, msg);
134 if (msg->errno >= 0)