diff mbox series

[v3] usb-storage: Optimize scan delay more precisely

Message ID 20240416082821.10164-1-Norihiko.Hama@alpsalpine.com (mailing list archive)
State Superseded
Headers show
Series [v3] usb-storage: Optimize scan delay more precisely | expand

Commit Message

Norihiko Hama April 16, 2024, 8:28 a.m. UTC
Current storage scan delay is reduced by the following old commit.

a4a47bc03fe5 ("Lower USB storage settling delay to something more reasonable")

It means that delay is at least 'one second', or zero with delay_use=0.
'one second' is still long delay especially for embedded system but
when delay_use is set to 0 (no delay), still error observed on some USB drives.

So delay_use should not be set to 0 but 'one second' is quite long.
Especially for embedded system, it's important for end user
how quickly access to USB drive when it's connected.
That's why we have a chance to minimize such a constant long delay.

This patch optimizes scan delay more precisely
to minimize delay time but not to have any problems on USB drives
by extending module parameter 'delay_use' in milliseconds internally.
The parameter 'delay_use' is changed to be parsed as 3 decimal point value
if it has digit values with '.'.
It makes the range of value to 1 / 1000 in internal 32-bit value
but it's still enough to set the delay time.
By default, delay time is 'one second' for backward compatibility.

For example, it seems to be good by changing delay_use=0.1,
that is 100 millisecond delay without issues for most USB pen drives.

Signed-off-by: Norihiko Hama <Norihiko.Hama@alpsalpine.com>
---
 .../admin-guide/kernel-parameters.txt         | 10 +++
 drivers/usb/storage/usb.c                     | 72 +++++++++++++++++--
 2 files changed, 78 insertions(+), 4 deletions(-)

Comments

Alan Stern April 17, 2024, 1:24 a.m. UTC | #1
On Tue, Apr 16, 2024 at 05:28:21PM +0900, Norihiko Hama wrote:
> Current storage scan delay is reduced by the following old commit.
> 
> a4a47bc03fe5 ("Lower USB storage settling delay to something more reasonable")
> 
> It means that delay is at least 'one second', or zero with delay_use=0.
> 'one second' is still long delay especially for embedded system but
> when delay_use is set to 0 (no delay), still error observed on some USB drives.
> 
> So delay_use should not be set to 0 but 'one second' is quite long.
> Especially for embedded system, it's important for end user
> how quickly access to USB drive when it's connected.
> That's why we have a chance to minimize such a constant long delay.
> 
> This patch optimizes scan delay more precisely
> to minimize delay time but not to have any problems on USB drives
> by extending module parameter 'delay_use' in milliseconds internally.
> The parameter 'delay_use' is changed to be parsed as 3 decimal point value
> if it has digit values with '.'.
> It makes the range of value to 1 / 1000 in internal 32-bit value
> but it's still enough to set the delay time.
> By default, delay time is 'one second' for backward compatibility.
> 
> For example, it seems to be good by changing delay_use=0.1,
> that is 100 millisecond delay without issues for most USB pen drives.
> 
> Signed-off-by: Norihiko Hama <Norihiko.Hama@alpsalpine.com>
> ---

At this location you're supposed to describe how this version of the patch 
differs from the previous version.

>  .../admin-guide/kernel-parameters.txt         | 10 +++
>  drivers/usb/storage/usb.c                     | 72 +++++++++++++++++--
>  2 files changed, 78 insertions(+), 4 deletions(-)
> 
> diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
> index 561d0dd776c7..ae1eb5988706 100644
> --- a/Documentation/admin-guide/kernel-parameters.txt
> +++ b/Documentation/admin-guide/kernel-parameters.txt
> @@ -6190,6 +6190,16 @@
>  	usb-storage.delay_use=
>  			[UMS] The delay in seconds before a new device is
>  			scanned for Logical Units (default 1).
> +			To specify more precise delay, supports 3 decimal point.
> +			The range of decimal point is in milliseconds,
> +			hence the minimum value is "0.001".

The text could be better.  For example:

			The delay can have up to 3 decimal places, giving a
			resolution of one millisecond.

> +			Example:
> +				delay_use=1
> +					1 second delay
> +				delay_use=0.1
> +					0.1 second delay
> +				delay_use=2.55
> +					2.55 second elay

This should show all 3 decimal places:

				delay_use=2.567
					2.567 second delay

