aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorGustavo A. R. Silva <garsilva@embeddedor.com>2017-10-28 14:38:45 -0500
committerDavid S. Miller <davem@davemloft.net>2017-11-01 12:05:49 +0900
commit68ad08c4f8ee6254ab814d15b9765f7f82ed0ae7 (patch)
tree7aa8af7e98f0dab771515de7ce9cfbd65dea0719 /net
parentforcedeth: replace pci_alloc_consistent with dma_alloc_coherent (diff)
downloadlinux-dev-68ad08c4f8ee6254ab814d15b9765f7f82ed0ae7.tar.xz
linux-dev-68ad08c4f8ee6254ab814d15b9765f7f82ed0ae7.zip
net: decnet: dn_nsp_in: use swap macro in dn_nsp_rx_packet
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 <garsilva@embeddedor.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/decnet/dn_nsp_in.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/net/decnet/dn_nsp_in.c b/net/decnet/dn_nsp_in.c
index 7ac086d5c0c0..1b2120645730 100644
--- a/net/decnet/dn_nsp_in.c
+++ b/net/decnet/dn_nsp_in.c
@@ -776,12 +776,8 @@ static int dn_nsp_rx_packet(struct net *net, struct sock *sk2,
* Swap src & dst and look up in the normal way.
*/
if (unlikely(cb->rt_flags & DN_RT_F_RTS)) {
- __le16 tmp = cb->dst_port;
- cb->dst_port = cb->src_port;
- cb->src_port = tmp;
- tmp = cb->dst;
- cb->dst = cb->src;
- cb->src = tmp;
+ swap(cb->dst_port, cb->src_port);
+ swap(cb->dst, cb->src);
}
/*