* [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration
@ 2026-06-11 9:09 Akash Kumar
2026-06-11 9:15 ` sashiko-bot
2026-06-11 9:20 ` Krzysztof Kozlowski
0 siblings, 2 replies; 4+ messages in thread
From: Akash Kumar @ 2026-06-11 9:09 UTC (permalink / raw)
To: Greg Kroah-Hartman, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Dmitry Baryshkov, Krzysztof Kozlowski, Conor Dooley
Cc: linux-usb, linux-kernel, linux-arm-msm, devicetree
The USB Attached SCSI (UAS) protocol is supported by many modern USB
storage devices. It provides significantly higher performance than the
legacy Mass Storage Class (MSC) by supporting multiple outstanding
commands and command queuing.
Enable CONFIG_USB_UAS=y in the default arm64 configuration to provide
better out-of-the-box performance for USB storage devices on arm64
platforms.
Signed-off-by: Akash Kumar <akakum@qti.qualcomm.com>
---
arch/arm64/configs/defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index d905a0777f93..f82e9df77941 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1216,6 +1216,7 @@ CONFIG_USB_RENESAS_USBHS_HCD=m
CONFIG_USB_RENESAS_USBHS=m
CONFIG_USB_ACM=m
CONFIG_USB_STORAGE=y
+CONFIG_USB_UAS=y
CONFIG_USB_CDNS_SUPPORT=m
CONFIG_USB_CDNS3=m
CONFIG_USB_CDNS3_GADGET=y
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration
2026-06-11 9:09 [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration Akash Kumar
@ 2026-06-11 9:15 ` sashiko-bot
2026-06-11 9:24 ` Krzysztof Kozlowski
2026-06-11 9:20 ` Krzysztof Kozlowski
1 sibling, 1 reply; 4+ messages in thread
From: sashiko-bot @ 2026-06-11 9:15 UTC (permalink / raw)
To: Akash Kumar; +Cc: robh, conor+dt, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Mismatch between Author email and Signed-off-by email.
--
commit 8dd2d2a3035d6deca9f623e43d26b74e60f0f6d7
Author: Akash Kumar <akash.kumar@oss.qualcomm.com>
arm64: defconfig: Enable USB_UAS in arm64 configuration
This commit enables CONFIG_USB_UAS=y in the default arm64 configuration
to provide better out-of-the-box performance for USB storage devices.
> Author: Akash Kumar <akash.kumar@oss.qualcomm.com>
[ ... ]
> Signed-off-by: Akash Kumar <akakum@qti.qualcomm.com>
[Severity: Low]
This isn't a bug, but there is a mismatch between the Author email and the
Signed-off-by email.
The Author is listed as akash.kumar@oss.qualcomm.com, but the Signed-off-by
tag uses akakum@qti.qualcomm.com.
Should these match to satisfy the standard Developer Certificate of Origin
expectations for patch submission?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260611090946.2790631-1-akash.kumar@oss.qualcomm.com?part=1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration
2026-06-11 9:09 [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration Akash Kumar
2026-06-11 9:15 ` sashiko-bot
@ 2026-06-11 9:20 ` Krzysztof Kozlowski
1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-11 9:20 UTC (permalink / raw)
To: Akash Kumar, Greg Kroah-Hartman, Bjorn Andersson, Konrad Dybcio,
Rob Herring, Dmitry Baryshkov, Krzysztof Kozlowski, Conor Dooley
Cc: linux-usb, linux-kernel, linux-arm-msm, devicetree
On 11/06/2026 11:09, Akash Kumar wrote:
> The USB Attached SCSI (UAS) protocol is supported by many modern USB
> storage devices. It provides significantly higher performance than the
> legacy Mass Storage Class (MSC) by supporting multiple outstanding
> commands and command queuing.
>
> Enable CONFIG_USB_UAS=y in the default arm64 configuration to provide
> better out-of-the-box performance for USB storage devices on arm64
> platforms.
Anyone in upstream actually uses it for development? Care to show some
examples?
This is not a distro config, you know...
>
> Signed-off-by: Akash Kumar <akakum@qti.qualcomm.com>
> ---
> arch/arm64/configs/defconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
> index d905a0777f93..f82e9df77941 100644
> --- a/arch/arm64/configs/defconfig
> +++ b/arch/arm64/configs/defconfig
> @@ -1216,6 +1216,7 @@ CONFIG_USB_RENESAS_USBHS_HCD=m
> CONFIG_USB_RENESAS_USBHS=m
> CONFIG_USB_ACM=m
> CONFIG_USB_STORAGE=y
> +CONFIG_USB_UAS=y
For sure not built-in...
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration
2026-06-11 9:15 ` sashiko-bot
@ 2026-06-11 9:24 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-06-11 9:24 UTC (permalink / raw)
To: sashiko-reviews, Akash Kumar
Cc: robh, conor+dt, devicetree, linux-arm-msm, Bjorn Andersson,
Konrad Dybcio
On 11/06/2026 11:15, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [Low] Mismatch between Author email and Signed-off-by email.
> --
>
> commit 8dd2d2a3035d6deca9f623e43d26b74e60f0f6d7
> Author: Akash Kumar <akash.kumar@oss.qualcomm.com>
>
> arm64: defconfig: Enable USB_UAS in arm64 configuration
>
> This commit enables CONFIG_USB_UAS=y in the default arm64 configuration
> to provide better out-of-the-box performance for USB storage devices.
>
>> Author: Akash Kumar <akash.kumar@oss.qualcomm.com>
> [ ... ]
>> Signed-off-by: Akash Kumar <akakum@qti.qualcomm.com>
>
> [Severity: Low]
> This isn't a bug, but there is a mismatch between the Author email and the
> Signed-off-by email.
This is a bug... DCO email must match.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-06-11 9:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-11 9:09 [PATCH] arm64: defconfig: Enable USB_UAS in arm64 configuration Akash Kumar
2026-06-11 9:15 ` sashiko-bot
2026-06-11 9:24 ` Krzysztof Kozlowski
2026-06-11 9:20 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox