Lines Matching refs:msg
245 struct fastrpc_msg msg; member
1110 struct fastrpc_msg *msg = &ctx->msg; in fastrpc_invoke_send() local
1114 msg->pid = fl->tgid; in fastrpc_invoke_send()
1115 msg->tid = current->pid; in fastrpc_invoke_send()
1118 msg->pid = 0; in fastrpc_invoke_send()
1120 msg->ctx = ctx->ctxid | fl->pd; in fastrpc_invoke_send()
1121 msg->handle = handle; in fastrpc_invoke_send()
1122 msg->sc = ctx->sc; in fastrpc_invoke_send()
1123 msg->addr = ctx->buf ? ctx->buf->phys : 0; in fastrpc_invoke_send()
1124 msg->size = roundup(ctx->msg_sz, PAGE_SIZE); in fastrpc_invoke_send()
1127 ret = rpmsg_send(cctx->rpdev->ept, (void *)msg, sizeof(*msg)); in fastrpc_invoke_send()