Lines Matching defs:msg
59 struct rpc_pipe_msg *msg = &bl_pipe_msg.msg;
74 memset(msg, 0, sizeof(*msg));
75 msg->len = sizeof(*bl_msg) + b->simple.len;
76 msg->data = kzalloc(msg->len, gfp_mask);
77 if (!msg->data)
80 bl_msg = msg->data;
83 nfs4_encode_simple(msg->data + sizeof(*bl_msg), b);
87 rc = rpc_queue_upcall(nn->bl_device_pipe, msg);
105 kfree(msg->data);
128 static void bl_pipe_destroy_msg(struct rpc_pipe_msg *msg)
131 container_of(msg, struct bl_pipe_msg, msg);
133 if (msg->errno >= 0)