Skip to content

Commit

Permalink
net: dccp: ccids: lib: packet_history: use swap macro in tfrc_rx_hist…
Browse files Browse the repository at this point in the history
…_swap

Make use of the swap macro and remove unnecessary variable tmp.
This makes the code easier to read and maintain.

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
GustavoARSilva authored and davem330 committed Nov 1, 2017
1 parent 3a7943b commit 54df7ef
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions net/dccp/ccids/lib/packet_history.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,8 @@ static void tfrc_rx_hist_swap(struct tfrc_rx_hist *h, const u8 a, const u8 b)
{
const u8 idx_a = tfrc_rx_hist_index(h, a),
idx_b = tfrc_rx_hist_index(h, b);
struct tfrc_rx_hist_entry *tmp = h->ring[idx_a];

h->ring[idx_a] = h->ring[idx_b];
h->ring[idx_b] = tmp;
swap(h->ring[idx_a], h->ring[idx_b]);
}

/*
Expand Down

0 comments on commit 54df7ef

Please sign in to comment.