瀏覽代碼

usb: usbtest: add pattern check on pipe in phase of unlink read

TEST 11 unlinks the URB read request for N times. When host and gadget
both initialize pattern 1 (mod 63) data series to do IN transfer, the
host side function should check the data buffer if it is as mod 63
series, because the data packet which host receivced will follow
pattern 1. So this patch adds this checking action.

Signed-off-by: Huang Rui <ray.huang@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Huang Rui 11 年之前
父節點
當前提交
a7683eb3af
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      drivers/usb/misc/usbtest.c

+ 3 - 0
drivers/usb/misc/usbtest.c

@@ -1345,6 +1345,9 @@ static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
 		while (!completion_done(&completion)) {
 		while (!completion_done(&completion)) {
 			retval = usb_unlink_urb(urb);
 			retval = usb_unlink_urb(urb);
 
 
+			if (retval == 0 && usb_pipein(urb->pipe))
+				retval = simple_check_buf(dev, urb);
+
 			switch (retval) {
 			switch (retval) {
 			case -EBUSY:
 			case -EBUSY:
 			case -EIDRM:
 			case -EIDRM: