netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] tg3:Add error handling to the function tg3_test_loopback
       [not found] <1437072690-21048-1-git-send-email-xerofoify@gmail.com>
@ 2015-07-16 19:18 ` Michael Chan
  2015-07-16 19:20   ` Michael Chan
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Chan @ 2015-07-16 19:18 UTC (permalink / raw)
  To: Nicholas Krause; +Cc: prashant, netdev, linux-kernel

On Thu, 2015-07-16 at 14:51 -0400, Nicholas Krause wrote: 
> This adds proper error handling for if the calls to the function
> tg3_phy_lpbk_set fail by returning -EIO by assigning the return
> value to the variable err and if it equals anything other then
> zero jumps to the goto label done as no other work can be handled
> internally in the function tg3_test_loopback.
> 
> Signed-off-by: Nicholas Krause <xerofoify@gmail.com>

Acked-by: Michael Chan <mchan@broadcom.com>

> ---
>  drivers/net/ethernet/broadcom/tg3.c | 12 ++++++++----
>  1 file changed, 8 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> index 73c934c..8584cb7 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -13625,8 +13625,10 @@ static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
>  	    !tg3_flag(tp, USE_PHYLIB)) {
>  		int i;
>  
> -		tg3_phy_lpbk_set(tp, 0, false);
> -
> +		err = tg3_phy_lpbk_set(tp, 0, false);
> +			if (err)
> +				goto done;
> +
>  		/* Wait for link */
>  		for (i = 0; i < 100; i++) {
>  			if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
> @@ -13644,8 +13646,10 @@ static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
>  			data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
>  
>  		if (do_extlpbk) {
> -			tg3_phy_lpbk_set(tp, 0, true);
> -
> +			err = tg3_phy_lpbk_set(tp, 0, true);
> +
> +				if (err)
> +					goto done;
>  			/* All link indications report up, but the hardware
>  			 * isn't really ready for about 20 msec.  Double it
>  			 * to be sure.

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

* Re: [PATCH] tg3:Add error handling to the function tg3_test_loopback
  2015-07-16 19:18 ` [PATCH] tg3:Add error handling to the function tg3_test_loopback Michael Chan
@ 2015-07-16 19:20   ` Michael Chan
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Chan @ 2015-07-16 19:20 UTC (permalink / raw)
  To: Nicholas Krause; +Cc: prashant, netdev, linux-kernel

On Thu, 2015-07-16 at 12:18 -0700, Michael Chan wrote: 
> On Thu, 2015-07-16 at 14:51 -0400, Nicholas Krause wrote: 
> > This adds proper error handling for if the calls to the function
> > tg3_phy_lpbk_set fail by returning -EIO by assigning the return
> > value to the variable err and if it equals anything other then
> > zero jumps to the goto label done as no other work can be handled
> > internally in the function tg3_test_loopback.
> > 
> > Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
> 
> Acked-by: Michael Chan <mchan@broadcom.com>

Your indentation doesn't look right.  Other than that, it is ok.

> 
> > ---
> >  drivers/net/ethernet/broadcom/tg3.c | 12 ++++++++----
> >  1 file changed, 8 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> > index 73c934c..8584cb7 100644
> > --- a/drivers/net/ethernet/broadcom/tg3.c
> > +++ b/drivers/net/ethernet/broadcom/tg3.c
> > @@ -13625,8 +13625,10 @@ static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
> >  	    !tg3_flag(tp, USE_PHYLIB)) {
> >  		int i;
> >  
> > -		tg3_phy_lpbk_set(tp, 0, false);
> > -
> > +		err = tg3_phy_lpbk_set(tp, 0, false);
> > +			if (err)
> > +				goto done;
> > +
> >  		/* Wait for link */
> >  		for (i = 0; i < 100; i++) {
> >  			if (tr32(MAC_TX_STATUS) & TX_STATUS_LINK_UP)
> > @@ -13644,8 +13646,10 @@ static int tg3_test_loopback(struct tg3 *tp, u64 *data, bool do_extlpbk)
> >  			data[TG3_PHY_LOOPB_TEST] |= TG3_JMB_LOOPBACK_FAILED;
> >  
> >  		if (do_extlpbk) {
> > -			tg3_phy_lpbk_set(tp, 0, true);
> > -
> > +			err = tg3_phy_lpbk_set(tp, 0, true);
> > +
> > +				if (err)
> > +					goto done;
> >  			/* All link indications report up, but the hardware
> >  			 * isn't really ready for about 20 msec.  Double it
> >  			 * to be sure.
> 

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

end of thread, other threads:[~2015-07-16 19:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1437072690-21048-1-git-send-email-xerofoify@gmail.com>
2015-07-16 19:18 ` [PATCH] tg3:Add error handling to the function tg3_test_loopback Michael Chan
2015-07-16 19:20   ` Michael Chan

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).