Lines Matching refs:IOP_MSG_LEN
335 msg->iop_num, msg->channel, IOP_MSG_LEN, msg->reply); in iop_complete_message()
337 offset = IOP_ADDR_RECV_MSG + (msg->channel * IOP_MSG_LEN); in iop_complete_message()
339 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_complete_message()
360 msg->iop_num, msg->channel, IOP_MSG_LEN, msg->message); in iop_do_send()
362 offset = IOP_ADDR_SEND_MSG + (msg->channel * IOP_MSG_LEN); in iop_do_send()
364 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_do_send()
389 offset = IOP_ADDR_SEND_MSG + (chan * IOP_MSG_LEN); in iop_handle_send()
390 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_handle_send()
394 iop_num, chan, IOP_MSG_LEN, msg->reply); in iop_handle_send()
421 offset = IOP_ADDR_RECV_MSG + (chan * IOP_MSG_LEN); in iop_handle_recv()
423 for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) { in iop_handle_recv()
427 iop_num, chan, IOP_MSG_LEN, msg->message); in iop_handle_recv()
437 memset(msg->reply, 0, IOP_MSG_LEN); in iop_handle_recv()
458 if (msg_len > IOP_MSG_LEN) return -EINVAL; in iop_send_message()