linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v7] HID:  random timeout failures tackle try.
@ 2020-02-06 15:01 Lauri Jakku
  2020-02-08 12:17 ` kbuild test robot
  2020-02-08 13:16 ` kbuild test robot
  0 siblings, 2 replies; 3+ messages in thread
From: Lauri Jakku @ 2020-02-06 15:01 UTC (permalink / raw)
  To: lja, kernel-janitors
  Cc: linux-input, stern, oneukum, benjamin.tissoires, jikos, gregkh,
	linux-usb

 -- v1 ------------------------------------------------------------
 send, 20ms apart, control messages, if error is timeout.

 There is multiple reports of random behaviour of USB HID devices.

 I have mouse that acts sometimes quite randomly, I debugged with
 logs others have published that there is HW timeouts that leave
 device in state that it is errorneus.

 To fix this I introduced retry mechanism in root of USB HID drivers.

 Fix does not slow down operations at all if there is no -ETIMEDOUT
 got from control message sending. If there is one, then sleep 20ms
 and try again. Retry count is 20 witch translates maximum of 400ms
 before giving up.

 NOTE: This does not sleep anymore then before, if all is golden.

 -- v2 ------------------------------------------------------------

 If there is timeout, then sleep 20ms and try again. Retry count is 20
 witch translates maximum of 400ms before giving up. If the 400ms
 boundary is reached the HW is really bad.

 JUST to be clear:
     This does not make USB HID devices to sleep anymore than
     before, if all is golden.

 Why modify usb-core: No need to modify driver by driver.

 -- v3 ------------------------------------------------------------

 Timeout given is divided by 100, but taken care that it is always
 at least 10ms.

 so total time in common worst-case-scenario is:

  sleep of 20ms + common timeout divided by 100 (50ms) makes
  70ms per loop, 20 loops => 1.4sec .

 -- v4 ------------------------------------------------------------
 No changes in code, just elaborating what is done in v[1,2,3].

 -- v5 ------------------------------------------------------------
 changes in code: what the build robot found:
    drivers/usb/core/message.c: In function 'usb_control_msg':
 >> drivers/usb/core/message.c:173:11: error: type defaults to
    'int' in declaration of 'timeout_happened' [-Werror=implicit-int]

        static timeout_happened = 0;
               ^~~~~~~~~~~~~~~~
    cc1: some warnings being treated as errors

 -- v6 ------------------------------------------------------------
 Moved and simplified code from usb/core to hid/usbhid/hid-core.

 Made wrapper function to handle actual usb_control_msg() call.

 Timeout is now divided by constant, witch is loop iteration
 count. This way the timeout is kept what user have requested,
 and no additional time is spent.

 NOTE: this adds call_timeout (ms) * call_count to function,
 this might be a problem, if caller expects call to return
 directly after timeout given by user.

 -- v7 ------------------------------------------------------------
 Checked review comments, and fixed according to those.

Signed-off-by: Lauri Jakku <lja@iki.fi>
v7: Checked review comments, and fixed.
v6: Moved retry-code to hid-core.
v5: Fixed build error
v4: Commit message update
v3: retry time adaption try
v2: Static timeouts v2
v1: Static timeouts v1
---
 drivers/hid/usbhid/hid-core.c | 40 +++++++++++++++++++++++++++++++----
 drivers/hid/usbhid/usbhid.h   |  4 ++++
 2 files changed, 40 insertions(+), 4 deletions(-)

diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid/usbhid/hid-core.c
index c7bc9db5b192..4381ef747727 100644
--- a/drivers/hid/usbhid/hid-core.c
+++ b/drivers/hid/usbhid/hid-core.c
@@ -26,6 +26,7 @@
 #include <linux/wait.h>
 #include <linux/workqueue.h>
 #include <linux/string.h>
+#include <linux/ctype.h>
 
 #include <linux/usb.h>
 
@@ -75,6 +76,37 @@ static void hid_io_error(struct hid_device *hid);
 static int hid_submit_out(struct hid_device *hid);
 static int hid_submit_ctrl(struct hid_device *hid);
 static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
+static int usbhid_control_msg(struct usb_device *dev, unsigned int pipe,
+				_u8 request, __u8 requesttype, __u16 value,
+				__u16 index, void *data, __u16 size,
+				int timeout);
+
+
+static int usbhid_control_msg(struct usb_device *dev, unsigned int pipe,
+				_u8 request, __u8 requesttype, __u16 value,
+				__u16 index, void *data, __u16 size,
+				int timeout)
+{
+	int retry_timeout = USBHID_CONTROL_COMMAND_RETRY_TIMEOUT(timeout);
+	int retry = USBHID_CONTROL_COMMAND_RETRY_COUNT;
+	int ret;
+	int timeout_looping;
+
+	ret = usb_control_msg(dev, pipe, request, requesttype,
+		value, index, data, size, timeout);
+
+	while ((ret == -ETIMEDOUT) && (retry-- > 0)) {
+		/* NOTE: this adds, in worst case, retry_timeout
+		 * (ms) * call_count to function, this might be
+		 * a problem if caller expects call to return
+		 * directly after timeout given by user.
+		 */
+		ret = usb_control_msg(dev, pipe, request, requesttype,
+				value, index, data, size, retry_timeout);
+	}
+
+	return ret;
+}
 
 /* Start up the input URB */
 static int hid_start_in(struct hid_device *hid)
