Lines Matching refs:IOP_MSG_LEN
351 msg->iop_num, msg->channel, IOP_MSG_LEN, msg->reply); in iop_complete_message()
353 offset = IOP_ADDR_RECV_MSG + (msg->channel * IOP_MSG_LEN); in iop_complete_message()
355 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_complete_message()
376 msg->iop_num, msg->channel, IOP_MSG_LEN, msg->message); in iop_do_send()
378 offset = IOP_ADDR_SEND_MSG + (msg->channel * IOP_MSG_LEN); in iop_do_send()
380 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_do_send()
405 offset = IOP_ADDR_SEND_MSG + (chan * IOP_MSG_LEN); in iop_handle_send()
406 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_handle_send()
410 iop_num, chan, IOP_MSG_LEN, msg->reply); in iop_handle_send()
437 offset = IOP_ADDR_RECV_MSG + (chan * IOP_MSG_LEN); in iop_handle_recv()
439 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_handle_recv()
443 iop_num, chan, IOP_MSG_LEN, msg->message); in iop_handle_recv()
453 memset(msg->reply, 0, IOP_MSG_LEN); in iop_handle_recv()
474 if (msg_len > IOP_MSG_LEN) return -EINVAL; in iop_send_message()