diff options
author | Alex Elder <elder@linaro.org> | 2022-09-02 16:02:16 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-09-05 12:47:02 +0100 |
commit | e68d1d1591fd70de0651e1af66db69540f556e73 (patch) | |
tree | d9e253ea3dd40a7c4a088fd2ae3b2d331865b027 /drivers/vdpa | |
parent | 897c0ce665d619227e19f59934115c1b7719621f (diff) |
net: ipa: simplify gsi_channel_trans_last()
Using a little logic we can simplify gsi_channel_trans_last().
The first condition in that function looks like this:
if (trans_info->allocated_id != trans_info->free_id)
And if that's false, we proceed to the next one:
if (trans_info->committed_id != trans_info->allocated_id)
Failure of the first test implies:
trans_info->allocated_id == trans_info->free_id
And therefore, the second one can be rewritten this way:
if (trans_info->committed_id != trans_info->free_id)
Substituting free_id for allocated_id and committed_id can also be
done in the code blocks executed when these conditions yield true.
The net result is that all three blocks for TX endpoints can be
consolidated into just one.
The two blocks of code at the end of that function (used for both TX
and RX channels) can be similarly consolidated into a single block.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/vdpa')
0 files changed, 0 insertions, 0 deletions