@@ -656,7 +688,7 @@ static int usbhid_wait_io(struct hid_device *hid)
 
 static int hid_set_idle(struct usb_device *dev, int ifnum, int report, int idle)
 {
-	return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
+	return usbhid_control_msg(dev, usb_sndctrlpipe(dev, 0),
 		HID_REQ_SET_IDLE, USB_TYPE_CLASS | USB_RECIP_INTERFACE, (idle << 8) | report,
 		ifnum, NULL, 0, USB_CTRL_SET_TIMEOUT);
 }
@@ -669,7 +701,7 @@ static int hid_get_class_descriptor(struct usb_device *dev, int ifnum,
 	memset(buf, 0, size);
 
 	do {
-		result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
+		result = usbhid_control_msg(dev, usb_rcvctrlpipe(dev, 0),
 				USB_REQ_GET_DESCRIPTOR, USB_RECIP_INTERFACE | USB_DIR_IN,
 				(type << 8), ifnum, buf, size, USB_CTRL_GET_TIMEOUT);
 		retries--;
@@ -877,7 +909,7 @@ static int usbhid_get_raw_report(struct hid_device *hid,
 		count--;
 		skipped_report_id = 1;
 	}
-	ret = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
+	ret = usbhid_control_msg(dev, usb_rcvctrlpipe(dev, 0),
 		HID_REQ_GET_REPORT,
 		USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
 		((report_type + 1) << 8) | report_number,
@@ -914,7 +946,7 @@ static int usbhid_set_raw_report(struct hid_device *hid, unsigned int reportnum,
 		skipped_report_id = 1;
 	}
 
-	ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
+	ret = usbhid_control_msg(dev, usb_sndctrlpipe(dev, 0),
 			HID_REQ_SET_REPORT,
 			USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
 			((rtype + 1) << 8) | reportnum,
diff --git a/drivers/hid/usbhid/usbhid.h b/drivers/hid/usbhid/usbhid.h
index 8620408bd7af..67008a2c937e 100644
--- a/drivers/hid/usbhid/usbhid.h
+++ b/drivers/hid/usbhid/usbhid.h
@@ -48,6 +48,10 @@ struct usb_interface *usbhid_find_interface(int minor);
  */
 #define HID_IN_POLLING		14
 
+#define USBHID_CONTROL_COMMAND_RETRY_COUNT			10
+#define USBHID_CONTROL_COMMAND_RETRY_TIMEOUT(TotalTimeoutInMS) \
+		((TotalTimeoutInMS) / USBHID_CONTROL_COMMAND_RETRY_COUNT)
+
 /*
  * USB-specific HID struct, to be pointed to
  * from struct hid_device->driver_data
-- 
2.25.0


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

* Re: [PATCH v7] HID:  random timeout failures tackle try.
  2020-02-06 15:01 [PATCH v7] HID: random timeout failures tackle try Lauri Jakku
@ 2020-02-08 12:17 ` kbuild test robot
  2020-02-08 13:16 ` kbuild test robot
  1 sibling, 0 replies; 3+ messages in thread
From: kbuild test robot @ 2020-02-08 12:17 UTC (permalink / raw)
  To: Lauri Jakku
  Cc: kbuild-all, lja, kernel-janitors, linux-input, stern, oneukum,
	benjamin.tissoires, jikos, gregkh, linux-usb

[-- Attachment #1: Type: text/plain, Size: 2780 bytes --]

Hi Lauri,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.5 next-20200207]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Lauri-Jakku/HID-random-timeout-failures-tackle-try/20200208-185809
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git f757165705e92db62f85a1ad287e9251d1f2cd82
config: x86_64-randconfig-g001-20200208 (attached as .config)
compiler: gcc-7 (Debian 7.5.0-3) 7.5.0
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/hid/usbhid/hid-core.c:80:5: error: unknown type name '_u8'; did you mean 'u8'?
        _u8 request, __u8 requesttype, __u16 value,
        ^~~
        u8
   drivers/hid/usbhid/hid-core.c:86:5: error: unknown type name '_u8'; did you mean 'u8'?
        _u8 request, __u8 requesttype, __u16 value,
        ^~~
        u8
   drivers/hid/usbhid/hid-core.c: In function 'hid_set_idle':
>> drivers/hid/usbhid/hid-core.c:691:9: error: implicit declaration of function 'usbhid_control_msg'; did you mean 'usb_control_msg'? [-Werror=implicit-function-declaration]
     return usbhid_control_msg(dev, usb_sndctrlpipe(dev, 0),
            ^~~~~~~~~~~~~~~~~~
            usb_control_msg
   cc1: some warnings being treated as errors

vim +80 drivers/hid/usbhid/hid-core.c

    64	
    65	/* Quirks specified at module load time */
    66	static char *quirks_param[MAX_USBHID_BOOT_QUIRKS];
    67	module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
    68	MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
    69			" quirks=vendorID:productID:quirks"
    70			" where vendorID, productID, and quirks are all in"
    71			" 0x-prefixed hex");
    72	/*
    73	 * Input submission and I/O error handler.
    74	 */
    75	static void hid_io_error(struct hid_device *hid);
    76	static int hid_submit_out(struct hid_device *hid);
    77	static int hid_submit_ctrl(struct hid_device *hid);
    78	static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
    79	static int usbhid_control_msg(struct usb_device *dev, unsigned int pipe,
  > 80					_u8 request, __u8 requesttype, __u16 value,
    81					__u16 index, void *data, __u16 size,
    82					int timeout);
    83	
    84	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 36092 bytes --]

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

* Re: [PATCH v7] HID:  random timeout failures tackle try.
  2020-02-06 15:01 [PATCH v7] HID: random timeout failures tackle try Lauri Jakku
  2020-02-08 12:17 ` kbuild test robot
@ 2020-02-08 13:16 ` kbuild test robot
  1 sibling, 0 replies; 3+ messages in thread
From: kbuild test robot @ 2020-02-08 13:16 UTC (permalink / raw)
  To: Lauri Jakku
  Cc: kbuild-all, lja, kernel-janitors, linux-input, stern, oneukum,
	benjamin.tissoires, jikos, gregkh, linux-usb

[-- Attachment #1: Type: text/plain, Size: 2802 bytes --]

Hi Lauri,

Thank you for the patch! Yet something to improve:

[auto build test ERROR on linus/master]
[also build test ERROR on v5.5 next-20200207]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Lauri-Jakku/HID-random-timeout-failures-tackle-try/20200208-185809
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git f757165705e92db62f85a1ad287e9251d1f2cd82
config: mips-randconfig-a001-20200208 (attached as .config)
compiler: mipsel-linux-gcc (GCC) 5.5.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=5.5.0 make.cross ARCH=mips 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

>> drivers/hid/usbhid/hid-core.c:80:5: error: unknown type name '_u8'
        _u8 request, __u8 requesttype, __u16 value,
        ^
   drivers/hid/usbhid/hid-core.c:86:5: error: unknown type name '_u8'
        _u8 request, __u8 requesttype, __u16 value,
        ^
   drivers/hid/usbhid/hid-core.c: In function 'hid_set_idle':
>> drivers/hid/usbhid/hid-core.c:691:9: error: implicit declaration of function 'usbhid_control_msg' [-Werror=implicit-function-declaration]
     return usbhid_control_msg(dev, usb_sndctrlpipe(dev, 0),
            ^
   cc1: some warnings being treated as errors

vim +/_u8 +80 drivers/hid/usbhid/hid-core.c

    64	
    65	/* Quirks specified at module load time */
    66	static char *quirks_param[MAX_USBHID_BOOT_QUIRKS];
    67	module_param_array_named(quirks, quirks_param, charp, NULL, 0444);
    68	MODULE_PARM_DESC(quirks, "Add/modify USB HID quirks by specifying "
    69			" quirks=vendorID:productID:quirks"
    70			" where vendorID, productID, and quirks are all in"
    71			" 0x-prefixed hex");
    72	/*
    73	 * Input submission and I/O error handler.
    74	 */
    75	static void hid_io_error(struct hid_device *hid);
    76	static int hid_submit_out(struct hid_device *hid);
    77	static int hid_submit_ctrl(struct hid_device *hid);
    78	static void hid_cancel_delayed_stuff(struct usbhid_device *usbhid);
    79	static int usbhid_control_msg(struct usb_device *dev, unsigned int pipe,
  > 80					_u8 request, __u8 requesttype, __u16 value,
    81					__u16 index, void *data, __u16 size,
    82					int timeout);
    83	
    84	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 29187 bytes --]

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

end of thread, other threads:[~2020-02-08 13:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-06 15:01 [PATCH v7] HID: random timeout failures tackle try Lauri Jakku
2020-02-08 12:17 ` kbuild test robot
2020-02-08 13:16 ` kbuild test robot

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