>  	usb-storage.quirks=
>  			[UMS] A list of quirks entries to supplement or
> diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
> index 90aa9c12ffac..d5eb7dd8f3b1 100644
> --- a/drivers/usb/storage/usb.c
> +++ b/drivers/usb/storage/usb.c
> @@ -67,9 +67,73 @@ MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
>  MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
>  MODULE_LICENSE("GPL");
>  
> -static unsigned int delay_use = 1;
> -module_param(delay_use, uint, S_IRUGO | S_IWUSR);
> -MODULE_PARM_DESC(delay_use, "seconds to delay before using a new device");
> +static unsigned int delay_use = 1 * MSEC_PER_SEC;
> +
> +static int delay_use_set(const char *s, const struct kernel_param *kp)
> +{
> +	unsigned int delay_ms = 0;
> +	int frac = 3, ret;
> +	char *p = skip_spaces(s);
> +	char buf[16];
> +
> +	if (strlen(p) >= sizeof(buf) - frac)
> +		return -EINVAL;
> +
> +	strscpy_pad(buf, p, sizeof(buf));
> +
> +	p = strchr(buf, '.');
> +	if (p) {
> +		int i = 0;
> +		char *tmp = p + 1;
> +
> +		while (tmp[i] && tmp[i] != '\n')
> +			*p++ = tmp[i++];
> +
> +		if (i == 0 || i > frac)
> +			return -EINVAL;
> +		frac -= i;
> +	} else {
> +		p = buf + strlen(buf) - 1;
> +		if (*p != '\n')
> +			p++;
> +	}
> +	while (frac-- > 0)
> +		*p++ = '0';
> +	*p = '\0';
> +
> +	ret = kstrtouint(buf, 10, &delay_ms);
> +	if (ret < 0)
> +		return ret;
> +
> +	*((unsigned int *)kp->arg) = delay_ms;
> +	return 0;
> +}

As I said before, the parsing code should be in a separate function to make 
reviewing the code easier.  It also should be written more clearly.  Here's 
my attempt (not tested at all).  You might prefer to remove some of the 
comments; I put in a lot of them.

/**
 * str_to_fixed_point_uint - parse an unsigned fixed-point decimal integer
 * @str: String to parse.
 * @ndecimals: Number of decimal places in the fixed-point value.
 * @val: Where to store the parsed value.
 *
 * Parse an unsigned fixed-point decimal value in @str, containing at
 * most ndecimal digits to the right of the decimal point.
 * Stores the parsed value in @val, scaled by 10^(@ndecimal).
 *
 * As with kstrtouint(), the string must be NUL-terminated and may
 * include a single newline before the terminating NUL.  The first
 * character may be a plus sign but not a minus sign.  The decimal
 * point and fractional digits are optional.
 *
 * Returns 0 on success, a negative error code otherwise.
 */
static int str_to_fixed_point_uint(const char *str, int ndecimals,
		unsigned int *val)
{
	int n, n1, n2;
	const char *p;
	char *q;
	char buf[16];

	n = strlen(str);
	if (n > 0 && str[n - 1] == '\n');
		--n;

	p = strchr(str, '.');
	if (p) {
		n1 = p++ - str;		/* Length of integral part */
		n2 = n - (n1 + 1);	/* Length of fractional part */
		if (n2 > ndecimals)
			return -EINVAL;
	} else {
		n1 = n;			/* Length of integral part */
		n2 = 0;			/* No fractional part */
	}
	if (n1 + n2 == 0 || n1 + ndecimals > sizeof(buf) - 1)
		return -EINVAL;		/* No digits present or too long */

	memcpy(buf, str, n1);		/* Integer part */
	memcpy(buf + n1, p, n2);	/* Fractional part */
	for (q = buf + n1 + n2; n2 < ndecimals; ++n2)
		*q++ = '0';		/* Remaining fractional digits */
	*q = 0;

	return kstrtouint(buf, 10, val);
}

