* [PATCH 2/2] sctp: Remove store to ret as it is not used
@ 2011-01-10 10:58 Holger Hans Peter Freyther
2011-01-17 2:07 ` Wei Yongjun
0 siblings, 1 reply; 2+ messages in thread
From: Holger Hans Peter Freyther @ 2011-01-10 10:58 UTC (permalink / raw)
To: linux-sctp
From: Holger Hans Peter Freyther <zecke@selfish.org>
The store to ret is not needed. In case it is 0 the method
will be exited directly, if not ret will be assigned again
and then returned to the caller.
Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
---
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 e47e39e..b8dad82 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -393,7 +393,7 @@ SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
* detection.
*/
addr->v4.sin_port = htons(snum);
- if ((ret = sctp_get_port_local(sk, addr))) {
+ if (sctp_get_port_local(sk, addr)) {
return -EADDRINUSE;
}
--
1.7.3.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 2/2] sctp: Remove store to ret as it is not used
2011-01-10 10:58 [PATCH 2/2] sctp: Remove store to ret as it is not used Holger Hans Peter Freyther
@ 2011-01-17 2:07 ` Wei Yongjun
0 siblings, 0 replies; 2+ messages in thread
From: Wei Yongjun @ 2011-01-17 2:07 UTC (permalink / raw)
To: linux-sctp
> From: Holger Hans Peter Freyther <zecke@selfish.org>
>
> The store to ret is not needed. In case it is 0 the method
> will be exited directly, if not ret will be assigned again
> and then returned to the caller.
>
> Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
> ---
> 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 e47e39e..b8dad82 100644
> --- a/net/sctp/socket.c
> +++ b/net/sctp/socket.c
> @@ -393,7 +393,7 @@ SCTP_STATIC int sctp_do_bind(struct sock *sk, union sctp_addr *addr, int len)
> * detection.
> */
> addr->v4.sin_port = htons(snum);
> - if ((ret = sctp_get_port_local(sk, addr))) {
> + if (sctp_get_port_local(sk, addr)) {
> return -EADDRINUSE;
> }
shoud be change to:
- if ((ret = sctp_get_port_local(sk, addr))) {
+ if (sctp_get_port_local(sk, addr))
return -EADDRINUSE;
- }
{} is not need.
Acked-by: Wei Yongjun <yjwei@cn.fujitsu.com>
You may need fix your patch and cc to David Miller <davem@davemloft.net>
with my ACK.
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-01-17 2:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-10 10:58 [PATCH 2/2] sctp: Remove store to ret as it is not used Holger Hans Peter Freyther
2011-01-17 2:07 ` Wei Yongjun
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.