Hi,
I installed the latest -proposed kernel image in bionic (HWE variant), but the bug is not fixed there. It looks like it's not merged into the 5.0 kernel there. That's easy to see, because modinfo, still shows the old parameter description:
root@sirius:~# modinfo ums-realtek
filename: /lib/modules/5.0.0-31-generic/kernel/drivers/usb/storage/ums-realtek.ko
license: GPL
author: wwang <email address hidden>
description: Driver for Realtek USB Card Reader
srcversion: 644B44C347E6C4FFEFDA3C7
alias: usb:v0BDAp0184d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0BDAp0177d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0BDAp0159d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0BDAp0158d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0BDAp0153d*dc*dsc*dp*ic*isc*ip*in*
alias: usb:v0BDAp0138d*dc*dsc*dp*ic*isc*ip*in*
depends: usb-storage
retpoline: Y
intree: Y
name: ums_realtek
vermagic: 5.0.0-31-generic SMP mod_unload
signat: PKCS#7
signer:
sig_key:
sig_hashalgo: md4
parm: auto_delink_en:enable auto delink (int)
parm: enable_mmc:enable mmc support (int)
parm: ss_en:enable selective suspend (int)
parm: ss_delay:seconds to delay before entering selective suspend (int)
This is wrong:
auto_delink_en:enable auto delink (int)
According to the kernel patch (https://lkml.org/lkml/2019/9/4/1276) it should be:
auto_delink_en:auto delink mode (0=firmware, 1=software [default]) (int)
To fix the problem I still need the workaround by setting auto_delink_en to "0".
Hi,
I installed the latest -proposed kernel image in bionic (HWE variant), but the bug is not fixed there. It looks like it's not merged into the 5.0 kernel there. That's easy to see, because modinfo, still shows the old parameter description:
root@sirius:~# modinfo ums-realtek 5.0.0-31- generic/ kernel/ drivers/ usb/storage/ ums-realtek. ko FEFDA3C7 *dc*dsc* dp*ic*isc* ip*in* *dc*dsc* dp*ic*isc* ip*in* *dc*dsc* dp*ic*isc* ip*in* *dc*dsc* dp*ic*isc* ip*in* *dc*dsc* dp*ic*isc* ip*in* *dc*dsc* dp*ic*isc* ip*in* en:enable auto delink (int)
filename: /lib/modules/
license: GPL
author: wwang <email address hidden>
description: Driver for Realtek USB Card Reader
srcversion: 644B44C347E6C4F
alias: usb:v0BDAp0184d
alias: usb:v0BDAp0177d
alias: usb:v0BDAp0159d
alias: usb:v0BDAp0158d
alias: usb:v0BDAp0153d
alias: usb:v0BDAp0138d
depends: usb-storage
retpoline: Y
intree: Y
name: ums_realtek
vermagic: 5.0.0-31-generic SMP mod_unload
signat: PKCS#7
signer:
sig_key:
sig_hashalgo: md4
parm: auto_delink_
parm: enable_mmc:enable mmc support (int)
parm: ss_en:enable selective suspend (int)
parm: ss_delay:seconds to delay before entering selective suspend (int)
This is wrong: en:enable auto delink (int)
auto_delink_
According to the kernel patch (https:/ /lkml.org/ lkml/2019/ 9/4/1276) it should be:
auto_delink_en:auto delink mode (0=firmware, 1=software [default]) (int)
To fix the problem I still need the workaround by setting auto_delink_en to "0".