Commit af232502 authored by Finn Thain's avatar Finn Thain Committed by Geert Uytterhoeven

m68k/mac: Clarify IOP message alloc/free confusion

The alloc/free metaphor used for IOP messages is misleading and can
cause mistakes like the pointless msg2 temporary variable. Use a more
meaningful name to help simplify the code.
Signed-off-by: default avatarFinn Thain <fthain@telegraphics.com.au>
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent a9373f40
...@@ -210,7 +210,7 @@ static int iop_alive(volatile struct mac_iop *iop) ...@@ -210,7 +210,7 @@ static int iop_alive(volatile struct mac_iop *iop)
return retval; return retval;
} }
static struct iop_msg *iop_alloc_msg(void) static struct iop_msg *iop_get_unused_msg(void)
{ {
int i; int i;
unsigned long flags; unsigned long flags;
...@@ -229,11 +229,6 @@ static struct iop_msg *iop_alloc_msg(void) ...@@ -229,11 +229,6 @@ static struct iop_msg *iop_alloc_msg(void)
return NULL; return NULL;
} }
static void iop_free_msg(struct iop_msg *msg)
{
msg->status = IOP_MSGSTATUS_UNUSED;
}
/* /*
* This is called by the startup code before anything else. Its purpose * This is called by the startup code before anything else. Its purpose
* is to find and initialize the IOPs early in the boot sequence, so that * is to find and initialize the IOPs early in the boot sequence, so that
...@@ -372,7 +367,7 @@ void iop_complete_message(struct iop_msg *msg) ...@@ -372,7 +367,7 @@ void iop_complete_message(struct iop_msg *msg)
IOP_ADDR_RECV_STATE + chan, IOP_MSG_COMPLETE); IOP_ADDR_RECV_STATE + chan, IOP_MSG_COMPLETE);
iop_interrupt(iop_base[msg->iop_num]); iop_interrupt(iop_base[msg->iop_num]);
iop_free_msg(msg); msg->status = IOP_MSGSTATUS_UNUSED;
} }
/* /*
...@@ -403,7 +398,7 @@ static void iop_do_send(struct iop_msg *msg) ...@@ -403,7 +398,7 @@ static void iop_do_send(struct iop_msg *msg)
static void iop_handle_send(uint iop_num, uint chan) static void iop_handle_send(uint iop_num, uint chan)
{ {
volatile struct mac_iop *iop = iop_base[iop_num]; volatile struct mac_iop *iop = iop_base[iop_num];
struct iop_msg *msg,*msg2; struct iop_msg *msg;
int i,offset; int i,offset;
iop_pr_debug("iop_num %d chan %d\n", iop_num, chan); iop_pr_debug("iop_num %d chan %d\n", iop_num, chan);
...@@ -418,10 +413,8 @@ static void iop_handle_send(uint iop_num, uint chan) ...@@ -418,10 +413,8 @@ static void iop_handle_send(uint iop_num, uint chan)
msg->reply[i] = iop_readb(iop, offset); msg->reply[i] = iop_readb(iop, offset);
} }
if (msg->handler) (*msg->handler)(msg); if (msg->handler) (*msg->handler)(msg);
msg2 = msg; msg->status = IOP_MSGSTATUS_UNUSED;
msg = msg->next; msg = msg->next;
iop_free_msg(msg2);
iop_send_queue[iop_num][chan] = msg; iop_send_queue[iop_num][chan] = msg;
if (msg) iop_do_send(msg); if (msg) iop_do_send(msg);
} }
...@@ -439,7 +432,7 @@ static void iop_handle_recv(uint iop_num, uint chan) ...@@ -439,7 +432,7 @@ static void iop_handle_recv(uint iop_num, uint chan)
iop_pr_debug("iop_num %d chan %d\n", iop_num, chan); iop_pr_debug("iop_num %d chan %d\n", iop_num, chan);
msg = iop_alloc_msg(); msg = iop_get_unused_msg();
msg->iop_num = iop_num; msg->iop_num = iop_num;
msg->channel = chan; msg->channel = chan;
msg->status = IOP_MSGSTATUS_UNSOL; msg->status = IOP_MSGSTATUS_UNSOL;
...@@ -484,7 +477,7 @@ int iop_send_message(uint iop_num, uint chan, void *privdata, ...@@ -484,7 +477,7 @@ int iop_send_message(uint iop_num, uint chan, void *privdata,
if (chan >= NUM_IOP_CHAN) return -EINVAL; if (chan >= NUM_IOP_CHAN) return -EINVAL;
if (msg_len > IOP_MSG_LEN) return -EINVAL; if (msg_len > IOP_MSG_LEN) return -EINVAL;
msg = iop_alloc_msg(); msg = iop_get_unused_msg();
if (!msg) return -ENOMEM; if (!msg) return -ENOMEM;
msg->next = NULL; msg->next = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment