[PATCH] net: decnet: dn_nsp_out: use swap macro in dn_mk_ack_header

Subsystems: networking [general], the rest

STALE3206d

2 messages, 2 authors, 2017-11-01 · open the first message on its own page

[PATCH] net: decnet: dn_nsp_out: use swap macro in dn_mk_ack_header

From: Gustavo A. R. Silva <hidden>
Date: 2017-10-28 20:40:01

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 <redacted>
---
 net/decnet/dn_nsp_out.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/net/decnet/dn_nsp_out.c b/net/decnet/dn_nsp_out.c
index e50a4ad..56a52a0 100644
--- a/net/decnet/dn_nsp_out.c
+++ b/net/decnet/dn_nsp_out.c
@@ -313,11 +313,8 @@ static __le16 *dn_mk_ack_header(struct sock *sk, struct sk_buff *skb, unsigned c
 	ackcrs |= 0x8000;
 
 	/* If this is an "other data/ack" message, swap acknum and ackcrs */
-	if (other) {
-		unsigned short tmp = acknum;
-		acknum = ackcrs;
-		ackcrs = tmp;
-	}
+	if (other)
+		swap(acknum, ackcrs);
 
 	/* Set "cross subchannel" bit in ackcrs */
 	ackcrs |= 0x2000;
-- 
2.7.4

Re: [PATCH] net: decnet: dn_nsp_out: use swap macro in dn_mk_ack_header

From: David Miller <davem@davemloft.net>
Date: 2017-11-01 03:06:17

From: "Gustavo A. R. Silva" <redacted>
Date: Sat, 28 Oct 2017 15:39:48 -0500
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 <redacted>
Applied.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help