Commit 4601e755 authored by Alex Elder's avatar Alex Elder Committed by David S. Miller

net: ipa: further simplify gsi_channel_trans_last()

Do a little more refactoring in gsi_channel_trans_last() to simplify
it further.  The resulting code should behave exactly as before.
Signed-off-by: default avatarAlex Elder <elder@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e68d1d15
...@@ -710,42 +710,32 @@ static void gsi_evt_ring_program(struct gsi *gsi, u32 evt_ring_id) ...@@ -710,42 +710,32 @@ static void gsi_evt_ring_program(struct gsi *gsi, u32 evt_ring_id)
static struct gsi_trans *gsi_channel_trans_last(struct gsi_channel *channel) static struct gsi_trans *gsi_channel_trans_last(struct gsi_channel *channel)
{ {
struct gsi_trans_info *trans_info = &channel->trans_info; struct gsi_trans_info *trans_info = &channel->trans_info;
u32 pending_id = trans_info->pending_id;
struct gsi_trans *trans; struct gsi_trans *trans;
u16 trans_index;
u16 trans_id; u16 trans_id;
/* There is a small chance a TX transaction got allocated just if (channel->toward_ipa && pending_id != trans_info->free_id) {
* before we disabled transmits, so check for that. /* There is a small chance a TX transaction got allocated
*/ * just before we disabled transmits, so check for that.
if (channel->toward_ipa) { * The last allocated, committed, or pending transaction
/* The last allocated, committed, or pending transaction
* precedes the first free transaction. * precedes the first free transaction.
*/ */
if (trans_info->pending_id != trans_info->free_id) { trans_id = trans_info->free_id - 1;
trans_id = trans_info->free_id - 1; } else if (trans_info->polled_id != pending_id) {
trans_index = trans_id % channel->tre_count; /* Otherwise (TX or RX) we want to wait for anything that
trans = &trans_info->trans[trans_index]; * has completed, or has been polled but not released yet.
goto done; *
} * The last completed or polled transaction precedes the
} * first pending transaction.
*/
/* Otherwise (TX or RX) we want to wait for anything that trans_id = pending_id - 1;
* has completed, or has been polled but not released yet.
*
* The last completed or polled transaction precedes the
* first pending transaction.
*/
if (trans_info->polled_id != trans_info->pending_id) {
trans_id = trans_info->pending_id - 1;
trans_index = trans_id % channel->tre_count;
trans = &trans_info->trans[trans_index];
} else { } else {
trans = NULL; return NULL;
} }
done:
/* Caller will wait for this, so take a reference */ /* Caller will wait for this, so take a reference */
if (trans) trans = &trans_info->trans[trans_id % channel->tre_count];
refcount_inc(&trans->refcount); refcount_inc(&trans->refcount);
return trans; return trans;
} }
......
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