[Kernel-packages] [Bug 1835540] Re: Confusing "modinfo: ERROR: missing module or filename." during normal operation
According to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=943569, this is fixed in debian dkms=2.7.1-5. ** Bug watch added: Debian Bug tracker #943569 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=943569 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to dkms in Ubuntu. https://bugs.launchpad.net/bugs/1835540 Title: Confusing "modinfo: ERROR: missing module or filename." during normal operation Status in dkms package in Ubuntu: Confirmed Bug description: I just installed a new kernel, and when I did so my Nvidia kernel modules were handled through DKMS, as you would expect. However, during what I believe is normal operation, I saw the following stanza (repeated for several nvidia .ko files): nvidia.ko: Running module version sanity check. modinfo: ERROR: missing module or filename. - Original module - No original module exists within this kernel - Installation - Installing to /lib/modules/5.0.0-20-generic/updates/dkms/ The "ERROR" in here gave me pause, but I _believe_ that's an expected message for a new kernel. It would make for a less troubling user experience if we didn't print out "ERROR" in all caps when there is no error at all. ProblemType: Bug DistroRelease: Ubuntu 19.10 Package: dkms 2.7.1-1ubuntu1 ProcVersionSignature: Ubuntu 5.0.0-17.18-generic 5.0.8 Uname: Linux 5.0.0-17-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia ApportVersion: 2.20.11-0ubuntu3 Architecture: amd64 CurrentDesktop: i3 Date: Fri Jul 5 09:52:41 2019 InstallationDate: Installed on 2019-05-07 (58 days ago) InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210) PackageArchitecture: all SourcePackage: dkms UpgradeStatus: Upgraded to eoan on 2019-05-08 (57 days ago) To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/dkms/+bug/1835540/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1838245] Re: dkms script is missing function find_module
I'm still seeing this on Eoan, which has dkms 2.7.1-4ubuntu2 - the symptom is that virtualbox-dkms does not correctly build and install its kernel modules with the message `modinfo: ERROR: missing module or filename.` -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to dkms in Ubuntu. https://bugs.launchpad.net/bugs/1838245 Title: dkms script is missing function find_module Status in DKMS: Fix Released Status in dkms package in Ubuntu: Fix Released Status in dkms source package in Bionic: Fix Released Bug description: update for SRU process: [Impact] 1. dkms script is missing function find_module 2. priority of OBSOLETE_BY should higher than "force". #89 https://github.com/dell/dkms/issues/89 [Test case] install the dkms which already patched (also can be found in my ppa[1]) 1. install a dkms which for a kernel module system already installed. e.g. ath10k of my testing ppa : [1] 1.1. the dkms can be installed well. 2. install a dkms which has OBSOLETE_BY and FORCE e.g.ath10k of my testing ppa : [1] (source code in [2]) - the target dkms defined OBSOLETE_BY and FORCE - user install dkms on a system which installed kernel version less than OBSOLETE_BY and another kernel higher than OBSOLETE_BY - the dkms can be installed well. [Regression potential] medium as it touched the version sanity. This change correct the code logic and land one more change from upstream as well. The logic has been verified by #5 and me. Building a kernel module using dkms in Linux Mint 19.1 shows the following error: Running module version sanity check. /usr/sbin/dkms: Zeile 784: find_module: Befehl nicht gefunden modinfo: ERROR: missing module or filename. Checking the file the function is indeed missing and another user confirmed, that it was removed at some point: https://github.com/linuxmint/linuxmint/issues/142 Possible solution: Readd find_module() { # tree = $1 # module = $2 find "$1" -name "$2$module_uncompressed_suffix" -o -name "$2$module_suffix" -type f return $? } as found in https://github.com/dell/dkms/blob/master/dkms To manage notifications about this bug go to: https://bugs.launchpad.net/dkms/+bug/1838245/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1838245] Re: dkms script is missing function find_module
For me, the fix is to change line 812 of /usr/sbin/dkms from: [ -z $kernels_module ] || return 0 to [ -z $kernels_module ] && return 0 This was fixed upstream here: https://github.com/dell/dkms/commit/b95779938805aca8e98d57492b18dee07d35d285 -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to dkms in Ubuntu. https://bugs.launchpad.net/bugs/1838245 Title: dkms script is missing function find_module Status in DKMS: Fix Released Status in dkms package in Ubuntu: Fix Released Status in dkms source package in Bionic: Fix Released Bug description: update for SRU process: [Impact] 1. dkms script is missing function find_module 2. priority of OBSOLETE_BY should higher than "force". #89 https://github.com/dell/dkms/issues/89 [Test case] install the dkms which already patched (also can be found in my ppa[1]) 1. install a dkms which for a kernel module system already installed. e.g. ath10k of my testing ppa : [1] 1.1. the dkms can be installed well. 2. install a dkms which has OBSOLETE_BY and FORCE e.g.ath10k of my testing ppa : [1] (source code in [2]) - the target dkms defined OBSOLETE_BY and FORCE - user install dkms on a system which installed kernel version less than OBSOLETE_BY and another kernel higher than OBSOLETE_BY - the dkms can be installed well. [Regression potential] medium as it touched the version sanity. This change correct the code logic and land one more change from upstream as well. The logic has been verified by #5 and me. Building a kernel module using dkms in Linux Mint 19.1 shows the following error: Running module version sanity check. /usr/sbin/dkms: Zeile 784: find_module: Befehl nicht gefunden modinfo: ERROR: missing module or filename. Checking the file the function is indeed missing and another user confirmed, that it was removed at some point: https://github.com/linuxmint/linuxmint/issues/142 Possible solution: Readd find_module() { # tree = $1 # module = $2 find "$1" -name "$2$module_uncompressed_suffix" -o -name "$2$module_suffix" -type f return $? } as found in https://github.com/dell/dkms/blob/master/dkms To manage notifications about this bug go to: https://bugs.launchpad.net/dkms/+bug/1838245/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Re: System hangs after suspend
I'm running a custom kernel build because when I installed Ubuntu on this laptop (19.10) various things were not supported in the stock kernel. I'm now trying to apply a BIOS update which apparently has some ACPI-related stuff in it, but this is proving difficult as HP's BIOS updates are somewhat Windows-centric. Once I've done that, I'll switch to the 5.8.0-26-generic kernel and report back. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Incomplete Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] CRDA.txt
apport information ** Attachment added: "CRDA.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433473/+files/CRDA.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433474/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433475/+files/IwConfig.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433476/+files/Lspci.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Re: System hangs after suspend
apport information ** Tags added: groovy staging ** Description changed: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True + --- + ProblemType: Bug + ApportVersion: 2.20.11-0ubuntu50 + Architecture: amd64 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/controlC1: tkcook 2526 F pulseaudio + /dev/snd/controlC0: tkcook 2526 F pulseaudio + CasperMD5CheckResult: skip + DistroRelease: Ubuntu 20.10 + InstallationDate: Installed on 2019-10-17 (390 days ago) + InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) + MachineType: HP HP ENVY x360 Convertible 15-ds0xxx + Package: linux (not installed) + ProcEnviron: + LANGUAGE=en_GB:en + TERM=xterm-256color + PATH=(custom, no user) + LANG=en_GB.UTF-8 + SHELL=/bin/bash + ProcFB: 0 amdgpudrmfb + ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 + ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 + PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. + RelatedPackageVersions: + linux-restricted-modules-5.8.0-26-generic N/A + linux-backports-modules-5.8.0-26-generic N/A + linux-firmware1.190.1 + StagingDrivers: ashmem_linux + Tags: groovy staging + Uname: Linux 5.8.0-26-generic x86_64 + UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) + UserGroups: N/A + _MarkForUpload: True + dmi.bios.date: 05/28/2020 + dmi.bios.release: 15.20 + dmi.bios.vendor: AMI + dmi.bios.version: F.20 + dmi.board.asset.tag: Base Board Asset Tag + dmi.board.name: 85DD + dmi.board.vendor: HP + dmi.board.version: 40.36 + dmi.chassis.type: 31 + dmi.chassis.vendor: HP + dmi.chassis.version: Chassis Version + dmi.ec.firmware.release: 40.36 + dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: + dmi.product.family: 103C_5335KV HP Envy + dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx + dmi.product.sku: 6TD06EA#ABU + dmi.sys.vendor: HP + mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 ** Attachment added: "AlsaInfo.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433472/+files/AlsaInfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04
[Kernel-packages] [Bug 1903292] Lspci-vt.txt
apport information ** Attachment added: "Lspci-vt.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433477/+files/Lspci-vt.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] acpidump.txt
apport information ** Attachment added: "acpidump.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433489/+files/acpidump.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] ProcCpuinfoMinimal.txt
apport information ** Attachment added: "ProcCpuinfoMinimal.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433483/+files/ProcCpuinfoMinimal.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433485/+files/ProcModules.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Re: System hangs after suspend
I've applied the latest BIOS update from HP but this has not made any difference to the problem. I've also verified the problem still exists when running the 2.8.0-26-generic kernel from groovy. I've also run the apport-collect requested above using that kernel. ** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433484/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Lsusb-v.txt
apport information ** Attachment added: "Lsusb-v.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433480/+files/Lsusb-v.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433488/+files/WifiSyslog.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433487/+files/UdevDb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] modified.conffile..etc.apport.crashdb.conf.txt
apport information ** Attachment added: "modified.conffile..etc.apport.crashdb.conf.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433490/+files/modified.conffile..etc.apport.crashdb.conf.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433482/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Lsusb.txt
apport information ** Attachment added: "Lsusb.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433478/+files/Lsusb.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] RfKill.txt
apport information ** Attachment added: "RfKill.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433486/+files/RfKill.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] Lsusb-t.txt
apport information ** Attachment added: "Lsusb-t.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433479/+files/Lsusb-t.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1903292] PaInfo.txt
apport information ** Attachment added: "PaInfo.txt" https://bugs.launchpad.net/bugs/1903292/+attachment/5433481/+files/PaInfo.txt -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1903292 Title: System hangs after suspend Status in linux package in Ubuntu: Confirmed Bug description: I'm running 20.04 LTS on an HP Envy x360 Ryzen 7 3700U with Radeon Vega Mobile. The gdm3 package is at version 3.36.3-0ubuntu0.20.04.2. When I trigger a suspend with `echo mem > /sys/power/state` the system appears to go into mem suspend correctly. Hitting a key should bring the display back with the lock screen displayed, but instead briefly brings a slightly scrambled screen to life and then the screen goes black and stays that way. The system is still up as I can SSH into it. Killing the gdm-wayland-session process then brings me back to the GDM login screen and I can start a new session. --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu27.10 Architecture: amd64 CasperMD5CheckResult: skip CurrentDesktop: ubuntu:GNOME DisplayManager: gdm3 DistroRelease: Ubuntu 20.04 InstallationDate: Installed on 2019-10-17 (388 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) Package: gnome-shell 3.36.4-1ubuntu1~20.04.2 PackageArchitecture: amd64 RelatedPackageVersions: mutter-common 3.36.6-1ubuntu0.20.04.2 Tags: wayland-session third-party-packages focal Uname: Linux 5.9.0 x86_64 UpgradeStatus: Upgraded to focal on 2020-04-28 (194 days ago) UserGroups: adm cdrom dip disk docker lpadmin lxd plugdev sambashare sudo _MarkForUpload: True --- ProblemType: Bug ApportVersion: 2.20.11-0ubuntu50 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/controlC1: tkcook 2526 F pulseaudio /dev/snd/controlC0: tkcook 2526 F pulseaudio CasperMD5CheckResult: skip DistroRelease: Ubuntu 20.10 InstallationDate: Installed on 2019-10-17 (390 days ago) InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017) MachineType: HP HP ENVY x360 Convertible 15-ds0xxx Package: linux (not installed) ProcEnviron: LANGUAGE=en_GB:en TERM=xterm-256color PATH=(custom, no user) LANG=en_GB.UTF-8 SHELL=/bin/bash ProcFB: 0 amdgpudrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-26-generic root=/dev/mapper/vgubuntu-root ro splash acpi.debug_level=2 acpi.debug_layer=0x acpi_osi=Linux amd_iommu=off amdgpu.gpu_recovery=1 xhci_hcd.quirks=1074143232 ProcVersionSignature: Ubuntu 5.8.0-26.27-generic 5.8.14 PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No PulseAudio daemon running, or not running as session daemon. RelatedPackageVersions: linux-restricted-modules-5.8.0-26-generic N/A linux-backports-modules-5.8.0-26-generic N/A linux-firmware1.190.1 StagingDrivers: ashmem_linux Tags: groovy staging Uname: Linux 5.8.0-26-generic x86_64 UpgradeStatus: Upgraded to groovy on 2020-11-09 (1 days ago) UserGroups: N/A _MarkForUpload: True dmi.bios.date: 05/28/2020 dmi.bios.release: 15.20 dmi.bios.vendor: AMI dmi.bios.version: F.20 dmi.board.asset.tag: Base Board Asset Tag dmi.board.name: 85DD dmi.board.vendor: HP dmi.board.version: 40.36 dmi.chassis.type: 31 dmi.chassis.vendor: HP dmi.chassis.version: Chassis Version dmi.ec.firmware.release: 40.36 dmi.modalias: dmi:bvnAMI:bvrF.20:bd05/28/2020:br15.20:efr40.36:svnHP:pnHPENVYx360Convertible15-ds0xxx:pvr:rvnHP:rn85DD:rvr40.36:cvnHP:ct31:cvrChassisVersion: dmi.product.family: 103C_5335KV HP Envy dmi.product.name: HP ENVY x360 Convertible 15-ds0xxx dmi.product.sku: 6TD06EA#ABU dmi.sys.vendor: HP mtime.conffile..etc.apport.crashdb.conf: 2020-11-09T09:19:45.442981 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1903292/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 2052597] [NEW] NVreg_PreserveVideoMemoryAllocations=1 should be the default
Public bug reported: As far as I can tell, any system with an NVIDIA graphics card won't resume from sleep correctly when running mantic unless the NVIDIA driver has the option `NVreg_PreserveVideoMemoryAllocations=1` set. This is because by default most video memory allocations are not preserved on suspend and the user space needs to handle the case where (from the application's point of view) they suddenly and mysteriously go missing. The GNOME shell fails to do this and fails fairly spectacularly. This results in a wide variety of visual defects but leaves the system unusable. The suggested option works around this by making the driver write video memory out to file while suspending and restoring video memory from file when resuming. It's important that the path where this temporary file is written out has enough free space to hold all of video memory; on mantic, `/tmp` (the default) seems appropriate as it is not a ramfs but this could be configured elsewhere. While there are obviously cases where this behaviour is not desired (mainly where GPUs are used for non-display purposes), it seems likely that in the vast majority of cases where such a GPU is present and the system is regularly put into a sleep state that the GPU will be used for display and not as a GPGPU. Systems that are put into sleep states tend to be portables, where the GPU is primarily for display; systems used for GPGPU tend not to be portable and are not usually put into sleep states where the GPU is shut down. Obviously these are generalisations, but they are _generally_ true. It's also likely that users doing GPGPU will already have to go and reconfigure their systems for optimal performance whereas desktop users generally expect the system to work correctly out of the box. I'm a long-term Ubuntu user and software engineer and it took me a couple of weeks to figure out that suspend isn't broken on my new laptop, I just need to set GPU driver options; the chances of a normal user figuring this out are slim. I'd suggest that putting the option in /etc/modprobe.d/nvidia-graphics- drivers-kms.conf is likely to be the right way to achieve this. $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description:Ubuntu 23.10 Release:23.10 Codename: mantic $ apt-cache policy nvidia-kernel-common-535 nvidia-kernel-common-535: Installed: 535.154.05-0ubuntu0.23.10.1 Candidate: 535.154.05-0ubuntu0.23.10.1 Version table: *** 535.154.05-0ubuntu0.23.10.1 500 500 http://gb.archive.ubuntu.com/ubuntu mantic-updates/restricted amd64 Packages 500 http://security.ubuntu.com/ubuntu mantic-security/restricted amd64 Packages 100 /var/lib/dpkg/status 535.113.01-0ubuntu3 500 500 http://gb.archive.ubuntu.com/ubuntu mantic/rest ** Affects: nvidia-graphics-drivers-535 (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to nvidia-graphics-drivers-535 in Ubuntu. https://bugs.launchpad.net/bugs/2052597 Title: NVreg_PreserveVideoMemoryAllocations=1 should be the default Status in nvidia-graphics-drivers-535 package in Ubuntu: New Bug description: As far as I can tell, any system with an NVIDIA graphics card won't resume from sleep correctly when running mantic unless the NVIDIA driver has the option `NVreg_PreserveVideoMemoryAllocations=1` set. This is because by default most video memory allocations are not preserved on suspend and the user space needs to handle the case where (from the application's point of view) they suddenly and mysteriously go missing. The GNOME shell fails to do this and fails fairly spectacularly. This results in a wide variety of visual defects but leaves the system unusable. The suggested option works around this by making the driver write video memory out to file while suspending and restoring video memory from file when resuming. It's important that the path where this temporary file is written out has enough free space to hold all of video memory; on mantic, `/tmp` (the default) seems appropriate as it is not a ramfs but this could be configured elsewhere. While there are obviously cases where this behaviour is not desired (mainly where GPUs are used for non-display purposes), it seems likely that in the vast majority of cases where such a GPU is present and the system is regularly put into a sleep state that the GPU will be used for display and not as a GPGPU. Systems that are put into sleep states tend to be portables, where the GPU is primarily for display; systems used for GPGPU tend not to be portable and are not usually put into sleep states where the GPU is shut down. Obviously these are generalisations, but they are _generally_ true. It's also likely that users doing GPGPU will already have to go and reconfigure their systems for optimal performance whereas de
[Kernel-packages] [Bug 2044512] Re: Build failure if run in a console
Is there a workaround for this defect? Could you please link to the fix that has been committed? -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/2044512 Title: Build failure if run in a console Status in linux package in Ubuntu: Confirmed Status in linux source package in Mantic: Fix Committed Status in linux source package in Noble: Confirmed Bug description: [Impact] Build fails if run in a console: $ debian/rules binary ... # Compress kernel modules find debian/linux-unstable-tools-6.6.0-12 -name '*.ko' -print0 | xargs -0 -n1 -P 8 zstd -19 --quiet --rm stdout is a console, aborting make: *** [debian/rules.d/2-binary-arch.mk:769: binary-perarch] Error 123 [Test Case] See above. [Where Problems Could Occur] Build failures. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2044512/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 2044512] Re: Build failure if run in a console
Thanks! -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/2044512 Title: Build failure if run in a console Status in linux package in Ubuntu: Confirmed Status in linux source package in Mantic: Fix Committed Status in linux source package in Noble: Confirmed Bug description: [Impact] Build fails if run in a console: $ debian/rules binary ... # Compress kernel modules find debian/linux-unstable-tools-6.6.0-12 -name '*.ko' -print0 | xargs -0 -n1 -P 8 zstd -19 --quiet --rm stdout is a console, aborting make: *** [debian/rules.d/2-binary-arch.mk:769: binary-perarch] Error 123 [Test Case] See above. [Where Problems Could Occur] Build failures. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2044512/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1956401] Re: amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22 works
Confirmed on Ryzen 7 3700U, and that the -24 pre-release update fixes it. Standby has never worked on this system so I can't comment on that. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1956401 Title: amdgpu hangs for 90 seconds at a time in 5.13.0-23, but 5.13.0-22 works Status in linux package in Ubuntu: Invalid Status in linux source package in Impish: Confirmed Bug description: SRU Justification Impact: This does not occur with linux-image-5.13.0-22-generic, but does with linux-image-5.13.0-23-generic. On startup, I get about a 60 second hang, with the following in the kernel dmesg: Jan 4 15:26:36 inspiron-3505 kernel: [ 34.160572] amdgpu :04:00.0: amdgp : failed to write reg 28b4 wait reg 28c6 Jan 4 15:26:56 inspiron-3505 kernel: [ 54.189055] amdgpu :04:00.0: amdgp : failed to write reg 1a6f4 wait reg 1a706 Jan 4 15:27:16 inspiron-3505 kernel: [ 74.329264] amdgpu :04:00.0: amdgp : failed to write reg 28b4 wait reg 28c6 Jan 4 15:27:36 inspiron-3505 kernel: [ 94.337904] amdgpu :04:00.0: amdgp : failed to write reg 1a6f4 wait reg 1a706 I have the following GPU: 04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Picass o (rev c2) (prog-if 00 [VGA controller]) 04:00.0 0300: 1002:15d8 (rev c2) (This is a Ryzen 5 3450U CPU with Radeon Vega Mobile.) I get a similar hang if I start firefox (when it's probing OpenGL contexts), and even with glxgears and glxinfo. Seems like anything that'd kick on a OpenGL context does it. I had a freeze as well when I tried running firefox and glxgears both. Along with odd BUG: messages logged (I have some in the attached log.) I was running with "iommu=pt", but did try with this removed, still got the errors (I think amdgpu driver uses the IOMMU even when it's set to IOMMU=pt though.). See the attached log for some very odd "[Hardware Error]" messages that were logged on one test run. I think this was when I tried to run firestorm (second life viewer) -- that had a large pause then opened to a black window. Per Google, I see there was a bug like this that turned up in kernel 5.14.15 but fixed in 5.14.17. See https://gitlab.freedesktop.org/drm/amd/-/issues/1770 Thanks! --Henry Fix: upstream commit afd18180c070 ("drm/amdkfd: fix boot failure when iommu is disabled in Picasso.") Patch was included in the Impish kernel in -proposed (5.13.0.24.24) from an upstream patch set. multiple confirmations the problem is resolved with the kernel in -proposed. To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1956401/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp
[Kernel-packages] [Bug 1733888] Re: iwlwifi Error sending STATISTICS_CMD: time out after 2000ms.
I'm still seeing this in 18.04 LTS. Linux newt 4.15.0-54-generic #58-Ubuntu SMP Mon Jun 24 10:55:24 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux I've attached dmesg output. ** Attachment added: "dmesg.save" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1733888/+attachment/5279363/+files/dmesg.save -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1733888 Title: iwlwifi Error sending STATISTICS_CMD: time out after 2000ms. Status in linux package in Ubuntu: Expired Bug description: This started happening today so probably a new issue caused by a kernel update. Randomly, maybe every 45 minutes wifi disconnects and reconnects. Attached is a log output from dmesg. Looks like issue is in the iwlwifi driver. Disconnect causes TCP connections to drop so it's quite annoying for end user. ThinkPad T460p, up to date kernel on Ubuntu 17.04. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: linux-image-4.10.0-40-generic 4.10.0-40.44 ProcVersionSignature: Ubuntu 4.10.0-40.44-generic 4.10.17 Uname: Linux 4.10.0-40-generic x86_64 ApportVersion: 2.20.4-0ubuntu4.8 Architecture: amd64 AudioDevicesInUse: USERPID ACCESS COMMAND /dev/snd/pcmC1D0p: vranki 2298 F...m pulseaudio /dev/snd/controlC1: vranki 2298 F pulseaudio /dev/snd/controlC0: vranki 2298 F pulseaudio CurrentDesktop: X-Cinnamon Date: Wed Nov 22 16:57:46 2017 HibernationDevice: RESUME=UUID=65d76bf9-e895-4dbb-9424-bfd0d498bd43 InstallationDate: Installed on 2017-03-29 (238 days ago) InstallationMedia: Ubuntu 17.04 "Zesty Zapus" - Beta amd64 (20170321) MachineType: LENOVO 20FW0042MS ProcFB: 0 inteldrmfb ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.10.0-40-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7 RelatedPackageVersions: linux-restricted-modules-4.10.0-40-generic N/A linux-backports-modules-4.10.0-40-generic N/A linux-firmware 1.164.1 SourcePackage: linux UpgradeStatus: No upgrade log present (probably fresh install) dmi.bios.date: 09/26/2016 dmi.bios.vendor: LENOVO dmi.bios.version: R07ET71W (2.11 ) dmi.board.asset.tag: Not Available dmi.board.name: 20FW0042MS dmi.board.vendor: LENOVO dmi.board.version: SDK0J40697 WIN dmi.chassis.asset.tag: No Asset Information dmi.chassis.type: 10 dmi.chassis.vendor: LENOVO dmi.chassis.version: None dmi.modalias: dmi:bvnLENOVO:bvrR07ET71W(2.11):bd09/26/2016:svnLENOVO:pn20FW0042MS:pvrThinkPadT460p:rvnLENOVO:rn20FW0042MS:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone: dmi.product.name: 20FW0042MS dmi.product.version: ThinkPad T460p dmi.sys.vendor: LENOVO To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1733888/+subscriptions -- Mailing list: https://launchpad.net/~kernel-packages Post to : kernel-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~kernel-packages More help : https://help.launchpad.net/ListHelp