> +
> +static int delay_use_get(char *s, const struct kernel_param *kp)
> +{
> +	unsigned int delay_ms = *((unsigned int *)kp->arg);
> +	unsigned int rem = do_div(delay_ms, MSEC_PER_SEC);
> +	int len;
> +	char buf[16];
> +
> +	len = scnprintf(buf, sizeof(buf), "%d", delay_ms);
> +	if (rem) {
> +		len += scnprintf(buf + len, sizeof(buf) - len, ".%03d", rem);
> +		while (buf[len - 1] == '0') {
> +			buf[len - 1] = '\0';
> +			if (--len <= 1)
> +				break;
> +		}
> +	}

While this could also go in a separate function, it's short enough to keep 
here.

Alan Stern

> +	return scnprintf(s, PAGE_SIZE, "%s\n", buf);
> +}
> +
> +static const struct kernel_param_ops delay_use_ops = {
> +	.set = delay_use_set,
> +	.get = delay_use_get,
> +};
> +module_param_cb(delay_use, &delay_use_ops, &delay_use, 0644);
> +MODULE_PARM_DESC(delay_use, "time to delay before using a new device");
>  
>  static char quirks[128];
>  module_param_string(quirks, quirks, sizeof(quirks), S_IRUGO | S_IWUSR);
> @@ -1066,7 +1130,7 @@ int usb_stor_probe2(struct us_data *us)
>  	if (delay_use > 0)
>  		dev_dbg(dev, "waiting for device to settle before scanning\n");
>  	queue_delayed_work(system_freezable_wq, &us->scan_dwork,
> -			delay_use * HZ);
> +			msecs_to_jiffies(delay_use));
>  	return 0;
>  
>  	/* We come here if there are any problems */
> -- 
> 2.17.1
>
Norihiko Hama April 19, 2024, 7 a.m. UTC | #2
>> On Tue, Apr 16, 2024 at 05:28:21PM +0900, Norihiko Hama wrote:
> At this location you're supposed to describe how this version of the patch differs from the previous version.

Thank you for your support.
The difference from previous version is parsing parameter by kstrtouint() only with padding to 3 digit '0' based on your advice.
I'll split parser function and simplify get() function on next version.

>> --- a/Documentation/admin-guide/kernel-parameters.txt
>> +++ b/Documentation/admin-guide/kernel-parameters.txt
>> @@ -6190,6 +6190,16 @@
>>  	usb-storage.delay_use=
>>  			[UMS] The delay in seconds before a new device is
>>  			scanned for Logical Units (default 1).
>> +			To specify more precise delay, supports 3 decimal point.
>> +			The range of decimal point is in milliseconds,
>> +			hence the minimum value is "0.001".
> 
> The text could be better.  For example:
> 
>			The delay can have up to 3 decimal places, giving a
>			resolution of one millisecond.

Thank you for your adevice.

>> +			Example:
>> +				delay_use=1
>> +					1 second delay
>> +				delay_use=0.1
>> +					0.1 second delay
>> +				delay_use=2.55
>> +					2.55 second elay
> 
> This should show all 3 decimal places:
> 
>				delay_use=2.567
>					2.567 second delay

I see.

> As I said before, the parsing code should be in a separate function to make reviewing the code easier.  It also should be written more clearly.  Here's my attempt (not tested at all).  You might prefer to remove some of the comments; I put in a lot of them.
> 
> /**
>  * str_to_fixed_point_uint - parse an unsigned fixed-point decimal integer
>  * @str: String to parse.
>  * @ndecimals: Number of decimal places in the fixed-point value.
>  * @val: Where to store the parsed value.
>  *
>  * Parse an unsigned fixed-point decimal value in @str, containing at
>  * most ndecimal digits to the right of the decimal point.
>  * Stores the parsed value in @val, scaled by 10^(@ndecimal).
>  *
>  * As with kstrtouint(), the string must be NUL-terminated and may
>  * include a single newline before the terminating NUL.  The first
>  * character may be a plus sign but not a minus sign.  The decimal
>  * point and fractional digits are optional.
>  *
>  * Returns 0 on success, a negative error code otherwise.
>  */
> static int str_to_fixed_point_uint(const char *str, int ndecimals,
>		unsigned int *val)
> {
>	int n, n1, n2;
>	const char *p;
>	char *q;
>	char buf[16];
>
>	n = strlen(str);
>	if (n > 0 && str[n - 1] == '\n');
>		--n;
>
>	p = strchr(str, '.');
>	if (p) {
>		n1 = p++ - str;		/* Length of integral part */
>		n2 = n - (n1 + 1);	/* Length of fractional part */
>		if (n2 > ndecimals)
>			return -EINVAL;
>	} else {
>		n1 = n;			/* Length of integral part */
>		n2 = 0;			/* No fractional part */
>	}
>	if (n1 + n2 == 0 || n1 + ndecimals > sizeof(buf) - 1)
>		return -EINVAL;		/* No digits present or too long */
>
>	memcpy(buf, str, n1);		/* Integer part */
>	memcpy(buf + n1, p, n2);	/* Fractional part */
>	for (q = buf + n1 + n2; n2 < ndecimals; ++n2)
>		*q++ = '0';		/* Remaining fractional digits */
>	*q = 0;
>
>	return kstrtouint(buf, 10, val);
> }

Thank you for your help.
I'll reconsider the code changes and test it.

