public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Huang Rui <ray.huang@amd.com>
To: Roger Quadros <rogerq@ti.com>
Cc: <gregkh@linuxfoundation.org>, <stern@rowland.harvard.edu>,
	<balbi@ti.com>, <linux-usb@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/2] usb: usbtest: Always clear halt else further tests will fail
Date: Thu, 19 Dec 2013 13:46:51 +0800	[thread overview]
Message-ID: <20131219054651.GD19091@hr-dev.amd.com> (raw)
In-Reply-To: <20131219040146.GC19091@hr-dev.amd.com>

On Thu, Dec 19, 2013 at 12:01:47PM +0800, Huang Rui wrote:
> On Wed, Dec 18, 2013 at 03:40:11PM +0530, Roger Quadros wrote:
> > In test_halt() we set an endpoint halt condition and return on halt verification
> > failure, then the enpoint will remain halted and all further tests related
                      ^^^^^^^
> > to that enpoint will fail. This is because we don't tackle endpoint halt error condition
            ^^^^^^^
BTW, please fix these typo.

Thanks,
Rui

> > in any of the tests. To avoid that situation, make sure to clear the
> > halt condition before exiting test_halt().
> > 
> > Signed-off-by: Roger Quadros <rogerq@ti.com>
> > Reviewed-by: Felipe Balbi <balbi@ti.com>
> 
> Acked-by: Huang Rui <ray.huang@amd.com>
> 
> > ---
> >  drivers/usb/misc/usbtest.c | 11 ++++++++++-
> >  1 file changed, 10 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
> > index 6294e1b..300b726 100644
> > --- a/drivers/usb/misc/usbtest.c
> > +++ b/drivers/usb/misc/usbtest.c
> > @@ -1545,8 +1545,17 @@ static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
> >  		return retval;
> >  	}
> >  	retval = verify_halted(tdev, ep, urb);
> > -	if (retval < 0)
> > +	if (retval < 0) {
> > +		int ret;
> > +
> > +		/* clear halt anyways, else further tests will fail */
> > +		ret = usb_clear_halt(urb->dev, urb->pipe);
> > +		if (ret)
> > +			ERROR(tdev, "ep %02x couldn't clear halt, %d\n",
> > +			      ep, ret);
> > +
> >  		return retval;
> > +	}
> >  
> >  	/* clear halt (tests API + protocol), verify it worked */
> >  	retval = usb_clear_halt(urb->dev, urb->pipe);
> > -- 
> > 1.8.3.2
> > 
> > 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


  reply	other threads:[~2013-12-19  6:06 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-18 10:10 [PATCH 1/2] usb: usbtest: Add timetout to simple_io() Roger Quadros
2013-12-18 10:10 ` [PATCH 2/2] usb: usbtest: Always clear halt else further tests will fail Roger Quadros
2013-12-19  4:01   ` Huang Rui
2013-12-19  5:46     ` Huang Rui [this message]
2013-12-19  6:21       ` Roger Quadros
2013-12-19  6:35         ` Greg KH
2013-12-18 14:46 ` [PATCH 1/2] usb: usbtest: Add timetout to simple_io() Huang Rui
2013-12-18 16:37   ` Felipe Balbi
2013-12-19  4:00     ` Huang Rui

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=20131219054651.GD19091@hr-dev.amd.com \
    --to=ray.huang@amd.com \
    --cc=balbi@ti.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=rogerq@ti.com \
    --cc=stern@rowland.harvard.edu \
    /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