netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
To: Zhu Yanjun <yanjun.zhu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Cc: santosh.shilimkar-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org,
	netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	rds-devel-N0ozoZBvEnrZJqsBc5GL+g@public.gmane.org
Subject: Re: [PATCH 1/1] rds: remove unnecessary returned value check
Date: Fri, 3 Mar 2017 11:55:52 +0200	[thread overview]
Message-ID: <20170303095551.GA4101@yuval-lap> (raw)
In-Reply-To: <1488519866-24148-1-git-send-email-yanjun.zhu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>

On Fri, Mar 03, 2017 at 12:44:26AM -0500, Zhu Yanjun wrote:
> The function rds_trans_register always returns 0. As such, it is not
> necessary to check the returned value.
> 
> Cc: Joe Jin <joe.jin-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> Cc: Junxiao Bi <junxiao.bi-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Zhu Yanjun <yanjun.zhu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> ---
>  net/rds/ib.c        | 6 +-----
>  net/rds/rds.h       | 2 +-
>  net/rds/tcp.c       | 6 +-----
>  net/rds/transport.c | 4 +---
>  4 files changed, 4 insertions(+), 14 deletions(-)
> 
> diff --git a/net/rds/ib.c b/net/rds/ib.c
> index 0f557b2..7a64c8d 100644
> --- a/net/rds/ib.c
> +++ b/net/rds/ib.c
> @@ -438,16 +438,12 @@ int rds_ib_init(void)
>  	if (ret)
>  		goto out_sysctl;
>  
> -	ret = rds_trans_register(&rds_ib_transport);
> -	if (ret)
> -		goto out_recv;
> +	rds_trans_register(&rds_ib_transport);
>  
>  	rds_info_register_func(RDS_INFO_IB_CONNECTIONS, rds_ib_ic_info);
>  
>  	goto out;
>  
> -out_recv:
> -	rds_ib_recv_exit();
>  out_sysctl:
>  	rds_ib_sysctl_exit();
>  out_ibreg:
> diff --git a/net/rds/rds.h b/net/rds/rds.h
> index 966d2ee..39518ef 100644
> --- a/net/rds/rds.h
> +++ b/net/rds/rds.h
> @@ -903,7 +903,7 @@ void rds_connect_path_complete(struct rds_conn_path *conn, int curr);
>  void rds_connect_complete(struct rds_connection *conn);
>  
>  /* transport.c */
> -int rds_trans_register(struct rds_transport *trans);
> +void rds_trans_register(struct rds_transport *trans);
>  void rds_trans_unregister(struct rds_transport *trans);
>  struct rds_transport *rds_trans_get_preferred(struct net *net, __be32 addr);
>  void rds_trans_put(struct rds_transport *trans);
> diff --git a/net/rds/tcp.c b/net/rds/tcp.c
> index 5438f67..a973d3b 100644
> --- a/net/rds/tcp.c
> +++ b/net/rds/tcp.c
> @@ -652,16 +652,12 @@ static int rds_tcp_init(void)
>  	if (ret)
>  		goto out_pernet;
>  
> -	ret = rds_trans_register(&rds_tcp_transport);
> -	if (ret)
> -		goto out_recv;
> +	rds_trans_register(&rds_tcp_transport);
>  
>  	rds_info_register_func(RDS_INFO_TCP_SOCKETS, rds_tcp_tc_info);
>  
>  	goto out;
>  
> -out_recv:
> -	rds_tcp_recv_exit();
>  out_pernet:
>  	unregister_pernet_subsys(&rds_tcp_net_ops);
>  out_notifier:
> diff --git a/net/rds/transport.c b/net/rds/transport.c
> index 2ffd3e3..0b188dd 100644
> --- a/net/rds/transport.c
> +++ b/net/rds/transport.c
> @@ -40,7 +40,7 @@
>  static struct rds_transport *transports[RDS_TRANS_COUNT];
>  static DECLARE_RWSEM(rds_trans_sem);
>  
> -int rds_trans_register(struct rds_transport *trans)
> +void rds_trans_register(struct rds_transport *trans)
>  {
>  	BUG_ON(strlen(trans->t_name) + 1 > TRANSNAMSIZ);
>  
> @@ -55,8 +55,6 @@ int rds_trans_register(struct rds_transport *trans)
>  	}
>  
>  	up_write(&rds_trans_sem);
> -
> -	return 0;
>  }
>  EXPORT_SYMBOL_GPL(rds_trans_register);

Reviewed-by: Yuval Shaia <yuval.shaia-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>

>  
> -- 
> 2.7.4
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2017-03-03  9:55 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-03  5:44 [PATCH 1/1] rds: remove unnecessary returned value check Zhu Yanjun
     [not found] ` <1488519866-24148-1-git-send-email-yanjun.zhu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2017-03-03  9:55   ` Yuval Shaia [this message]
2017-03-03 16:42   ` Santosh Shilimkar
2017-03-03 17:51   ` David Miller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170303095551.GA4101@yuval-lap \
    --to=yuval.shaia-qhclzuegtsvqt0dzr+alfa@public.gmane.org \
    --cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=rds-devel-N0ozoZBvEnrZJqsBc5GL+g@public.gmane.org \
    --cc=santosh.shilimkar-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
    --cc=yanjun.zhu-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).