>> +
>> +static int delay_use_get(char *s, const struct kernel_param *kp) {
>> +	unsigned int delay_ms = *((unsigned int *)kp->arg);
>> +	unsigned int rem = do_div(delay_ms, MSEC_PER_SEC);
>> +	int len;
>> +	char buf[16];
>> +
>> +	len = scnprintf(buf, sizeof(buf), "%d", delay_ms);
>> +	if (rem) {
>> +		len += scnprintf(buf + len, sizeof(buf) - len, ".%03d", rem);
>> +		while (buf[len - 1] == '0') {
>> +			buf[len - 1] = '\0';
>> +			if (--len <= 1)
>> +				break;
>> +		}
>> +	}
> 
> While this could also go in a separate function, it's short enough to keep here.

OK, I see.
diff mbox series

Patch

diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index 561d0dd776c7..ae1eb5988706 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -6190,6 +6190,16 @@ 
 	usb-storage.delay_use=
 			[UMS] The delay in seconds before a new device is
 			scanned for Logical Units (default 1).
+			To specify more precise delay, supports 3 decimal point.
+			The range of decimal point is in milliseconds,
+			hence the minimum value is "0.001".
+			Example:
+				delay_use=1
+					1 second delay
+				delay_use=0.1
+					0.1 second delay
+				delay_use=2.55
+					2.55 second elay
 
 	usb-storage.quirks=
 			[UMS] A list of quirks entries to supplement or
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index 90aa9c12ffac..d5eb7dd8f3b1 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -67,9 +67,73 @@  MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
 MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
 MODULE_LICENSE("GPL");
 
-static unsigned int delay_use = 1;
-module_param(delay_use, uint, S_IRUGO | S_IWUSR);
-MODULE_PARM_DESC(delay_use, "seconds to delay before using a new device");
+static unsigned int delay_use = 1 * MSEC_PER_SEC;
+
+static int delay_use_set(const char *s, const struct kernel_param *kp)
+{
+	unsigned int delay_ms = 0;
+	int frac = 3, ret;
+	char *p = skip_spaces(s);
+	char buf[16];
+
+	if (strlen(p) >= sizeof(buf) - frac)
+		return -EINVAL;
+
+	strscpy_pad(buf, p, sizeof(buf));
+
+	p = strchr(buf, '.');
+	if (p) {
+		int i = 0;
+		char *tmp = p + 1;
+
+		while (tmp[i] && tmp[i] != '\n')
+			*p++ = tmp[i++];
+
+		if (i == 0 || i > frac)
+			return -EINVAL;
+		frac -= i;
+	} else {
+		p = buf + strlen(buf) - 1;
+		if (*p != '\n')
+			p++;
+	}
+	while (frac-- > 0)
+		*p++ = '0';
+	*p = '\0';
+
+	ret = kstrtouint(buf, 10, &delay_ms);
+	if (ret < 0)
+		return ret;
+
+	*((unsigned int *)kp->arg) = delay_ms;
+	return 0;
+}
+
+static int delay_use_get(char *s, const struct kernel_param *kp)
+{
+	unsigned int delay_ms = *((unsigned int *)kp->arg);
+	unsigned int rem = do_div(delay_ms, MSEC_PER_SEC);
+	int len;
+	char buf[16];
+
+	len = scnprintf(buf, sizeof(buf), "%d", delay_ms);
+	if (rem) {
+		len += scnprintf(buf + len, sizeof(buf) - len, ".%03d", rem);
+		while (buf[len - 1] == '0') {
+			buf[len - 1] = '\0';
+			if (--len <= 1)
+				break;
+		}
+	}
+	return scnprintf(s, PAGE_SIZE, "%s\n", buf);
+}
+
+static const struct kernel_param_ops delay_use_ops = {
+	.set = delay_use_set,
+	.get = delay_use_get,
+};
+module_param_cb(delay_use, &delay_use_ops, &delay_use, 0644);
+MODULE_PARM_DESC(delay_use, "time to delay before using a new device");
 
 static char quirks[128];
 module_param_string(quirks, quirks, sizeof(quirks), S_IRUGO | S_IWUSR);
@@ -1066,7 +1130,7 @@  int usb_stor_probe2(struct us_data *us)
 	if (delay_use > 0)
 		dev_dbg(dev, "waiting for device to settle before scanning\n");
 	queue_delayed_work(system_freezable_wq, &us->scan_dwork,
-			delay_use * HZ);
+			msecs_to_jiffies(delay_use));
 	return 0;
 
 	/* We come here if there are any problems */