Linux USB
 help / color / mirror / Atom feed
From: "xiao sheng wen(肖盛文)" <atzlinux@sina.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Huacai Chen <chenhuacai@loongson.cn>
Cc: Huacai Chen <chenhuacai@kernel.org>,
	Alan Stern <stern@rowland.harvard.edu>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	stable@vger.kernel.org,
	debian-loongarch <debian-loongarch@lists.debian.org>
Subject: Re: [PATCH] USB: OHCI/UHCI: Add soft dependencies on ehci_hcd
Date: Tue, 30 Dec 2025 17:00:19 +0800	[thread overview]
Message-ID: <511cc15a-1f1a-4dc8-bd63-157c59a179f7@sina.com> (raw)
In-Reply-To: <2025123049-cadillac-straggler-d2fb@gregkh>


[-- Attachment #1.1: Type: text/plain, Size: 2299 bytes --]

Hi,

在 2025/12/30 16:15, Greg Kroah-Hartman 写道:
> On Tue, Dec 30, 2025 at 04:00:14PM +0800, Huacai Chen wrote:
>> Commit 9beeee6584b9aa4f ("USB: EHCI: log a warning if ehci-hcd is not
>> loaded first") said that ehci-hcd should be loaded before ohci-hcd and
>> uhci-hcd. However, commit 05c92da0c52494ca ("usb: ohci/uhci - add soft
>> dependencies on ehci_pci") only makes ohci-pci/uhci-pci depend on ehci-
>> pci, which is not enough and we may still see the warnings in boot log.
>> So fix it by also making ohci-hcd/uhci-hcd depend on ehci-hcd.
>>
>> Cc: stable@vger.kernel.org
>> Reported-by: Shengwen Xiao <atzlinux@sina.com>
>> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
>> ---
>>  drivers/usb/host/ohci-hcd.c | 1 +
>>  drivers/usb/host/uhci-hcd.c | 1 +
>>  2 files changed, 2 insertions(+)
>>
>> diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c
>> index 9c7f3008646e..549c965b7fbe 100644
>> --- a/drivers/usb/host/ohci-hcd.c
>> +++ b/drivers/usb/host/ohci-hcd.c
>> @@ -1355,4 +1355,5 @@ static void __exit ohci_hcd_mod_exit(void)
>>  	clear_bit(USB_OHCI_LOADED, &usb_hcds_loaded);
>>  }
>>  module_exit(ohci_hcd_mod_exit);
>> +MODULE_SOFTDEP("pre: ehci_hcd");
> 
> Ick, no, this way lies madness.  I hate the "softdep" stuff, it's
> usually a sign that something is wrong elsewhere.
> 
> And don't add this _just_ to fix a warning message in a boot log, if you
> don't like that message, then build the module into your kernel, right?
In Debian kernel config, the USB driver module is config as module.

I meet this warning info in my Loongarch machine 3A6000 on Debian:

[    1.119467] Warning! ehci_hcd should always be loaded before uhci_hcd and ohci_hcd, not after

I hope this warning can fix in my Loongarch machine.

> 
> And I really should just go revert 05c92da0c524 ("usb: ohci/uhci - add
> soft dependencies on ehci_pci") as well, that feels wrong too.
> 
> thanks,
> 
> greg k-h

Is there more better way to fix this Warning info?


BTW: I'm not a kernel developer, just a Loongarch linux user.

thanks,
-- 
肖盛文 xiao sheng wen -- Debian Developer(atzlinux)
Debian QA page: https://qa.debian.org/developer.php?login=atzlinux%40debian.org
GnuPG Public Key: 0x00186602339240CB


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

  reply	other threads:[~2025-12-30  9:05 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-30  8:00 [PATCH] USB: OHCI/UHCI: Add soft dependencies on ehci_hcd Huacai Chen
2025-12-30  8:15 ` Greg Kroah-Hartman
2025-12-30  9:00   ` xiao sheng wen(肖盛文) [this message]
2025-12-30 14:40   ` Diederik de Haas
2025-12-30 16:42     ` Alan Stern
2025-12-31  9:38       ` Huacai Chen
2025-12-31 15:20         ` Alan Stern
2026-01-02  2:36           ` Huacai Chen
2026-01-02 15:13             ` Alan Stern
2026-01-03  3:16               ` Huacai Chen
2026-01-03  3:33                 ` Alan Stern
2026-01-03  3:57                   ` Huacai Chen
2026-01-03 16:41                     ` Alan Stern
2026-01-10  4:05                       ` Huacai Chen
2026-01-10 15:00                         ` Alan Stern
2026-01-11  1:54                           ` Huacai Chen
2026-01-11  2:04                             ` Alan Stern
2025-12-31 17:33       ` Diederik de Haas
2025-12-31 18:09         ` Alan Stern
2025-12-30 16:23   ` Alan Stern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=511cc15a-1f1a-4dc8-bd63-157c59a179f7@sina.com \
    --to=atzlinux@sina.com \
    --cc=chenhuacai@kernel.org \
    --cc=chenhuacai@loongson.cn \
    --cc=debian-loongarch@lists.debian.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox