All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4/9] net/sctp: Eliminate useless code
@ 2010-01-16 15:58 ` Julia Lawall
  0 siblings, 0 replies; 17+ messages in thread
From: Julia Lawall @ 2010-01-16 15:58 UTC (permalink / raw)
  To: Vlad Yasevich, Sridhar Samudrala, David S. Miller, linux-sctp,
	netdev, linux-kernel, kernel-janitors

From: Julia Lawall <julia@diku.dk>

The variable newinet is initialized twice to the same (side effect-free)
expression.  Drop one initialization.

A simplified version of the semantic match that finds this problem is:
(http://coccinelle.lip6.fr/)

// <smpl>
@forall@
idexpression *x;
identifier f!=ERR_PTR;
@@

x = f(...)
... when != x
(
x = f(...,<+...x...+>,...)
|
* x = f(...)
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>

---
 net/sctp/socket.c                   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 67fdac9..f6d1e59 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -6359,7 +6359,7 @@ void sctp_copy_sock(struct sock *newsk, struct sock *sk,
 		    struct sctp_association *asoc)
 {
 	struct inet_sock *inet = inet_sk(sk);
-	struct inet_sock *newinet = inet_sk(newsk);
+	struct inet_sock *newinet;
 
 	newsk->sk_type = sk->sk_type;
 	newsk->sk_bound_dev_if = sk->sk_bound_dev_if;

^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2010-01-21 13:08 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-01-16 15:58 [PATCH 4/9] net/sctp: Eliminate useless code Julia Lawall
2010-01-16 15:58 ` Julia Lawall
2010-01-16 15:58 ` Julia Lawall
2010-01-20 18:10 ` Vlad Yasevich
2010-01-20 18:10   ` Vlad Yasevich
2010-01-20 23:03   ` David Miller
2010-01-20 23:03     ` David Miller
2010-01-21 10:21     ` Julia Lawall
2010-01-21 10:21       ` Julia Lawall
2010-01-21 10:22     ` Julia Lawall
2010-01-21 10:22       ` Julia Lawall
2010-01-21 10:43       ` David Miller
2010-01-21 10:43         ` David Miller
2010-01-21 10:49         ` Julia Lawall
2010-01-21 10:49           ` Julia Lawall
2010-01-21 13:08           ` David Miller
2010-01-21 13:08             ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.