Skip to content

Commit

Permalink
USB: usbtest - ensure correct isoc data length
Browse files Browse the repository at this point in the history
Check the data length of isochronous transfers is
as expected.

With this test #16 will now fail if the device side
sends no data.

Signed-off-by: Martin Fuzzey <mfuzzey@gmail.com>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Martin Fuzzey authored and Greg Kroah-Hartman committed Oct 22, 2010
1 parent fabbf21 commit 40aed52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/usb/misc/usbtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -1371,6 +1371,8 @@ static void iso_callback(struct urb *urb)
ctx->errors += urb->error_count;
else if (urb->status != 0)
ctx->errors += urb->number_of_packets;
else if (urb->actual_length != urb->transfer_buffer_length)
ctx->errors++;

if (urb->status == 0 && ctx->count > (ctx->pending - 1)
&& !ctx->submit_error) {
Expand Down

0 comments on commit 40aed52

Please sign in to comment.