[Kernel-packages] [Bug 1866506] Re: not able to use advance touchpad

2020-05-08 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

** Changed in: linux (Ubuntu)
   Status: Incomplete => Expired

-- 
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/1866506

Title:
  not able to use advance touchpad

Status in linux package in Ubuntu:
  Expired

Bug description:
  i had done dual boot of my pc.Primary is window 10 and secondary is
  ubuntu. I am not able to use touchpad in ubuntu if it is in advance
  mode.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: linux-image-4.15.0-88-generic 4.15.0-88.88
  ProcVersionSignature: Ubuntu 4.15.0-88.88-generic 4.15.18
  Uname: Linux 4.15.0-88-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7.11
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  sachin 1647 F pulseaudio
   /dev/snd/controlC0:  sachin 1647 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Mar  8 02:28:00 2020
  InstallationDate: Installed on 2019-08-19 (201 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  MachineType: Acer Aspire ES1-522
  ProcEnviron:
   TERM=xterm-color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_IN
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-88-generic 
root=UUID=0ee2768a-d958-4391-b5f0-00a70bb3b90d ro psmouse.elantech_smbus=0 
ivrs_ioapic[32]=00:14.0 nosplash irqpoll
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-88-generic N/A
   linux-backports-modules-4.15.0-88-generic  N/A
   linux-firmware 1.173.15
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/28/2016
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.07.IN01
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: BELLEMERE_BE
  dmi.board.vendor: Acer
  dmi.board.version: V1.07.IN01
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: Acer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.07.IN01:bd04/28/2016:svnAcer:pnAspireES1-522:pvrV1.07.IN01:rvnAcer:rnBELLEMERE_BE:rvrV1.07.IN01:cvnAcer:ct9:cvrChassisVersion:
  dmi.product.family: CZL
  dmi.product.name: Aspire ES1-522
  dmi.product.version: V1.07.IN01
  dmi.sys.vendor: Acer

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1866506/+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 1870189] Re: initramfs does not get loaded

2020-05-08 Thread David Baird
I don't know how to escalate attention to this issue. Is emailing the
author of commit 6a814c759e10feafb40c3669be30aa51eb5ce39b, which seems
to have introduced the issue, acceptable? I'm surprised it's not causing
more issues. I guess people don't care about the cloud images much?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1870189

Title:
  initramfs does not get loaded

Status in grub2 package in Ubuntu:
  Confirmed
Status in linux-azure package in Ubuntu:
  Confirmed

Bug description:
  A Gen-1 Ubuntu 19.10 VM on Azure was created and upgraded to Ubuntu
  20.04 by “do-release-upgrade –d”.

  Then the latest Ubuntu v5.6 kernel was installed from
  https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.6/. As soon as a
  reboot was performed, a panic with the v5.6 kernel occured because the
  rootfs can not be found.

  It turns out by default, initramfs does not get loaded:

  /boot/grub/grub.cfg:
  menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os 
$menuentry_id_option 'gnulinux-simple-3d2737e8-
  b95a-42bf-bac1-bb6fb4cda87f' {
  …
  if [ "${initrdfail}" = 1 ]; then
linux /boot/vmlinuz-5.6.0-050600-generic 
root=PARTUUID=bc3d472f-401e-4774-affa-df1acba65a73 ro  console=tty1 
console=ttyS0 earlyprintk=ttyS0 ignore_loglevel sysrq_always_enabled 
unknown_nmi_panic
initrd/boot/initrd.img-5.6.0-050600-generic
  else
linux /boot/vmlinuz-5.6.0-050600-generic 
root=PARTUUID=bc3d472f-401e-4774-affa-df1acba65a73 ro  console=tty1 
console=ttyS0 earlyprintk=ttyS0 ignore_loglevel sysrq_always_enabled 
unknown_nmi_panic panic=-1
#Dexuan: here the initrd line is missing!
  fi
  initrdfail
  }

  
  As we can see, Ubuntu only uses the initrd.img if initrdfail=1. Normally, 
initrdfail = 0, so when we boot the v5.6 kernel for the first time, we must hit 
the “fail to mount rootfs” panic and the kernel will automatically reboot….   

  Also, the “initrdfail” here marks initrdfail=1, so when the kernel
  boots for the 2nd time, the kernel should successfully boot up.  Next,
  when the kernel boots for the 3rd time, it panics again since the
  userspace program resets initrdfail to 0, and next time when the
  kernel boots, it can boot up successfully -- this
  “panic/success/panic/success” pattern repeats forever…

  
  The linux-azure kernels are not affected since they have the vmbus driver and 
storage drivers built-in (i.e. “=y”):
  /boot/config-5.3.0-1013-azure:CONFIG_HYPERV_STORAGE=y
  /boot/config-5.3.0-1013-azure:CONFIG_HYPERV=y
  /boot/config-5.4.0-1006-azure:CONFIG_HYPERV_STORAGE=y
  /boot/config-5.4.0-1006-azure:CONFIG_HYPERV=y
  /boot/config-5.6.0-050600-generic:CONFIG_HYPERV_STORAGE=m
  /boot/config-5.6.0-050600-generic:CONFIG_HYPERV=m
  The v5.6 kernel uses =m rather than =y, so is affected here.

  
  It looks the setting may be intentional, but we should not assume a customer 
kernel must have the necessary vmbus/storage drivers built-in. 

  This issue only happens to the Ubuntu Marketplace image (19.10 and maybe 
19.04 as well?) on Azure. 
  We installed a Ubuntu  20.04 VM from the .iso file from 
http://cdimage.ubuntu.com/daily-live/pending/ and don’t see the strange grub 
issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1870189/+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 1860986] Re: openvswitch: same tcp session encapsulated with different udp src port for ovs vxlan tunnel

2020-05-08 Thread Kelsey Margarete Skunberg
Before back porting commit bd1903b7c4596 ("net: openvswitch: add hash info to 
upcall"), a couple points should be addressed:
- xenial backport is skipping one netlink attribute, which will
introduce an ABI incompatibility
- Needs a test case


Submission and conversation on the kernel mailing list can be found here:
https://lists.ubuntu.com/archives/kernel-team/2020-May/109666.html


** Changed in: linux (Ubuntu Xenial)
   Status: New => Incomplete

** Changed in: linux (Ubuntu Bionic)
   Status: New => Incomplete

** Changed in: linux (Ubuntu Eoan)
   Status: New => Incomplete

** Changed in: linux (Ubuntu Focal)
   Status: New => Incomplete

-- 
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/1860986

Title:
  openvswitch: same tcp session encapsulated with different udp src port
  for ovs vxlan tunnel

Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Xenial:
  Incomplete
Status in linux source package in Bionic:
  Incomplete
Status in linux source package in Eoan:
  Incomplete
Status in linux source package in Focal:
  Incomplete

Bug description:
  [SRU Justification]

  [Impact]

  Packets encapsulated into a vxlan tunnel with openvswitch don't have
  the same udp source port for the first packet and the following ones
  of the same  TCP flow in a DOCKER scenario usecase.

  In fact, when using the kernel datapath, the upcall don't include skb
  hash info relatived. As VXLAN module uses the skb hash to select UDP
  src port, the source port is different for the first packet.

  More information can be found here:
  https://mail.openvswitch.org/pipermail/ovs-dev/2019-October/364062.html

  This has been fixed in v5.5 by the following upstream commit:
  bd1903b7c4596 ("net: openvswitch: add hash info to upcall")

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/net/openvswitch?id=bd1903b7c4596ba6f7677d0dfefd05ba5876707d

  The bug exists since the beginning of vxlan support in openvswitch.

  == Fix ==

  Backport the requested patches to Focal (5.4), Eoan (5.3), Bionic (4.15) and
  Xenial (4.4).

  == Risk of Regression ==

  This patch only add hash information when we do upcall, thus the risk
  should be low.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1860986/+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 1877654] [NEW] Add XDP support to hv_netvsc driver

2020-05-08 Thread Joseph Salisbury
Public bug reported:

Microsoft would like to request the following three patches in all
releases supported on Azure:

351e1581395fc (“hv_netvsc: Add XDP support”)
12fa74383ed4d (“hv_netvsc: Update document for XDP support”)
184367dce4f7 (“hv_netvsc: Fix XDP refcnt for synthetic and VF NICs”)


These patches add support of XDP in native mode to the hv_netvsc driver, and
transparently sets the XDP program on the associated VF NIC as well.

** Affects: linux-azure (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1877654

Title:
  Add XDP support to hv_netvsc driver

Status in linux-azure package in Ubuntu:
  New

Bug description:
  Microsoft would like to request the following three patches in all
  releases supported on Azure:

  351e1581395fc (“hv_netvsc: Add XDP support”)
  12fa74383ed4d (“hv_netvsc: Update document for XDP support”)
  184367dce4f7 (“hv_netvsc: Fix XDP refcnt for synthetic and VF NICs”)

  
  These patches add support of XDP in native mode to the hv_netvsc driver, and
  transparently sets the XDP program on the associated VF NIC as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-azure/+bug/1877654/+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 1837326] Re: platform eisa.0: EISA: Cannot allocate resource for mainboard

2020-05-08 Thread bug1837326 sufferer
Still happens in 20.04 with
Linux warg 5.4.0-29-generic #33-Ubuntu SMP Wed Apr 29 14:32:27 UTC 2020 x86_64 
x86_64 x86_64 GNU/Linux

-- 
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/1837326

Title:
  platform eisa.0: EISA: Cannot allocate resource for mainboard

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.889531] platform eisa.0: EISA: Cannot allocate resource for mainboard
  [0.889533] platform eisa.0: Cannot allocate resource for EISA slot 1
  [0.889535] platform eisa.0: Cannot allocate resource for EISA slot 2
  [0.889536] platform eisa.0: Cannot allocate resource for EISA slot 3
  [0.889537] platform eisa.0: Cannot allocate resource for EISA slot 4
  [0.889539] platform eisa.0: Cannot allocate resource for EISA slot 5
  [0.889540] platform eisa.0: Cannot allocate resource for EISA slot 6
  [0.889541] platform eisa.0: Cannot allocate resource for EISA slot 7
  [0.889542] platform eisa.0: Cannot allocate resource for EISA slot 8

  ProblemType: Bug
  DistroRelease: Ubuntu 19.10
  Package: linux-image-5.2.0-8-generic 5.2.0-8.9
  ProcVersionSignature: Ubuntu 5.2.0-8.9-generic 5.2.0
  Uname: Linux 5.2.0-8-generic x86_64
  ApportVersion: 2.20.11-0ubuntu5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   3028 F pulseaudio
   /dev/snd/pcmC0D0p:   caravena   3028 F...m pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Jul 21 12:16:07 2019
  HibernationDevice: RESUME=UUID=efcf081f-0bb0-4907-b78c-1299aa4aee57
  InstallationDate: Installed on 2018-12-02 (230 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: HP HP Pavilion x360 Convertible 14-cd0xxx
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-5.2.0-8-generic 
root=UUID=28bdadba-133c-4f5b-a5c9-b06993ea7ce2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.2.0-8-generic N/A
   linux-backports-modules-5.2.0-8-generic  N/A
   linux-firmware   1.181
  SourcePackage: linux
  UpgradeStatus: Upgraded to eoan on 2018-12-02 (230 days ago)
  dmi.bios.date: 04/29/2019
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.34
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 8486
  dmi.board.vendor: HP
  dmi.board.version: 72.23
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.34:bd04/29/2019:svnHP:pnHPPavilionx360Convertible14-cd0xxx:pvrType1ProductConfigId:rvnHP:rn8486:rvr72.23:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Pavilion
  dmi.product.name: HP Pavilion x360 Convertible 14-cd0xxx
  dmi.product.sku: 3PX63LA#ABM
  dmi.product.version: Type1ProductConfigId
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1837326/+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 1877647] [NEW] Make sched clock return nanoseconds correctly

2020-05-08 Thread Joseph Salisbury
Public bug reported:

The problem was introduced in Linux kernel version 5.4, and was fixed in
5.6.   So only users of the 5.4 and 5.5 kernels will see this problem,
which means Ubuntu 20.04 at the moment.

The fix was backported to upstream stable 5.4, so it should be picked up
via stable updates.  This bug is primary to ensure the fix is not
missed.

The commit to fix this issue is:

749da8ca978f ("clocksource/drivers/hyper-v: Make sched clock return
nanoseconds correctly")

** Affects: linux-azure (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-azure in Ubuntu.
https://bugs.launchpad.net/bugs/1877647

Title:
  Make sched clock return nanoseconds correctly

Status in linux-azure package in Ubuntu:
  New

Bug description:
  The problem was introduced in Linux kernel version 5.4, and was fixed
  in 5.6.   So only users of the 5.4 and 5.5 kernels will see this
  problem, which means Ubuntu 20.04 at the moment.

  The fix was backported to upstream stable 5.4, so it should be picked
  up via stable updates.  This bug is primary to ensure the fix is not
  missed.

  The commit to fix this issue is:

  749da8ca978f ("clocksource/drivers/hyper-v: Make sched clock return
  nanoseconds correctly")

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-azure/+bug/1877647/+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 1872863] Autopkgtest regression report (kmod/24-1ubuntu3.4)

2020-05-08 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted kmod (24-1ubuntu3.4) for bionic have 
finished running.
The following regressions have been reported in tests triggered by the package:

chrony/3.2-4ubuntu4.4 (armhf)
linux-hwe-5.0/5.0.0-48.52~18.04.1 (arm64)
linux-aws-5.3/5.3.0-1018.20~18.04.1 (arm64)
linux/4.15.0-100.101 (arm64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/bionic/update_excuses.html#kmod

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

-- 
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/1872863

Title:
  QEMU/KVM display is garbled when booting from kernel EFI stub due to
  missing bochs-drm module

Status in kmod package in Ubuntu:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released
Status in kmod source package in Bionic:
  Fix Committed
Status in linux source package in Bionic:
  Fix Committed

Bug description:
  BugLink: https://bugs.launchpad.net/bugs/1872863

  [Impact]

  A recent grub2 SRU, LP #1864533, now forces the kernel to boot via the
  kernel EFI stub whenever EFI is enabled. This causes problems for
  QEMU/KVM virtual machines which use the VGA=std video device, as the
  efifb driver yields an unreadable garbled screen. See the attached
  image.

  The correct framebuffer driver to use in this situation is bochs-drm,
  and modprobing it from a HWE kernel fixes the issues.

  bochs-drm is missing from Bionic since CONFIG_DRM_BOCHS was disabled
  in LP #1378648 due to bochs-drm causing problems in a PowerKVM
  machine. This problem appears to be fixed now, and bochs-drm has been
  re-enabled for Disco and up, in LP #1795857 and has been proven safe.

  This has also come up again in LP #1823152, as well as chatter on LP
  #1795857 to get this enabled on Bionic.

  The customer which is experiencing this issue cannot switch to VGA=qxl
  as a workaround, and must use VGA=std, hence I suggest we re-enable
  bochs-drm for Bionic.

  [Fix]

  I noticed on Focal, if you boot, the framebuffer is initially efifb:

  [ 0.603716] efifb: probing for efifb
  [ 0.603733] efifb: framebuffer at 0xc000, using 1876k, total 1875k
  [ 0.603735] efifb: mode is 800x600x32, linelength=3200, pages=1
  [ 0.603736] efifb: scrolling: redraw
  [ 0.603738] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
  [ 0.604462] Console: switching to colour frame buffer device 100x37
  [ 0.605829] fb0: EFI VGA frame buffer device

  This soon changes to bochs-drm about a second later:

  [ 0.935988] bochs-drm :00:01.0: remove_conflicting_pci_framebuffers: bar 
0: 0xc000 -> 0xc0ff
  [ 0.937023] bochs-drm :00:01.0: remove_conflicting_pci_framebuffers: bar 
2: 0xc1c8c000 -> 0xc1c8cfff
  [ 0.937776] checking generic (c000 1d5000) vs hw (c000 100)
  [ 0.937776] fb0: switching to bochsdrmfb from EFI VGA
  [ 0.939085] Console: switching to colour dummy device 80x25
  [ 0.939117] bochs-drm :00:01.0: vgaarb: deactivate vga console
  [ 0.939210] [drm] Found bochs VGA, ID 0xb0c5.
  [ 0.939212] [drm] Framebuffer size 16384 kB @ 0xc000, mmio @ 0xc1c8c000.
  [ 0.941955] lpc_ich :00:1f.0: I/O space for GPIO uninitialized
  [ 0.942069] [TTM] Zone kernel: Available graphics memory: 2006780 KiB
  [ 0.942081] [TTM] Initializing pool allocator
  [ 0.942089] [TTM] Initializing DMA pool allocator
  [ 0.943026] virtio_blk virtio2: [vda] 20971520 512-byte logical blocks (10.7 
GB/10.0 GiB)
  [ 0.944019] [drm] Found EDID data blob.
  [ 0.944162] [drm] Initialized bochs-drm 1.0.0 20130925 for :00:01.0 on 
minor 0
  [ 0.944979] fbcon: bochs-drmdrmfb (fb0) is primary device
  [ 0.947712] Console: switching to colour frame buffer device 128x48

  On bionic, the framebuffer never changes from efifb, since the bochs-
  drm kernel module is not built, and it is also present on the module
  banlist in /etc/modprobe.d/blacklist-framebuffer.conf

  bochs-drm needs to be enabled to be built in the kernel config, and
  removed from the module blacklist in kmod.

  [Testcase]

  Create a new QEMU/KVM virtual machine, I used virt-manager. Before you
  install the OS, check the box to modify settings before install. In
  the "Overview" tab, enable EFI by setting the firmware to "UEFI
  x86_64: /usr/share/OVMF/OVMF_CODE.secboot.fd".

  Set the video device to qxl while you install Bionic. Once the install
  is done, reboot, do a "apt update" and "apt upgrade", to ensure you
  have grub2 2.02-2ubuntu8.15 installed.

  Shut the VM down, and set the video device to VGA. Or VGA=std if you
  use the QEMU command line.

  Start the VM up, and the screen will be garbled. See attached picture.

  If you install my test packages, which are available here:

  

[Kernel-packages] [Bug 1877677] Re: Disco update: upstream stable patchset 2020-05-08

2020-05-08 Thread Kamal Mostafa
** Changed in: linux (Ubuntu)
   Status: Confirmed => In Progress

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Kamal Mostafa (kamalmostafa)

-- 
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/1877677

Title:
  Disco update: upstream stable patchset 2020-05-08

Status in linux package in Ubuntu:
  In Progress

Bug description:
  SRU Justification

  Impact:
     The upstream process for stable tree updates is quite similar
     in scope to the Ubuntu SRU process, e.g., each patch has to
     demonstrably fix a bug, and each patch is vetted by upstream
     by originating either directly from a mainline/stable Linux tree or
     a minimally backported form of that patch. The following upstream
     stable patches should be included in the Ubuntu kernel:

     upstream stable patchset 2020-05-08

  Ported from the following upstream stable releases:
  v4.19.119, v5.4.36

     from git://git.kernel.org/

  ext4: fix extent_status fragmentation for plain files
  drm/msm: Use the correct dma_sync calls harder
  bpftool: Fix printing incorrect pointer in btf_dump_ptr
  vti4: removed duplicate log message.
  arm64: Add part number for Neoverse N1
  UBUNTU: [Config] updateconfigs for ARM64_ERRATUM_1542419
  arm64: errata: Hide CTR_EL0.DIC on systems affected by Neoverse-N1 #1542419
  arm64: Fake the IminLine size on systems affected by Neoverse-N1 #1542419
  arm64: compat: Workaround Neoverse-N1 #1542419 for compat user-space
  arm64: Silence clang warning on mismatched value/register sizes
  watchdog: reset last_hw_keepalive time at start
  scsi: lpfc: Fix kasan slab-out-of-bounds error in lpfc_unreg_login
  scsi: lpfc: Fix crash in target side cable pulls hitting WAIT_FOR_UNREG
  ceph: return ceph_mdsc_do_request() errors from __get_parent()
  ceph: don't skip updating wanted caps when cap is stale
  pwm: rcar: Fix late Runtime PM enablement
  scsi: iscsi: Report unbind session event when the target has been removed
  ASoC: Intel: atom: Take the drv->lock mutex before calling sst_send_slot_map()
  nvme: fix deadlock caused by ANA update wrong locking
  kernel/gcov/fs.c: gcov_seq_next() should increase position index
  selftests: kmod: fix handling test numbers above 9
  ipc/util.c: sysvipc_find_ipc() should increase position index
  kconfig: qconf: Fix a few alignment issues
  s390/cio: avoid duplicated 'ADD' uevents
  loop: Better discard support for block devices
  Revert "powerpc/64: irq_work avoid interrupt when called with hardware irqs 
enabled"
  pwm: renesas-tpu: Fix late Runtime PM enablement
  pwm: bcm2835: Dynamically allocate base
  perf/core: Disable page faults when getting phys address
  ASoC: Intel: bytcr_rt5640: Add quirk for MPMAN MPWIN895CL tablet
  xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3
  drm/amd/display: Not doing optimize bandwidth if flip pending.
  virtio-blk: improve virtqueue error to BLK_STS
  scsi: smartpqi: fix call trace in device discovery
  PCI/ASPM: Allow re-enabling Clock PM
  net: ipv6: add net argument to ip6_dst_lookup_flow
  net: ipv6_stub: use ip6_dst_lookup_flow instead of ip6_dst_lookup
  f2fs: fix to avoid memory leakage in f2fs_listxattr
  cxgb4: fix adapter crash due to wrong MC size
  cxgb4: fix large delays in PTP synchronization
  ipv6: fix restrict IPV6_ADDRFORM operation
  macsec: avoid to set wrong mtu
  macvlan: fix null dereference in macvlan_device_event()
  net: bcmgenet: correct per TX/RX ring statistics
  net: netrom: Fix potential nr_neigh refcnt leak in nr_add_node
  net: stmmac: dwmac-meson8b: Add missing boundary to RGMII TX clock array
  net/x25: Fix x25_neigh refcnt leak when receiving frame
  sched: etf: do not assume all sockets are full blown
  tcp: cache line align MAX_TCP_HEADER
  team: fix hang in team_mode_get()
  vrf: Fix IPv6 with qdisc and xfrm
  net: dsa: b53: Lookup VID in ARL searches when VLAN is enabled
  net: dsa: b53: Fix ARL register definitions
  net: dsa: b53: Rework ARL bin logic
  net: dsa: b53: b53_arl_rw_op() needs to select IVL or SVL
  xfrm: Always set XFRM_TRANSFORMED in xfrm{4,6}_output_finish
  vrf: Check skb for XFRM_TRANSFORMED flag
  mlxsw: Fix some IS_ERR() vs NULL bugs
  KEYS: Avoid false positive ENOMEM error on key read
  ALSA: hda: Remove ASUS ROG Zenith from the blacklist
  ALSA: usb-audio: Add static mapping table for ALC1220-VB-based mobos
  ALSA: usb-audio: Add connector notifier delegation
  iio: core: remove extra semi-colon from devm_iio_device_register() macro
  iio: st_sensors: rely on odr mask to know if odr can be set
  iio: adc: stm32-adc: fix sleep in atomic context
  iio: xilinx-xadc: Fix ADC-B powerdown
  iio: xilinx-xadc: Fix clearing interrupt when enabling trigger
  iio: xilinx-xadc: Fix sequencer configuration for aux channels in 
simultaneous mode
  iio: xilinx-xadc: Make 

[Kernel-packages] [Bug 1877677] [NEW] Disco update: upstream stable patchset 2020-05-08

2020-05-08 Thread Kamal Mostafa
Public bug reported:

SRU Justification

Impact:
   The upstream process for stable tree updates is quite similar
   in scope to the Ubuntu SRU process, e.g., each patch has to
   demonstrably fix a bug, and each patch is vetted by upstream
   by originating either directly from a mainline/stable Linux tree or
   a minimally backported form of that patch. The following upstream
   stable patches should be included in the Ubuntu kernel:

   upstream stable patchset 2020-05-08

Ported from the following upstream stable releases:
v4.19.119, v5.4.36

   from git://git.kernel.org/

ext4: fix extent_status fragmentation for plain files
drm/msm: Use the correct dma_sync calls harder
bpftool: Fix printing incorrect pointer in btf_dump_ptr
vti4: removed duplicate log message.
arm64: Add part number for Neoverse N1
UBUNTU: [Config] updateconfigs for ARM64_ERRATUM_1542419
arm64: errata: Hide CTR_EL0.DIC on systems affected by Neoverse-N1 #1542419
arm64: Fake the IminLine size on systems affected by Neoverse-N1 #1542419
arm64: compat: Workaround Neoverse-N1 #1542419 for compat user-space
arm64: Silence clang warning on mismatched value/register sizes
watchdog: reset last_hw_keepalive time at start
scsi: lpfc: Fix kasan slab-out-of-bounds error in lpfc_unreg_login
scsi: lpfc: Fix crash in target side cable pulls hitting WAIT_FOR_UNREG
ceph: return ceph_mdsc_do_request() errors from __get_parent()
ceph: don't skip updating wanted caps when cap is stale
pwm: rcar: Fix late Runtime PM enablement
scsi: iscsi: Report unbind session event when the target has been removed
ASoC: Intel: atom: Take the drv->lock mutex before calling sst_send_slot_map()
nvme: fix deadlock caused by ANA update wrong locking
kernel/gcov/fs.c: gcov_seq_next() should increase position index
selftests: kmod: fix handling test numbers above 9
ipc/util.c: sysvipc_find_ipc() should increase position index
kconfig: qconf: Fix a few alignment issues
s390/cio: avoid duplicated 'ADD' uevents
loop: Better discard support for block devices
Revert "powerpc/64: irq_work avoid interrupt when called with hardware irqs 
enabled"
pwm: renesas-tpu: Fix late Runtime PM enablement
pwm: bcm2835: Dynamically allocate base
perf/core: Disable page faults when getting phys address
ASoC: Intel: bytcr_rt5640: Add quirk for MPMAN MPWIN895CL tablet
xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3
drm/amd/display: Not doing optimize bandwidth if flip pending.
virtio-blk: improve virtqueue error to BLK_STS
scsi: smartpqi: fix call trace in device discovery
PCI/ASPM: Allow re-enabling Clock PM
net: ipv6: add net argument to ip6_dst_lookup_flow
net: ipv6_stub: use ip6_dst_lookup_flow instead of ip6_dst_lookup
f2fs: fix to avoid memory leakage in f2fs_listxattr
cxgb4: fix adapter crash due to wrong MC size
cxgb4: fix large delays in PTP synchronization
ipv6: fix restrict IPV6_ADDRFORM operation
macsec: avoid to set wrong mtu
macvlan: fix null dereference in macvlan_device_event()
net: bcmgenet: correct per TX/RX ring statistics
net: netrom: Fix potential nr_neigh refcnt leak in nr_add_node
net: stmmac: dwmac-meson8b: Add missing boundary to RGMII TX clock array
net/x25: Fix x25_neigh refcnt leak when receiving frame
sched: etf: do not assume all sockets are full blown
tcp: cache line align MAX_TCP_HEADER
team: fix hang in team_mode_get()
vrf: Fix IPv6 with qdisc and xfrm
net: dsa: b53: Lookup VID in ARL searches when VLAN is enabled
net: dsa: b53: Fix ARL register definitions
net: dsa: b53: Rework ARL bin logic
net: dsa: b53: b53_arl_rw_op() needs to select IVL or SVL
xfrm: Always set XFRM_TRANSFORMED in xfrm{4,6}_output_finish
vrf: Check skb for XFRM_TRANSFORMED flag
mlxsw: Fix some IS_ERR() vs NULL bugs
KEYS: Avoid false positive ENOMEM error on key read
ALSA: hda: Remove ASUS ROG Zenith from the blacklist
ALSA: usb-audio: Add static mapping table for ALC1220-VB-based mobos
ALSA: usb-audio: Add connector notifier delegation
iio: core: remove extra semi-colon from devm_iio_device_register() macro
iio: st_sensors: rely on odr mask to know if odr can be set
iio: adc: stm32-adc: fix sleep in atomic context
iio: xilinx-xadc: Fix ADC-B powerdown
iio: xilinx-xadc: Fix clearing interrupt when enabling trigger
iio: xilinx-xadc: Fix sequencer configuration for aux channels in simultaneous 
mode
iio: xilinx-xadc: Make sure not exceed maximum samplerate
fs/namespace.c: fix mountpoint reference counter race
USB: sisusbvga: Change port variable from signed to unsigned
USB: Add USB_QUIRK_DELAY_CTRL_MSG and USB_QUIRK_DELAY_INIT for Corsair K70 RGB 
RAPIDFIRE
USB: early: Handle AMD's spec-compliant identifiers, too
USB: core: Fix free-while-in-use bug in the USB S-Glibrary
USB: hub: Fix handling of connect changes during sleep
vmalloc: fix remap_vmalloc_range() bounds checks
mm/hugetlb: fix a addressing exception caused by huge_pte_offset
mm/ksm: fix NULL pointer dereference when KSM zero page is enabled

[Kernel-packages] [Bug 1838151] Re: Poor quality audio with modern Bluetooth headsets in HSP/HFP. Missing wide band speech support.

2020-05-08 Thread Jeff Nappi
Great to see traction on this, thank you for all your efforts Daniel!
And to everyone else, this is a far more complex problem than you can
imagine  However it can and will be solved :)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1838151

Title:
  Poor quality audio with modern Bluetooth headsets in HSP/HFP.  Missing
  wide band speech support.

Status in PulseAudio:
  New
Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed
Status in Arch Linux:
  New

Bug description:
  Bluetooth HSP/HFP audio quality is poor on Ubuntu comparative to all
  other major platforms (Windows, MacOS, ChromeOS, Android, iOS).

  Modern Bluetooth headsets (such as the Bose QC series headphones, many
  others) are capable of using HFP 1.6 with mSBC 16kHz audio encoding.
  As it currently stands, Ubuntu defaults to only supporting HSP
  headsets using 8kHz CVSD, and is incapable of supporting HFP 1.6 at
  this time.

  The ChromiumOS team recently tackled this issue -
  https://bugs.chromium.org/p/chromium/issues/detail?id=843048

  Their efforts may assist in bringing this to Ubuntu, however it
  appears that there are quite a lot of differences considering they
  have developed their own audio server solution etc.

  The Bluetooth Telephony Working Group published the HFP 1.6 spec in
  May 2011 -
  https://www.bluetooth.org/docman/handlers/downloaddoc.ashx?doc_id=238193

  Patches have been proposed in the past for this issue to the kernel
  and PulseAudio:

  PulseAudio: https://patchwork.freedesktop.org/patch/245272/
  Kernel: https://www.spinics.net/lists/linux-bluetooth/msg76982.html

  It appears that the Chromium OS team applied the same kernel patch:
  
https://chromium.googlesource.com/chromiumos/third_party/kernel/+/77dd0cb94c1713a8a12f6e392955dfa64c430e54

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: pulseaudio 1:12.2-2ubuntu3
  ProcVersionSignature: Ubuntu 5.0.0-20.21-generic 5.0.8
  Uname: Linux 5.0.0-20-generic x86_64
  ApportVersion: 2.20.10-0ubuntu27.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jnappi 2777 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jul 27 11:08:29 2019
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2017-11-04 (629 days ago)
  InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  UpgradeStatus: Upgraded to disco on 2019-07-18 (9 days ago)
  dmi.bios.date: 06/07/2016
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R07ET67W (2.07 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20FW000TUS
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40705 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrR07ET67W(2.07):bd06/07/2016:svnLENOVO:pn20FW000TUS:pvrThinkPadT460p:rvnLENOVO:rn20FW000TUS:rvrSDK0J40705WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T460p
  dmi.product.name: 20FW000TUS
  dmi.product.sku: LENOVO_MT_20FW_BU_Think_FM_ThinkPad T460p
  dmi.product.version: ThinkPad T460p
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/pulseaudio/+bug/1838151/+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 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread Rob Cork
Strange, i have an i7-1065G7 and haven't had the issue since upgrading
to 5.3.0-52. @benjamin-gemmill, what are you doing to test the issue.
Maybe i can replicate on my system to see if i get the error to. So far
i've been error free since April 30th on this kernel.

System:Host: XPS-13-9300 Kernel: 5.3.0-52-generic x86_64 bits: 64 Desktop: 
Cinnamon 4.4.8 Distro: Linux Mint 19.3 Tricia 
CPU:   Topology: Quad Core model: Intel Core i7-1065G7 bits: 64 type: MT 
MCP L2 cache: 8192 KiB 
   Speed: 1805 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 1187 2: 
1158 3: 1196 4: 1200 5: 1200 6: 1200 7: 1202 
   8: 1142 
Graphics:  Device-1: Intel driver: i915 v: kernel 
   Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa 
   resolution: 2560x1440~60Hz, 2560x1440~60Hz 
   OpenGL: renderer: Mesa DRI Intel Iris Plus Graphics (Ice Lake 8x8 
GT2) v: 4.5 Mesa 19.2.8

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: 

[Kernel-packages] [Bug 1877488] Lsusb.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1877488/+attachment/5368600/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] CRDA.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1877488/+attachment/5368595/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] CurrentDmesg.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368596/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] ProcModules.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368606/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] WifiSyslog.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368610/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] IwConfig.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368597/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Lsusb-t.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368601/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] PulseList.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368607/+files/PulseList.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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] RfKill.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1877488/+attachment/5368608/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Lspci-vt.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368599/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] UdevDb.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1877488/+attachment/5368609/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Lspci.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1877488/+attachment/5368598/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Lsusb-v.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368602/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Re: External mouse movement wakes computer from hibernate

2020-05-08 Thread Lisa Nelson
apport information

** Tags added: apport-collected

** Description changed:

  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because the
  Legion logo lights up.  After a little while (minute?)  it evidently
  suspends again because the logo turns off again.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  lisa   1854 F pulseaudio
+  /dev/snd/controlC0:  lisa   1854 F pulseaudio
+  /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 20.04
+ InstallationDate: Installed on 2020-03-12 (57 days ago)
+ InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
+ MachineType: LENOVO 81T2
+ NonfreeKernelModules: nvidia_modeset nvidia
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 VESA VGA
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
+ RelatedPackageVersions:
+  linux-restricted-modules-5.4.0-30-generic N/A
+  linux-backports-modules-5.4.0-30-generic  N/A
+  linux-firmware1.187
+ Tags:  focal
+ Uname: Linux 5.4.0-30-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
+ _MarkForUpload: True
+ dmi.bios.date: 11/23/2019
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: BHCN35WW
+ dmi.board.asset.tag: NO Asset Tag
+ dmi.board.name: LNVNB161216
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0R32862 WIN
+ dmi.chassis.asset.tag: NO Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: Legion Y545 PG0
+ dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
+ dmi.product.family: Legion Y545 PG0
+ dmi.product.name: 81T2
+ dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
+ dmi.product.version: Legion Y545 PG0
+ dmi.sys.vendor: LENOVO

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368594/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 

[Kernel-packages] [Bug 1877488] ProcCpuinfo.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368603/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] ProcCpuinfoMinimal.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368604/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] ProcInterrupts.txt

2020-05-08 Thread Lisa Nelson
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1877488/+attachment/5368605/+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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  lisa   1854 F pulseaudio
   /dev/snd/controlC0:  lisa   1854 F pulseaudio
   /dev/snd/pcmC0D0p:   lisa   1854 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-03-12 (57 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  MachineType: LENOVO 81T2
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-30-generic 
root=UUID=51068ea2-6b38-4cfc-a75f-4f404cd04685 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-30-generic N/A
   linux-backports-modules-5.4.0-30-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-30-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dialout dip lpadmin lxd plugdev sambashare sudo 
vboxusers
  _MarkForUpload: True
  dmi.bios.date: 11/23/2019
  dmi.bios.vendor: LENOVO
  dmi.bios.version: BHCN35WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y545 PG0
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81T2:pvrLegionY545PG0:rvnLENOVO:rnLNVNB161216:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrLegionY545PG0:
  dmi.product.family: Legion Y545 PG0
  dmi.product.name: 81T2
  dmi.product.sku: LENOVO_MT_81T2_BU_idea_FM_Legion Y545 PG0
  dmi.product.version: Legion Y545 PG0
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1846539] Re: [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no longer works on Dell Venue 11 Pro 7140

2020-05-08 Thread Tony Harris
I am seeing this issue with the stock kernel in Ubuntu 20.04 on a Dell
Venue Pro 7140

-- 
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/1846539

Title:
  [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no
  longer works on Dell Venue 11 Pro 7140

Status in HWE Next:
  Confirmed
Status in Linux:
  Confirmed
Status in linux package in Ubuntu:
  Fix Released
Status in linux-oem-osp1 package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in linux-oem-osp1 source package in Eoan:
  Fix Released

Bug description:
  [Impact]
  With the current default kernel config, the SND_SOC_SOF_BROADWELL_SUPPORT
  is set to Y, then it will make the legacy intel soc driver fail, and
  moreover the current sof driver can't support broadwell well, as a
  result, many broadwell computers with I2S codec can't support sound anymore.

  [Fix]
  Intel submitted a patch, it will make those two kconfig options exclusive,
  and the legacy soc's option has higher priority, if both of them are
  enabled, sof's option will be disabled.

  [Test Case]
  Build the kernel and check the debian/build/$buidling_dir/.config,  the
  SND_SOC_SOF_BROADWELL_SUPPORT is disabled.

  [Regression Risk]
  Low, so far, the sof driver can't support broadwell machine well, so
  there is no machine use this driver yet.


  Hello!

  I noticed that since Linux 5.2rc2 audio playback no longer works on
  Dell Venue 11 Pro 7140 (Intel Core M-5Y71; rt286). Turns out that
  happened because SND_SOC_SOF_BROADWELL_SUPPORT was enabled in kernel
  binary builds since 5.2rc2: https://kernel.ubuntu.com/~kernel-
  ppa/mainline/v5.2-rc2/

  To verify this assumption I tested two builds of Linux 5.3.1.
  1. Build with enabled SND_SOC_SOF_BROADWELL_SUPPORT from 
https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.3.1/

  Audio playback doesn't work, dmesg:
  [4.072800] snd_hda_intel :00:03.0: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915])
  [4.212606] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.238009] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.294920] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.407351] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.428922] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.458926] broadwell-audio broadwell-audio: ASoC: failed to init link 
System PCM: -517
  [4.472113] haswell-pcm-audio haswell-pcm-audio: Direct firmware load for 
intel/IntcPP01.bin failed with error -2
  [4.472118] haswell-pcm-audio haswell-pcm-audio: fw image 
intel/IntcPP01.bin not available(-2)
  [4.472735] haswell-pcm-audio haswell-pcm-audio: FW loaded, mailbox 
readback FW info: type 01, - version: 00.00, build 77, source commit id: 
876ac6906f31a43b6772b23c7c983ce9dcb18a19
  [4.474607] broadwell-audio broadwell-audio: snd-soc-dummy-dai <-> System 
Pin mapping ok
  [4.474676] broadwell-audio broadwell-audio: snd-soc-dummy-dai <-> 
Offload0 Pin mapping ok
  [4.474741] broadwell-audio broadwell-audio: snd-soc-dummy-dai <-> 
Offload1 Pin mapping ok
  [4.474807] broadwell-audio broadwell-audio: snd-soc-dummy-dai <-> 
Loopback Pin mapping ok
  [4.476377] broadwell-audio broadwell-audio: rt286-aif1 <-> 
snd-soc-dummy-dai mapping ok
  [4.480344] input: broadwell-rt286 Headset as 
/devices/pci:00/INT3438:00/broadwell-audio/sound/card1/input14
  [7.892659] haswell-pcm-audio haswell-pcm-audio: error: message type 7 
header 0x8700
  [   13.015379] haswell-pcm-audio haswell-pcm-audio: error: reset stream 2 
still running
  [   13.127262] haswell-pcm-audio haswell-pcm-audio: error: reset stream 0 
still running
  [   19.623436] haswell-pcm-audio haswell-pcm-audio: ipc: --message timeout-- 
ipcx 0x8612 isr 0x ipcd 0x4700 imrx 0x7fff
  [   19.623446] haswell-pcm-audio haswell-pcm-audio: ipc: error set dx state 3 
faile

  2. Build with disabled SND_SOC_SOF_BROADWELL_SUPPORT.

  Audio playback works, dmesg:
  [4.839028] haswell-pcm-audio haswell-pcm-audio: Direct firmware load for 
intel/IntcPP01.bin failed with error -2
  [4.839034] haswell-pcm-audio haswell-pcm-audio: fw image 
intel/IntcPP01.bin not available(-2)
  [4.839644] haswell-pcm-audio haswell-pcm-audio: FW loaded, mailbox 
readback FW info: type 01, - version: 00.00, build 77, source commit id: 
876ac6906f31a43b6772b23c7c983ce9dcb18a19
  [4.851204] snd_hda_intel :00:03.0: bound :00:02.0 (ops 
i915_audio_component_bind_ops [i915])
  [4.907386] broadwell-audio broadwell-audio: snd-soc-dummy-dai <-> System 
Pin mapping ok
  [

[Kernel-packages] [Bug 1861610] Re: 'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL'

2020-05-08 Thread Mark Janes
After reading the related bug 1853277 for the Thinkbook IML variant, I
see that the elan touchpad is not visible on the i2c bus:

$ cat /sys/bus/i2c/devices/*/name
Synopsys DesignWare I2C adapter
i915 gmbus tc6
DPDDC-A
DPDDC-B
DPMST
SMBus I801 adapter at efa0
i915 gmbus dpa
i915 gmbus dpb
i915 gmbus dpc
i915 gmbus tc1
i915 gmbus tc2
i915 gmbus tc3
i915 gmbus tc4
i915 gmbus tc5

ELAN0634 does NOT show up in the list.

-- 
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/1861610

Title:
  'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL'

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.6 package in Ubuntu:
  Fix Released
Status in linux-oem-osp1 package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Confirmed
Status in linux-oem-5.6 source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux source package in Eoan:
  Confirmed
Status in linux-oem-5.6 source package in Eoan:
  Invalid
Status in linux-oem-osp1 source package in Eoan:
  Confirmed
Status in linux source package in Focal:
  In Progress
Status in linux-oem-5.6 source package in Focal:
  Fix Committed
Status in linux-oem-osp1 source package in Focal:
  Invalid

Bug description:
  [SRU Justification]

  [Impact]
  Touchpad function unavailable on some platforms with new ELAN touchpad
  HIDs.

  [Fix]
  
https://lore.kernel.org/linux-input/000201d5a8bd$9fead3f0$dfc07bd0$@emc.com.tw/
  required to match these currently unsupported IDs.

  [Test Case]
  1. check if platform is affected, e.g. with ELAN0634:

 $ sudo acpidump | grep -C3 ELAN
 2A060: 49 4E 54 31 70 0A 20 49 44 41 44 A4 84 53 42 46 INT1p.IDAD..SBF
 2A070: 53 53 42 46 49 00 5B 82 42 0E 54 50 44 32 08 5F SSBFI.[.B.TPD2._
 2A080: 41 44 52 00 08 49 44 41 44 00 08 48 49 44 32 00 ADR..IDAD..HID2.
 2A090: 08 5F 48 49 44 0D 45 4C 41 4E 30 36 33 34 00 08 ._HID.ELAN0634..
 2A0A0: 5F 43 49 44 0D 50 4E 50 30 43 35 30 00 08 5F 55 _CID.PNP0C50.._U
 2A0B0: 49 44 01 14 4B 04 5F 44 53 4D 04 A0 3C 93 68 11 ID..K._DSM..<.h.
 2A0C0: 13 0A 10 F7 F6 DF 3C 67 42 55 45 AD 05 B3 0A 3D ..https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861610/+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 1871477] Re: [nouveau] Ubuntu 18.04 freezes when using Zoom

2020-05-08 Thread TASSOS PANAGIOTOPOULOS
Try changing display driver and hopefully it will be solved

-- 
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/1871477

Title:
  [nouveau] Ubuntu 18.04 freezes when using Zoom

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I use two monitors.
  I noticed that every time I use Zoom, Ubuntu frezzes completely, at least the 
desktop. Other zoom participants inform me that they can hear me and see me but 
my system is not responsive no matter how long I leave it run.

  I use : 
  Ubuntu 18.04.4 LTS
  5.3.0-45-generic #37~18.04.1-Ubuntu SMP Fri Mar 27 15:58:10 UTC 2020 x86_64 
x86_64 x86_64 GNU/Linux

  I believe that the error is due to what is displayed in :

  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #5 0x55ac1bdb07c0 
i   resource:///org/gnome/gjs/modules/tweener/tweener.js:365 (0x7fb5040d2cd0 @ 
10)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #6 0x7ffdb79d9a50 
I   resource:///org/gnome/gjs/modules/signals.js:128 (0x7fb5040d2230 @ 386)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #7 0x55ac1bdb0730 
i   resource:///org/gnome/shell/ui/tweener.js:244 (0x7fb5040cf808 @ 159)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #8 0x7ffdb79da630 
I   resource:///org/gnome/gjs/modules/_legacy.js:82 (0x7fb5040b5de0 @ 71)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #9 0x55ac1bdb06b0 
i   resource:///org/gnome/shell/ui/tweener.js:219 (0x7fb5040cf780 @ 15)
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009

  Any hint?
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  igor  16228 F pulseaudio
   /dev/snd/pcmC2D7p:   igor  16228 F...m pulseaudio
   /dev/snd/controlC0:  igor  16228 F pulseaudio
   /dev/snd/controlC1:  igor  16228 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2020-04-01 (6 days ago)
  InstallationMedia: Ubuntu 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  IwConfig:
   lono wireless extensions.
   
   enp0s31f6  no wireless extensions.
  MachineType: MSI MS-7A72
  NonfreeKernelModules: nvidia_modeset nvidia

[Kernel-packages] [Bug 1838133] Re: realtek r8822be kernel module fails after update to linux kernel-headers 5.0.0-21

2020-05-08 Thread Pablo
Correction to my prior post: 20.04 live CD has the same issue. Wireless
works for a little while, allowing to see and connect to networks, but
stops working shortly thereafter.

Further, just trying the 20.04 live CD appears to mess the wireless card
when returning to 19.10 (which is installed on a proper drive in my
laptop).  Needed to reinstall the kernel (same version:
5.3.0-51-generic) in 19.10 to get it working again.  I have no idea what
this means.

-- 
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/1838133

Title:
  realtek r8822be kernel module fails after update to linux kernel-
  headers 5.0.0-21

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Disco:
  Fix Released
Status in linux source package in Eoan:
  Fix Released

Bug description:
  === SRU Justification ===
  [Impact]
  Realtek Wifi stops working after the driver changed from rtlwifi to
  rtw88.

  [Fix]
  Sync rtw88 to upstream version, and use MSI on the device.

  [Test]
  User confirmed the backport fixes the issue.

  [Regression Potential]
  Low. Currently only 8822be uses rtw88.

  === Original Bug Report ===
  On July 24th I upgraded to the latest linux-headers-5.0.0-21 as part of the 
dist-upgrade for latest packages in Disco Dingo 19.04. I didn't notice that 
wifi was no longer working because at work I exclusively use a wired Ethernet 
connection.

  Today, however, when I tried to use my realtek r8822be wireless card,
  I discovered that it was totally unresponsive and did not work with
  wpa_supplicant / wpa_cli even when invoked manually from the command
  line (let alone with NetworkManager). When the problem occurred, I was
  using 19.04's latest kernel 5.0.0-21.

  I then rebooted and selected kernel 5.0.0-20 from GRUB menu. "uname
  -a" shows that I am using the previous kernel version:

  Linux pj 5.0.0-20-generic #21-Ubuntu SMP Mon Jun 24 09:32:09 UTC 2019
  x86_64 x86_64 x86_64 GNU/Linux

  With this kernel version as well as linux-headers-5.0.0.20, linux-
  headers-5.0.0-20-generic, my realtek wireless card works fine. While
  booted into 5.0.0-20 kernel, here are the realtek kernel modules that
  are loaded:

  # lsmod | grep r8
  r8822be   692224  0
  mac80211  806912  1 r8822be
  cfg80211  671744  2 mac80211,r8822be
  r8169  81920  0

  Hopefully this realtek wireless regression can get fixed in the next
  minor kernel version. Let me know if you need any more information.

  Best Regards,
  Jun

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1838133/+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 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread Benjamin Gemmill
i7-1065G7 Ice Lake Gen 10 is still showing issues with 5.3.0-52

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=b0eaa5bb-0276-42d4-938f-ee6ce1627906 ro usb_storage.quirks=0bc2:2320: 
quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  tricia
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip input lpadmin plugdev sambashare sudo vboxusers
  _MarkForUpload: True
  dmi.bios.date: 07/02/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 2.4.0
  dmi.board.name: 0K0DFT
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 

[Kernel-packages] [Bug 1871477] Re: [nouveau] Ubuntu 18.04 freezes when using Zoom

2020-05-08 Thread rsteinmetz70112
I have experienced this as well.

-- 
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/1871477

Title:
  [nouveau] Ubuntu 18.04 freezes when using Zoom

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I use two monitors.
  I noticed that every time I use Zoom, Ubuntu frezzes completely, at least the 
desktop. Other zoom participants inform me that they can hear me and see me but 
my system is not responsive no matter how long I leave it run.

  I use : 
  Ubuntu 18.04.4 LTS
  5.3.0-45-generic #37~18.04.1-Ubuntu SMP Fri Mar 27 15:58:10 UTC 2020 x86_64 
x86_64 x86_64 GNU/Linux

  I believe that the error is due to what is displayed in :

  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #5 0x55ac1bdb07c0 
i   resource:///org/gnome/gjs/modules/tweener/tweener.js:365 (0x7fb5040d2cd0 @ 
10)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #6 0x7ffdb79d9a50 
I   resource:///org/gnome/gjs/modules/signals.js:128 (0x7fb5040d2230 @ 386)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #7 0x55ac1bdb0730 
i   resource:///org/gnome/shell/ui/tweener.js:244 (0x7fb5040cf808 @ 159)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #8 0x7ffdb79da630 
I   resource:///org/gnome/gjs/modules/_legacy.js:82 (0x7fb5040b5de0 @ 71)
  Απρ 07 20:37:57 igor-MS-7A72 org.gnome.Shell.desktop[1994]: #9 0x55ac1bdb06b0 
i   resource:///org/gnome/shell/ui/tweener.js:219 (0x7fb5040cf780 @ 15)
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: TRAP ch 15 
[007f3bf000 Xorg[1859]]
  Απρ 07 20:38:33 igor-MS-7A72 kernel: nouveau :01:00.0: gr: GPC0/TPC0/TEX: 
8009

  Any hint?
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  igor  16228 F pulseaudio
   /dev/snd/pcmC2D7p:   igor  16228 F...m pulseaudio
   /dev/snd/controlC0:  igor  16228 F pulseaudio
   /dev/snd/controlC1:  igor  16228 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 18.04
  InstallationDate: Installed on 2020-04-01 (6 days ago)
  InstallationMedia: Ubuntu 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  IwConfig:
   lono wireless extensions.
   
   enp0s31f6  no wireless extensions.
  MachineType: MSI MS-7A72
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not 

[Kernel-packages] [Bug 1875863] Comment bridged from LTC Bugzilla

2020-05-08 Thread bugproxy
--- Comment From eduard.shish...@ibm.com 2020-05-08 13:56 EDT---
It was accepted today. Will be in Linux-5.7-rc5

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=eb24fdd8e6f5c6bb95129748a1801c6476492aba

-- 
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/1875863

Title:
  ceph -- Unable to mount ceph volume on s390x

Status in Ubuntu on IBM z Systems:
  Incomplete
Status in linux package in Ubuntu:
  New

Bug description:
  When mounting a ceph volume, mount operation fails with an IO error.
  The problem is always reproducible.

  Identified potential root cause as kernel endian bug:

  In the function handle_session() variable @features always
  contains little endian order of bytes. Just because The feature
  mask sent by the MDS is little-endian (bits are packed bytewise
  from left to right in encode_supported_features()).

  However, test_bit(), called to check features availability, assumes
  the host order of bytes in that variable. This leads to problems on
  big endian architectures. Specifically it is impossible to mount
  ceph volume on s390.

  A fixup was proposed to convert little-endian order of bytes to the
  host one. That fixup was modified by ceph maintainers to use existing
  unpacking means for the conversion. The resulted patch attached.

  Related discussion in the ceph-development mailing list:
  https://marc.info/?l=ceph-devel=158815357301332=2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1875863/+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 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread Robert Hardy
Hmm so patches were effective for:
i5-8250U Kaby Lake R i.e. Gen 8
i9-9880H and i3-8100 both Coffee Lake Gen 9

It's hard enough debugging this directly on hardware. Doing it in a VM isn't 
going to be helpful.
Which CPU models are still failing with 5.3.0-52.46 or 5.3.0-52.46+lp1861395v1?

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=b0eaa5bb-0276-42d4-938f-ee6ce1627906 ro usb_storage.quirks=0bc2:2320: 
quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  tricia
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip input lpadmin plugdev sambashare sudo vboxusers
  _MarkForUpload: True
  dmi.bios.date: 07/02/2019
  dmi.bios.vendor: Dell Inc.
  

[Kernel-packages] [Bug 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Srikar Thottempudi
Thanks for the detailed explanation Seth. The bluetooth and wifi are on
the same chip and the bluetooth is not even being detected.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-firmware package in Ubuntu:
  New
Status in ubuntu-drivers-common package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=8d5d378c-648e-4355-8c1c-10cb298b2677 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-29-generic N/A
   linux-backports-modules-5.4.0-29-generic  N/A
   linux-firmware1.187
  RfKill:
   1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  focal
  Uname: Linux 5.4.0-29-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/29/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 863F
  dmi.board.vendor: HP
  dmi.board.version: 54.23
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd11/29/2019:svnHP:pnHPSpectrex360Convertible15-df1xxx:pvr:rvnHP:rn863F:rvr54.23:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 15-df1xxx
  dmi.product.sku: 7UT64UA#ABA
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1876847/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : 

[Kernel-packages] [Bug 1877620] Re: Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread dann frazier
Path was included in eoan in Ubuntu-5.3.0-47.39

** Changed in: linux (Ubuntu Eoan)
   Status: New => Fix Released

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in linux source package in Focal:
  Fix Released
Status in linux source package in Groovy:
  Fix Released

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877620] Re: Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread dann frazier
Patch was included in bionic in Ubuntu-4.15.0-97.98

** Changed in: linux (Ubuntu Bionic)
   Status: New => Fix Released

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in linux source package in Focal:
  Fix Released
Status in linux source package in Groovy:
  Fix Released

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877620] Re: Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread dann frazier
Patch was included in focal/groovy in Ubuntu-5.4.0-18.22

** Changed in: linux (Ubuntu Groovy)
   Status: Confirmed => Fix Released

** Changed in: linux (Ubuntu Focal)
   Status: New => Fix Released

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Bionic:
  Fix Released
Status in linux source package in Eoan:
  Fix Released
Status in linux source package in Focal:
  Fix Released
Status in linux source package in Groovy:
  Fix Released

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877620] Re: Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread dann frazier
** Also affects: linux (Ubuntu Groovy)
   Importance: Undecided
   Status: Confirmed

** Also affects: linux (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Eoan)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Focal)
   Importance: Undecided
   Status: New

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Bionic:
  New
Status in linux source package in Eoan:
  New
Status in linux source package in Focal:
  New
Status in linux source package in Groovy:
  Confirmed

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877488] Re: External mouse movement wakes computer from hibernate

2020-05-08 Thread Brian Murray
** Package changed: ubuntu-release-upgrader (Ubuntu) => linux (Ubuntu)

-- 
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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] Missing required logs.

2020-05-08 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1877488

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

-- 
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/1877488

Title:
  External mouse movement wakes computer from hibernate

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  When the computer is suspended, moving the mouse (External logitech)
  causes the computer to come out of hibernation.  I can tell because
  the Legion logo lights up.  After a little while (minute?)  it
  evidently suspends again because the logo turns off again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: ubuntu-release-upgrader-core 1:20.04.19
  ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
  Uname: Linux 5.4.0-30-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  CasperMD5CheckResult: skip
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 19:07:34 2020
  InstallationDate: Installed on 2020-03-12 (56 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: dist-upgrade
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877488/+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 1877488] [NEW] External mouse movement wakes computer from hibernate

2020-05-08 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When the computer is suspended, moving the mouse (External logitech)
causes the computer to come out of hibernation.  I can tell because the
Legion logo lights up.  After a little while (minute?)  it evidently
suspends again because the logo turns off again.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: ubuntu-release-upgrader-core 1:20.04.19
ProcVersionSignature: Ubuntu 5.4.0-30.34-generic 5.4.34
Uname: Linux 5.4.0-30-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.11-0ubuntu27
Architecture: amd64
CasperMD5CheckResult: skip
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Thu May  7 19:07:34 2020
InstallationDate: Installed on 2020-03-12 (56 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Alpha amd64 (20200306)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
Symptom: dist-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug dist-upgrade focal
-- 
External mouse movement wakes computer from hibernate
https://bugs.launchpad.net/bugs/1877488
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

-- 
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 1860986] Re: openvswitch: same tcp session encapsulated with different udp src port for ovs vxlan tunnel

2020-05-08 Thread Kelsey Margarete Skunberg
** Also affects: linux (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Eoan)
   Importance: Undecided
   Status: New

-- 
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/1860986

Title:
  openvswitch: same tcp session encapsulated with different udp src port
  for ovs vxlan tunnel

Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Xenial:
  New
Status in linux source package in Bionic:
  New
Status in linux source package in Eoan:
  New
Status in linux source package in Focal:
  New

Bug description:
  [SRU Justification]

  [Impact]

  Packets encapsulated into a vxlan tunnel with openvswitch don't have
  the same udp source port for the first packet and the following ones
  of the same  TCP flow in a DOCKER scenario usecase.

  In fact, when using the kernel datapath, the upcall don't include skb
  hash info relatived. As VXLAN module uses the skb hash to select UDP
  src port, the source port is different for the first packet.

  More information can be found here:
  https://mail.openvswitch.org/pipermail/ovs-dev/2019-October/364062.html

  This has been fixed in v5.5 by the following upstream commit:
  bd1903b7c4596 ("net: openvswitch: add hash info to upcall")

  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/net/openvswitch?id=bd1903b7c4596ba6f7677d0dfefd05ba5876707d

  The bug exists since the beginning of vxlan support in openvswitch.

  == Fix ==

  Backport the requested patches to Focal (5.4), Eoan (5.3), Bionic (4.15) and
  Xenial (4.4).

  == Risk of Regression ==

  This patch only add hash information when we do upcall, thus the risk
  should be low.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1860986/+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 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Seth Forshee
The firmware load messages are not unusual. The driver will try to load
a range of firmware versions, and often the "newest" version the driver
looks for has not been released by Intel. As long as it finds supported
firmware version (as indicated by the "loaded firmware version" message)
there's nothing to worry about.

I honestly don't know about the updates UI saying the device is not
working. I just looked on my laptop and it says the same thing, even
though I'm having no issues at all with my wireless. I'm not entirely
sure which package is responsible for making that determination, but
I've added ubuntu-drivers-common to the bug as a starting point.

** Also affects: ubuntu-drivers-common (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-firmware package in Ubuntu:
  New
Status in ubuntu-drivers-common package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=8d5d378c-648e-4355-8c1c-10cb298b2677 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-29-generic N/A
   linux-backports-modules-5.4.0-29-generic  N/A
   linux-firmware1.187
  RfKill:
   1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  focal
  Uname: Linux 5.4.0-29-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/29/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 863F
  dmi.board.vendor: HP
  dmi.board.version: 54.23
  

[Kernel-packages] [Bug 1874056] Re: [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter

2020-05-08 Thread Frank Heimes
Compiles now on 18.04 with 2nd backport instead of the cherry-pick.

-- 
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/1874056

Title:
  [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter

Status in Ubuntu on IBM z Systems:
  Incomplete
Status in linux package in Ubuntu:
  New

Bug description:
  Today, the enumeration of PCI functions on s390x does not reflect
  which functions belongs to which physical adapter.

  Layout of a PCI function address on Linux:
  :00:00.0
  ::.

  On s390x, each function is presented as individual root complex today,
  e.g.:

  PCHID 0100 VF1 :00:00.0
  PCHID 0100 VF23 0001:00:00.0
  PCHID 0200 VF1 0002:00:00.0
  OCHID 0100 VF17 0003:00:00.0

  On other platforms, the addresses correctly reflect the actual HW
  configuration. Some device drivers (mlx5 for Mellanox adapters) group
  functions of one physical adapter by checking which PCI functions have
  identical values for ::. We need to use the
  same enumeration scheme to achieve this functionality on s390x.

  In this case, the two physical functions of a Mellanox adapter need to
  get function number 0 and 1, and all virtual functions need to use the
  same : numbers with function/device numbers
  counting up.

  Required result (example with 4 VFs per PF):

  PCHID 0100 PF 0 :00:00.0
  PCHID 0100 PF 1 :00:00.1
  PCHID 0100 PF 0 VF 0 :00:00.2
  PCHID 0100 PF 0 VF 1 :00:00.3
  PCHID 0100 PF 0 VF 2 :00:00.4
  PCHID 0100 PF 0 VF 3 :00:00.5
  PCHID 0100 PF 1 VF 0 :00:00.6
  PCHID 0100 PF 1 VF 1 :00:00.7
  PCHID 0100 PF 1 VF 2 :00:00.8
  PCHID 0100 PF 1 VF 3 :00:00.9

  PCHID 0200 PF 0 0001:00:00.0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1874056/+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 1877620] Re: Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread Prabhakar Kushwaha
** 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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877476] Missing required logs.

2020-05-08 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1877476

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

** Tags added: focal

-- 
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/1877476

Title:
  HP 820 G3 resume from hibernation hangs with color bars

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 5.4.0-29.33-generic 5.4.30

  I am using Legacy mode in BIOS to boot laptop. 
  I hibernate (I tried "systemctl hibernate" and "sudo hibernate") to swap file 
(allocated size 18GB  what is 2GB more than my RAM size) and both methods 
hibernates to file OK.
  After hibernation I want to resume.
  First resume always ends suspended on color bars after ca 1 min and 2 times 
backlighted screen meantime. Keyboard driver can accept CTL+ALT+DEL to restart 
or I can power off and power on again.
  Second restart always loads grub normally and after I choose default ooot 
option it correctly resumes from swap file but it should work in this way from 
the first resume try.

  I've tried updated grub with options: nosplash, noquiet, nomodeset and
  even keeping shift in BIOS to see what's going during failed resume
  but no success.

  nomodeset option doesn't show color bars, but finishes with backlighted black 
screen only.
  Keeping shift in BIOS shows: " RUB loading" without G but after minute it 
ends on blank backlighted screen. Keeping ESC doesn't help to see any line from 
boot even nosplash and noquiet is active.

  Normal suspend and resume from suspend works but hibernation not.

  Only dmesg line is concerning, but I think nomodeset should eliminate if it 
would be i915 problem.
  [   10.015720] i915 :00:02.0: [drm:intel_dp_aux_init_backlight_funcs 
[i915]] Panel advertises DPCD backlight support, but VBT disagrees. If your 
backlight controls don't work try booting with i915.enable_dpcd_backlight=1. If 
your machine needs this, please file a _new_ bug report on bugs.freedesktop.org 
against DRI -> DRM/Intel
  Anyway backlight controls is working OK without nomodeset option.

  HP BIOS is updated from 01/05/2020 and laptop is about 4 years old.

  
  System:
Host: UB820 Kernel: 5.4.0-29-generic x86_64 bits: 64 Desktop: Gnome 3.36.1 
Distro: Ubuntu 20.04 LTS (Focal Fossa) 
  Machine:
Type: Laptop System: HP product: HP EliteBook 820 G3 v: N/A 
serial:  
Mobo: HP model: 807C v: KBC Version 85.79 
serial:  UEFI [Legacy]: HP v: N75 Ver. 01.45 
date: 01/05/2020 
  Battery:
ID-1: BAT0 charge: 34.0 Wh condition: 35.1/35.1 Wh (100%) 
  CPU:
Topology: Dual Core model: Intel Core i5-6300U bits: 64 type: MT MCP 
L2 cache: 3072 KiB 
Speed: 800 MHz min/max: 400/3000 MHz Core speeds (MHz): 1: 800 2: 800 
3: 800 4: 800 
  Graphics:
Device-1: Intel Skylake GT2 [HD Graphics 520] driver: i915 v: kernel 
Display: x11 server: X.Org 1.20.8 driver: vesa unloaded: fbdev,modesetting 
resolution: 1366x768~60Hz 
OpenGL: renderer: Mesa Intel HD Graphics 520 (SKL GT2) v: 4.6 Mesa 20.0.4 
  Audio:
Device-1: Intel Sunrise Point-LP HD Audio driver: snd_hda_intel 
Sound Server: ALSA v: k5.4.0-29-generic 
  Network:
Device-1: Intel Ethernet I219-LM driver: e1000e 
IF: enp0s31f6 state: down mac: XX:XX:XX:XX:XX:XX 
Device-2: Intel Wireless 8260 driver: iwlwifi 
IF: wlp2s0 state: up mac: XX:XX:XX:XX:XX:XX 
Device-3: HP HP lt4120 Snapdragon X5 LTE type: USB driver: cdc_ether 
IF: enxda94de160772 state: up speed: N/A duplex: N/A 
mac: XX:XX:XX:XX:XX:XX 
  Drives:
Local Storage: total: 704.24 GiB used: 26.12 GiB (3.7%) 
ID-1: /dev/sda vendor: Samsung model: SSD 860 EVO 500GB size: 465.76 GiB 
ID-2: /dev/sdb vendor: Samsung model: MZNLN256HCHP-000H1 size: 238.47 GiB 
  Partition:
ID-1: / size: 457.45 GiB used: 26.12 GiB (5.7%) fs: ext4 dev: /dev/sda1 
  Sensors:
System Temperatures: cpu: 38.5 C mobo: 0.0 C 
Fan Speeds (RPM): N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877476/+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 1877620] Missing required logs.

2020-05-08 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1877620

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877476] Re: HP 820 G3 resume from hibernation hangs with color bars

2020-05-08 Thread Brian Murray
** Package changed: ubuntu => linux (Ubuntu)

-- 
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/1877476

Title:
  HP 820 G3 resume from hibernation hangs with color bars

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Ubuntu 5.4.0-29.33-generic 5.4.30

  I am using Legacy mode in BIOS to boot laptop. 
  I hibernate (I tried "systemctl hibernate" and "sudo hibernate") to swap file 
(allocated size 18GB  what is 2GB more than my RAM size) and both methods 
hibernates to file OK.
  After hibernation I want to resume.
  First resume always ends suspended on color bars after ca 1 min and 2 times 
backlighted screen meantime. Keyboard driver can accept CTL+ALT+DEL to restart 
or I can power off and power on again.
  Second restart always loads grub normally and after I choose default ooot 
option it correctly resumes from swap file but it should work in this way from 
the first resume try.

  I've tried updated grub with options: nosplash, noquiet, nomodeset and
  even keeping shift in BIOS to see what's going during failed resume
  but no success.

  nomodeset option doesn't show color bars, but finishes with backlighted black 
screen only.
  Keeping shift in BIOS shows: " RUB loading" without G but after minute it 
ends on blank backlighted screen. Keeping ESC doesn't help to see any line from 
boot even nosplash and noquiet is active.

  Normal suspend and resume from suspend works but hibernation not.

  Only dmesg line is concerning, but I think nomodeset should eliminate if it 
would be i915 problem.
  [   10.015720] i915 :00:02.0: [drm:intel_dp_aux_init_backlight_funcs 
[i915]] Panel advertises DPCD backlight support, but VBT disagrees. If your 
backlight controls don't work try booting with i915.enable_dpcd_backlight=1. If 
your machine needs this, please file a _new_ bug report on bugs.freedesktop.org 
against DRI -> DRM/Intel
  Anyway backlight controls is working OK without nomodeset option.

  HP BIOS is updated from 01/05/2020 and laptop is about 4 years old.

  
  System:
Host: UB820 Kernel: 5.4.0-29-generic x86_64 bits: 64 Desktop: Gnome 3.36.1 
Distro: Ubuntu 20.04 LTS (Focal Fossa) 
  Machine:
Type: Laptop System: HP product: HP EliteBook 820 G3 v: N/A 
serial:  
Mobo: HP model: 807C v: KBC Version 85.79 
serial:  UEFI [Legacy]: HP v: N75 Ver. 01.45 
date: 01/05/2020 
  Battery:
ID-1: BAT0 charge: 34.0 Wh condition: 35.1/35.1 Wh (100%) 
  CPU:
Topology: Dual Core model: Intel Core i5-6300U bits: 64 type: MT MCP 
L2 cache: 3072 KiB 
Speed: 800 MHz min/max: 400/3000 MHz Core speeds (MHz): 1: 800 2: 800 
3: 800 4: 800 
  Graphics:
Device-1: Intel Skylake GT2 [HD Graphics 520] driver: i915 v: kernel 
Display: x11 server: X.Org 1.20.8 driver: vesa unloaded: fbdev,modesetting 
resolution: 1366x768~60Hz 
OpenGL: renderer: Mesa Intel HD Graphics 520 (SKL GT2) v: 4.6 Mesa 20.0.4 
  Audio:
Device-1: Intel Sunrise Point-LP HD Audio driver: snd_hda_intel 
Sound Server: ALSA v: k5.4.0-29-generic 
  Network:
Device-1: Intel Ethernet I219-LM driver: e1000e 
IF: enp0s31f6 state: down mac: XX:XX:XX:XX:XX:XX 
Device-2: Intel Wireless 8260 driver: iwlwifi 
IF: wlp2s0 state: up mac: XX:XX:XX:XX:XX:XX 
Device-3: HP HP lt4120 Snapdragon X5 LTE type: USB driver: cdc_ether 
IF: enxda94de160772 state: up speed: N/A duplex: N/A 
mac: XX:XX:XX:XX:XX:XX 
  Drives:
Local Storage: total: 704.24 GiB used: 26.12 GiB (3.7%) 
ID-1: /dev/sda vendor: Samsung model: SSD 860 EVO 500GB size: 465.76 GiB 
ID-2: /dev/sdb vendor: Samsung model: MZNLN256HCHP-000H1 size: 238.47 GiB 
  Partition:
ID-1: / size: 457.45 GiB used: 26.12 GiB (5.7%) fs: ext4 dev: /dev/sda1 
  Sensors:
System Temperatures: cpu: 38.5 C mobo: 0.0 C 
Fan Speeds (RPM): N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877476/+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 1877620] [NEW] Backport of Patch "ata: ahci: Add shutdown to freeze hardware resources of ahci"

2020-05-08 Thread Prabhakar Kushwaha
Public bug reported:

Issue
--
During our internal testing, we found an issue for kexec -e.  

Using kexec to reboot works mostly, but ~1 of 5 times the system fails
to reboot. SATA failures in new kernel resulting in drop to initramfs as
rootfs isn't loadable.

Error log for 1)
[   47.384805] ata1: failed to reset engine (errno=-5)
[   47.384805] ata1: failed to reset engine (errno=-5)
[   51.529054] ata1: softreset failed (1st FIS failed)
[   51.529054] ata1: softreset failed (1st FIS failed)
[   57.00] ata1: failed to reset engine (errno=-5)
[   57.00] ata1: failed to reset engine (errno=-5)
[   62.037258] ata1: softreset failed (1st FIS failed)
[   62.037258] ata1: softreset failed (1st FIS failed)
[   68.396807] ata1: failed to reset engine (errno=-5)
[   68.396807] ata1: failed to reset engine (errno=-5) 

Solution

https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

Please note this patch is already applied to main-line and back-ported
to 4.9, 4.14, 4.19, 5.4 and 5.5

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Incomplete

-- 
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/1877620

Title:
  Backport  of Patch "ata: ahci: Add shutdown to freeze hardware
  resources of ahci"

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Issue
  --
  During our internal testing, we found an issue for kexec -e.  

  Using kexec to reboot works mostly, but ~1 of 5 times the system fails
  to reboot. SATA failures in new kernel resulting in drop to initramfs
  as rootfs isn't loadable.

  Error log for 1)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   47.384805] ata1: failed to reset engine (errno=-5)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   51.529054] ata1: softreset failed (1st FIS failed)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   57.00] ata1: failed to reset engine (errno=-5)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   62.037258] ata1: softreset failed (1st FIS failed)
  [   68.396807] ata1: failed to reset engine (errno=-5)
  [   68.396807] ata1: failed to reset engine (errno=-5) 

  Solution
  
  https://patchwork.ozlabs.org/patch/1229154/ i.e. ata: ahci: Add shutdown to 
freeze hardware resources of ahci needs to applied to all applicable Linux 
version. 

  Please note this patch is already applied to main-line and back-ported
  to 4.9, 4.14, 4.19, 5.4 and 5.5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877620/+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 1877476] [NEW] HP 820 G3 resume from hibernation hangs with color bars

2020-05-08 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Ubuntu 5.4.0-29.33-generic 5.4.30

I am using Legacy mode in BIOS to boot laptop. 
I hibernate (I tried "systemctl hibernate" and "sudo hibernate") to swap file 
(allocated size 18GB  what is 2GB more than my RAM size) and both methods 
hibernates to file OK.
After hibernation I want to resume.
First resume always ends suspended on color bars after ca 1 min and 2 times 
backlighted screen meantime. Keyboard driver can accept CTL+ALT+DEL to restart 
or I can power off and power on again.
Second restart always loads grub normally and after I choose default ooot 
option it correctly resumes from swap file but it should work in this way from 
the first resume try.

I've tried updated grub with options: nosplash, noquiet, nomodeset and
even keeping shift in BIOS to see what's going during failed resume but
no success.

nomodeset option doesn't show color bars, but finishes with backlighted black 
screen only.
Keeping shift in BIOS shows: " RUB loading" without G but after minute it ends 
on blank backlighted screen. Keeping ESC doesn't help to see any line from boot 
even nosplash and noquiet is active.

Normal suspend and resume from suspend works but hibernation not.

Only dmesg line is concerning, but I think nomodeset should eliminate if it 
would be i915 problem.
[   10.015720] i915 :00:02.0: [drm:intel_dp_aux_init_backlight_funcs 
[i915]] Panel advertises DPCD backlight support, but VBT disagrees. If your 
backlight controls don't work try booting with i915.enable_dpcd_backlight=1. If 
your machine needs this, please file a _new_ bug report on bugs.freedesktop.org 
against DRI -> DRM/Intel
Anyway backlight controls is working OK without nomodeset option.

HP BIOS is updated from 01/05/2020 and laptop is about 4 years old.


System:
  Host: UB820 Kernel: 5.4.0-29-generic x86_64 bits: 64 Desktop: Gnome 3.36.1 
  Distro: Ubuntu 20.04 LTS (Focal Fossa) 
Machine:
  Type: Laptop System: HP product: HP EliteBook 820 G3 v: N/A 
  serial:  
  Mobo: HP model: 807C v: KBC Version 85.79 
  serial:  UEFI [Legacy]: HP v: N75 Ver. 01.45 
  date: 01/05/2020 
Battery:
  ID-1: BAT0 charge: 34.0 Wh condition: 35.1/35.1 Wh (100%) 
CPU:
  Topology: Dual Core model: Intel Core i5-6300U bits: 64 type: MT MCP 
  L2 cache: 3072 KiB 
  Speed: 800 MHz min/max: 400/3000 MHz Core speeds (MHz): 1: 800 2: 800 
  3: 800 4: 800 
Graphics:
  Device-1: Intel Skylake GT2 [HD Graphics 520] driver: i915 v: kernel 
  Display: x11 server: X.Org 1.20.8 driver: vesa unloaded: fbdev,modesetting 
  resolution: 1366x768~60Hz 
  OpenGL: renderer: Mesa Intel HD Graphics 520 (SKL GT2) v: 4.6 Mesa 20.0.4 
Audio:
  Device-1: Intel Sunrise Point-LP HD Audio driver: snd_hda_intel 
  Sound Server: ALSA v: k5.4.0-29-generic 
Network:
  Device-1: Intel Ethernet I219-LM driver: e1000e 
  IF: enp0s31f6 state: down mac: XX:XX:XX:XX:XX:XX 
  Device-2: Intel Wireless 8260 driver: iwlwifi 
  IF: wlp2s0 state: up mac: XX:XX:XX:XX:XX:XX 
  Device-3: HP HP lt4120 Snapdragon X5 LTE type: USB driver: cdc_ether 
  IF: enxda94de160772 state: up speed: N/A duplex: N/A 
  mac: XX:XX:XX:XX:XX:XX 
Drives:
  Local Storage: total: 704.24 GiB used: 26.12 GiB (3.7%) 
  ID-1: /dev/sda vendor: Samsung model: SSD 860 EVO 500GB size: 465.76 GiB 
  ID-2: /dev/sdb vendor: Samsung model: MZNLN256HCHP-000H1 size: 238.47 GiB 
Partition:
  ID-1: / size: 457.45 GiB used: 26.12 GiB (5.7%) fs: ext4 dev: /dev/sda1 
Sensors:
  System Temperatures: cpu: 38.5 C mobo: 0.0 C 
  Fan Speeds (RPM): N/A

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: bot-comment from hibernation hp laptop resume
-- 
HP 820 G3 resume from hibernation hangs with color bars
https://bugs.launchpad.net/bugs/1877476
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

-- 
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 1877192] Re: RTL8723bs bluetooth not working on 20.04

2020-05-08 Thread Sergey
** 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/1877192

Title:
  RTL8723bs bluetooth not working on 20.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have Ubuntu 20.04 installed on atom-based tablet ACER Aspire Switch 10. And 
bluetooth does not work. In fact it looks like ubuntu does not recognize 
bluetooth HW at all. But the system does have bluetooth module which under 
windows is recognized as RTK8723 (ACPI\RTK8723\some-id)
  At the same time WiFi works without issues (the same module, if I am not 
mistaken).

  $ lsb_release -d
  Description:Ubuntu 20.04 LTS
  $ uname -vr
  5.4.0-26-generic #30-Ubuntu SMP Mon Apr 20 16:58:30 UTC 2020
  $ dmesg | grep -i 8723
  [8.087918] r8723bs: module is from the staging directory, the quality is 
unknown, you have been warned.
  [8.088914] r8723bs: module verification failed: signature and/or required 
key missing - tainting kernel
  [8.092667] RTL8723BS: module init start
  [8.092671] RTL8723BS: rtl8723bs 
v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
  [8.092673] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
  [8.303955] RTL8723BS: rtw_ndev_init(wlan0)
  [8.304653] RTL8723BS: module init ret =0
  [   13.200223] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin
  [   17.832536] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x0008
  [   17.889893] RTL8723BS: start auth
  [   17.892815] RTL8723BS: auth success, start assoc
  [   17.901012] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found 
!!
  [   17.901053] RTL8723BS: assoc success
  [   17.913846] RTL8723BS: send eapol packet
  [   17.939873] RTL8723BS: send eapol packet
  [   17.942652] RTL8723BS: set pairwise key camid:4, addr:50:c7:bf:31:a1:fa, 
kid:0, type:AES
  [   17.944712] RTL8723BS: set group key camid:5, addr:50:c7:bf:31:a1:fa, 
kid:1, type:TKIP
  $ rfkill list all
  0: acer-wireless: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: acer-bluetooth: Bluetooth
  Soft blocked: no
  Hard blocked: no
  2: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no

  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  user   1288 F pulseaudio
   /dev/snd/controlC0:  user   1288 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-24 (13 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lspci-vt:
   -[:00]-+-00.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series SoC 
Transaction Register
  +-02.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Graphics & Display
  +-14.0  Intel Corporation Atom Processor Z36xxx/Z37xxx, Celeron 
N2000 Series USB xHCI
  +-1a.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Trusted Execution Engine
  \-1f.0  Intel Corporation Atom Processor Z36xxx/Z37xxx Series 
Power Control Unit
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 003: ID 06cb:2968 Synaptics, Inc. 
   Bus 001 Device 002: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/1p, 5000M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=xhci_hcd/6p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M
   |__ Port 3: Dev 3, If 0, Class=Human Interface Device, 
Driver=usbhid, 12M
   |__ Port 3: Dev 3, If 1, Class=Human Interface Device, 
Driver=usbhid, 12M
  MachineType: Acer Aspire SW5-012
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=140a1a3c-1a0a-4aab-b323-f621e6497a7e ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  StagingDrivers: r8723bs
  Tags:  focal staging
  Uname: Linux 5.4.0-26-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/01/2016
  dmi.bios.vendor: INSYDE Corp.
  dmi.bios.version: V1.20
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: Fendi2
  dmi.board.vendor: Acer
  dmi.board.version: V1.20
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 

[Kernel-packages] [Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread Guillaume FRANCOIS
As written in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1872001/comments/118,

I had no hangs with "5.3.0-52-generic" or the extended one "lp1861395v1"

I did not check the logs with "5.3.0-52.46+lp1861395v1" but with the
previous version the number of entries where very limited.

Unfortunatly I had to rollback to 5.3.0-51 as docker integration was a
totally broken and preventing daily work.

In the meantime, I tried to upgrade to Ubuntu 20.04 with kernel 5.4.0x
but the upgrade broke docker and even using docker.io instead of docker-
ce did not fix the issue, as docker-ce is not yet available on 20.04.

I did not have the time to check for the "hangs" on 20.04 with kernel
5.4.0 but I can give a try if needed.

Later on, I'll probably do a format to perform a clean install on 20.04
to check is docker can work.

My laptop is a Dell Precision 7450 with an Intel i9-9880H.

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 

[Kernel-packages] [Bug 1875944] Re: Lenovo Ideapad 130-15AST 20.04 distorted and unusable

2020-05-08 Thread Bill (franksmcb)
*** This bug is a duplicate of bug 1873895 ***
https://bugs.launchpad.net/bugs/1873895

** This bug has been marked a duplicate of bug 1873895
   Regression: block staircase display with side-by-side monitors of different 
pixel widths

-- 
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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing 

[Kernel-packages] [Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread pcworld
@rhardy I have an i5-8250U and hangs have stopped ever since updating to
the proposed 5.3.0-48-generic kernel (didn't try newer kernels yet).

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=b0eaa5bb-0276-42d4-938f-ee6ce1627906 ro usb_storage.quirks=0bc2:2320: 
quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  tricia
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip input lpadmin plugdev sambashare sudo vboxusers
  _MarkForUpload: True
  dmi.bios.date: 07/02/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 2.4.0
  dmi.board.name: 0K0DFT
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: 

[Kernel-packages] [Bug 1877536] Re: BlueZ 5.54 release

2020-05-08 Thread Mathew Hodson
** Tags added: upgrade-software-version

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1877536

Title:
  BlueZ 5.54 release

Status in bluez package in Ubuntu:
  In Progress

Bug description:
  Release BlueZ 5.54 to groovy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1877536/+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 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Srikar Thottempudi
Thank you Seth for responding. Based on "journalctl -k | grep 'iwlwifi'" output,
May 08 11:16:01 Thottempudi kernel: iwlwifi :00:14.3: enabling device ( 
-> 0002)
May 08 11:16:01 Thottempudi kernel: iwlwifi :00:14.3: Direct firmware load 
for iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
May 08 11:16:01 Thottempudi kernel: iwlwifi :00:14.3: Direct firmware load 
for iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2

Please correct me if i am wrong, since the firmware for AX-201 is
failing it is falling back to 9462 drivers.

The connection has been spotty but i think more of them are related to
my connection rather than the drivers.

Bluetooth is not detected.
Output of dmesg | grep 'Bluetooth',
[2.251193] Bluetooth: Core ver 2.22
[2.251207] Bluetooth: HCI device and connection manager initialized
[2.251210] Bluetooth: HCI socket layer initialized
[2.251213] Bluetooth: L2CAP socket layer initialized
[2.251216] Bluetooth: SCO socket layer initialized
[2.296123] Bluetooth: hci0: Bootloader revision 0.4 build 0 week 30 2018
[2.297194] Bluetooth: hci0: Device revision is 2
[2.297195] Bluetooth: hci0: Secure boot is enabled
[2.297196] Bluetooth: hci0: OTP lock is enabled
[2.297197] Bluetooth: hci0: API lock is enabled
[2.297197] Bluetooth: hci0: Debug lock is disabled
[2.297198] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[2.298609] Bluetooth: hci0: Found device firmware: intel/ibt-19-0-4.sfi
[3.386073] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[3.386074] Bluetooth: BNEP filters: protocol multicast
[3.386079] Bluetooth: BNEP socket layer initialized
[4.370407] Bluetooth: hci0: command 0xfc09 tx timeout
[   12.370483] Bluetooth: hci0: Failed to send firmware data (-110)

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-firmware package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   

[Kernel-packages] [Bug 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Srikar Thottempudi
Seth, i have attached this previously as well. But please check this
screenshot.

** Attachment added: "Screenshot from 2020-05-08 11-26-57.png"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1876847/+attachment/5368498/+files/Screenshot%20from%202020-05-08%2011-26-57.png

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-firmware package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=8d5d378c-648e-4355-8c1c-10cb298b2677 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-29-generic N/A
   linux-backports-modules-5.4.0-29-generic  N/A
   linux-firmware1.187
  RfKill:
   1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  focal
  Uname: Linux 5.4.0-29-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/29/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 863F
  dmi.board.vendor: HP
  dmi.board.version: 54.23
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd11/29/2019:svnHP:pnHPSpectrex360Convertible15-df1xxx:pvr:rvnHP:rn863F:rvr54.23:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 15-df1xxx
  dmi.product.sku: 7UT64UA#ABA
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1876847/+subscriptions

-- 
Mailing list: 

[Kernel-packages] [Bug 1872001] Re: 5.3.0-46-generic - i915 - frequent GPU hangs / resets rcs0

2020-05-08 Thread Robert Hardy
To be clear 5.3.0-51 did NOT include the backported patches.
Proposed 5.3.0-52.46 had some and 5.3.0-52.46+lp1861395v1 had more. 
Out of curiosity could the people who are still having hangs on the 5.3.0-52.46 
proposed or 5.3.0-52.46+lp1861395v1 kernel have different generations of CPUs?

I've got a Coffee Lake CPU and the patches seemed to do a better job of fixing 
issues for me.
Perhaps we really have two different issues here.

@pcworld we saw similar behaviour. What is your CPU model?
Here is mine:
# grep "model name" /proc/cpuinfo
CPU model name  : Intel(R) Core(TM) i3-8100 CPU @ 3.60GHz

-- 
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/1872001

Title:
  5.3.0-46-generic - i915 - frequent GPU hangs  / resets rcs0

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Eoan:
  Confirmed

Bug description:
  Hi,

  Since update to HWE kernel 5.3.0-46-generic I am experiencing frequent
  (every couple of minutes) GPU hangs and reset manifesting as 2-3
  seconds freezes of the GUI (other than the mouse pointer).

  No particular triggers identified although have Chrome / Chromium
  running with Hardware Acceleration enabled does appear to increase the
  frequency.

  I have seen incidences of these hangs in jounralctl output using
  previous kernels in the 5.3.0-xx series but they were very infrequent
  (one or twice in a week of daily usage)

  System Info
  steve@steve-Inspiron-5580:~$ inxi -SCGxxxz
  System:Host: steve-Inspiron-5580 Kernel: 5.3.0-46-generic x86_64 bits: 64 
compiler: gcc v: 7.5.0
     Desktop: Cinnamon 4.4.8 wm: muffin 4.4.2 dm: LightDM 1.26.0 
Distro: Linux Mint 19.3 Tricia
     base: Ubuntu 18.04 bionic
  CPU:   Topology: Quad Core model: Intel Core i5-8265U bits: 64 type: MT 
MCP arch: Kaby Lake rev: B
     L2 cache: 6144 KiB
     flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx 
bogomips: 28800
     Speed: 1173 MHz min/max: 400/3900 MHz Core speeds (MHz): 1: 800 2: 
800 3: 800 4: 800 5: 800 6: 800 7: 800
     8: 800
  Graphics:  Device-1: Intel vendor: Dell driver: i915 v: kernel bus ID: 
00:02.0 chip ID: 8086:3ea0
     Display: x11 server: X.Org 1.20.5 driver: modesetting unloaded: 
fbdev,vesa resolution: 1920x1080~60Hz
     OpenGL: renderer: Mesa DRI Intel UHD Graphics (Whiskey Lake 3x8 
GT2) v: 4.5 Mesa 19.2.8 compat-v: 3.0
     direct render: Yes

  steve@steve-Inspiron-5580:~$ journalctl -b | grep i915
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
deactivate vga console
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Finished loading DMC 
firmware i915/kbl_dmc_ver1_04.bin (v1.4)
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: [drm] Initialized i915 1.6.0 
20190619 for :00:02.0 on minor 0
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: fbcon: i915drmfb (fb0) is primary 
device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: i915 :00:02.0: fb0: i915drmfb 
frame buffer device
  Apr 10 06:15:17 steve-Inspiron-5580 kernel: snd_hda_intel :00:1f.3: bound 
:00:02.0 (ops i915_audio_component_bind_ops [i915])
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: GPU HANG: 
ecode 9:0:0x, hang on rcs0
  Apr 10 06:16:28 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:31:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:37:48 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0
  Apr 10 06:40:46 steve-Inspiron-5580 kernel: i915 :00:02.0: Resetting rcs0 
for hang on rcs0

  I note another user has reported similar issues on the same kernel at 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1861395/comments/52
  ---
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  steve  3920 F pulseaudio
   /dev/snd/pcmC0D0p:   steve  3920 F...m pulseaudio
  CurrentDesktop: X-Cinnamon
  DistroRelease: Linux Mint 19.3
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2019-12-27 (104 days ago)
  InstallationMedia: Linux Mint 19.3 "Tricia" - Release amd64 20191213
  MachineType: Dell Inc. Inspiron 5580
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=b0eaa5bb-0276-42d4-938f-ee6ce1627906 ro usb_storage.quirks=0bc2:2320: 
quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware  

[Kernel-packages] [Bug 1877592] [NEW] Focal update: v5.4.39 upstream stable release

2020-05-08 Thread Kamal Mostafa
Public bug reported:

SRU Justification

Impact:
   The upstream process for stable tree updates is quite similar
   in scope to the Ubuntu SRU process, e.g., each patch has to
   demonstrably fix a bug, and each patch is vetted by upstream
   by originating either directly from a mainline/stable Linux tree or
   a minimally backported form of that patch. The following upstream
   stable patches should be included in the Ubuntu kernel:

   v5.4.39 upstream stable release
   from git://git.kernel.org/

dma-buf: Fix SET_NAME ioctl uapi
drm/edid: Fix off-by-one in DispID DTD pixel clock
drm/amd/display: Fix green screen issue after suspend
drm/qxl: qxl_release leak in qxl_draw_dirty_fb()
drm/qxl: qxl_release leak in qxl_hw_surface_alloc()
drm/qxl: qxl_release use after free
NFSv4.1: fix handling of backchannel binding in BIND_CONN_TO_SESSION
btrfs: fix transaction leak in btrfs_recover_relocation
btrfs: fix block group leak when removing fails
btrfs: fix partial loss of prealloc extent past i_size after fsync
btrfs: transaction: Avoid deadlock due to bad initialization timing of 
fs_info::journal_info
mmc: cqhci: Avoid false "cqhci: CQE stuck on" by not open-coding timeout loop
mmc: sdhci-xenon: fix annoying 1.8V regulator warning
mmc: sdhci-pci: Fix eMMC driver strength for BYT-based controllers
mmc: sdhci-msm: Enable host capabilities pertains to R1b response
mmc: meson-mx-sdio: Set MMC_CAP_WAIT_WHILE_BUSY
mmc: meson-mx-sdio: remove the broken ->card_busy() op
crypto: caam - fix the address of the last entry of S/G
ALSA: hda/realtek - Two front mics on a Lenovo ThinkCenter
ALSA: usb-audio: Correct a typo of NuPrime DAC-10 USB ID
ALSA: hda/hdmi: fix without unlocked before return
ALSA: line6: Fix POD HD500 audio playback
ALSA: pcm: oss: Place the plugin buffer overflow checks correctly
i2c: amd-mp2-pci: Fix Oops in amd_mp2_pci_init() error handling
Drivers: hv: vmbus: Fix Suspend-to-Idle for Generation-2 VM
dlmfs_file_write(): fix the bogosity in handling non-zero *ppos
IB/rdmavt: Always return ERR_PTR from rvt_create_mmap_info()
PM: ACPI: Output correct message on target power state
PM: hibernate: Freeze kernel threads in software_resume()
dm verity fec: fix hash block number in verity_fec_decode
dm writecache: fix data corruption when reloading the target
dm multipath: use updated MPATHF_QUEUE_IO on mapping for bio-based mpath
ARM: dts: imx6qdl-sr-som-ti: indicate powering off wifi is safe
scsi: qla2xxx: set UNLOADING before waiting for session deletion
scsi: qla2xxx: check UNLOADING before posting async work
RDMA/mlx5: Set GRH fields in query QP on RoCE
RDMA/mlx4: Initialize ib_spec on the stack
RDMA/siw: Fix potential siw_mem refcnt leak in siw_fastreg_mr()
RDMA/core: Prevent mixed use of FDs between shared ufiles
RDMA/core: Fix race between destroy and release FD object
RDMA/cm: Fix ordering of xa_alloc_cyclic() in ib_create_cm_id()
RDMA/cm: Fix an error check in cm_alloc_id_priv()
i2c: iproc: generate stop event for slave writes
vfio: avoid possible overflow in vfio_iommu_type1_pin_pages
vfio/type1: Fix VA->PA translation for PFNMAP VMAs in vaddr_get_pfn()
iommu/qcom: Fix local_base status check
scsi: target/iblock: fix WRITE SAME zeroing
iommu/amd: Fix legacy interrupt remapping for x2APIC-enabled system
i2c: aspeed: Avoid i2c interrupt status clear race condition.
ALSA: opti9xx: shut up gcc-10 range warning
Fix use after free in get_tree_bdev()
nvme: prevent double free in nvme_alloc_ns() error handling
nfs: Fix potential posix_acl refcnt leak in nfs3_set_acl
dmaengine: dmatest: Fix iteration non-stop logic
dmaengine: dmatest: Fix process hang when reading 'wait' parameter
arm64: vdso: Add -fasynchronous-unwind-tables to cflags
selinux: properly handle multiple messages in selinux_netlink_send()
Linux 5.4.39
UBUNTU: upstream stable to v5.4.39

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed

** Affects: linux (Ubuntu Focal)
 Importance: Undecided
 Assignee: Kamal Mostafa (kamalmostafa)
 Status: In Progress


** Tags: kernel-stable-tracking-bug

** Changed in: linux (Ubuntu)
   Status: New => Confirmed

** Tags added: kernel-stable-tracking-bug

** Also affects: linux (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: linux (Ubuntu Focal)
   Status: New => In Progress

** Changed in: linux (Ubuntu Focal)
 Assignee: (unassigned) => Kamal Mostafa (kamalmostafa)

** Description changed:

+ SRU Justification
  
- SRU Justification
+ Impact:
+    The upstream process for stable tree updates is quite similar
+    in scope to the Ubuntu SRU process, e.g., each patch has to
+    demonstrably fix a bug, and each patch is vetted by upstream
+    by originating either directly from a mainline/stable Linux tree or
+    a minimally backported form of that patch. The following upstream
+    stable patches should be included in the Ubuntu kernel:
  
- Impact:
- 

[Kernel-packages] [Bug 1877578] Missing required logs.

2020-05-08 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1877578

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

-- 
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/1877578

Title:
  To support older userspace running on newer kernels please backport
  syscall table updates in linux-libc-dev

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  To support older userspace running on newer kernels please backport
  syscall table updates in linux-libc-dev.

  Alternatively make linux-libc-dev be shipped by a standalone source
  package (linux "flavour") to easily update it.

  Currently snapd wants to apply seccomp filters on any release and any
  kernel, which needs updated libseccomp, which needs updated linux-
  libc-dev available at build time.

  At the moment looking to backport syscall table numbers for the split
  ipc, y2038 time syscalls introduced in v5.0.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877578/+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 1875254] Re: Intermittent display blackouts on event

2020-05-08 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
eoan' to 'verification-done-eoan'. If the problem still exists, change
the tag 'verification-needed-eoan' to 'verification-failed-eoan'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!

-- 
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/1875254

Title:
  Intermittent display blackouts on event

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Invalid
Status in linux-oem-osp1 package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux source package in Eoan:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux-oem-osp1 source package in Focal:
  Invalid

Bug description:
  [Impact]
  When audio device enters runpm D3(idle for 7 seconds) and then wakes it up to 
make a sound, it flicks the screen.
  This behavior could be observed while plug/remove AC cable or USB disk, or 
open a terminal and press backsapce key.

  [Fix]
  This issue could be fixed by this commit, it fixes the flicker during 
boot-time, but it also fixes the flicker during rumtime wakeup.
  1ee48a61aa57 drm/i915: Limit audio CDCLK>=2*BCLK constraint back to GLK only

  Audio drivers communicate with i915 over HDA bus multiple times during system 
boot-up and each of these transactions result in matching
  get_power/put_power calls to i915, and depending on the platform,
  a modeset change causing visible flicker.
  
  GLK is the only platform with minimum CDCLK significantly lower
  than BCLK, and thus for GLK setting a higher CDCLK is mandatory.

  For other platforms, minimum CDCLK is close but below 2*BCLK
  (e.g. on ICL, CDCLK=176.4kHz with BCLK=96kHz). Spec-wise the constraint
  should be set, but in practise no communication errors have been
  reported and the downside if set is the flicker observed at boot-time.

  [Test]
  Verified on Dell XPS 13 9300

  [Regression Potential]
  Low, it fixes below commit which contains in ubuntu kernel and should have 
been applied on ubuntu kernel, too.
  Fixes: f6ec9483091f ("drm/i915: extend audio CDCLK>=2*BCLK constraint to more 
platforms")

  =

  Issues with the screen going black for a second on certain events on a dell 
XPS 9370 2 in 1, especially when on battery.
  Seems to be a known bug in arch 
(https://wiki.archlinux.org/index.php/Dell_XPS_13_2-in-1_(7390)).
  Last 5.6.7 kernel tested and the issues has disappears but pb with sound card.
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lucie  2232 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-25 (1 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Dell Inc. XPS 13 7390 2-in-1
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=056fd229-d014-4b3b-a581-1b646105d1ed ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-26-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/02/2020
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.3.1
  dmi.board.name: 06CDVY
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 31
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.1:bd03/02/2020:svnDellInc.:pnXPS1373902-in-1:pvr:rvnDellInc.:rn06CDVY:rvrA00:cvnDellInc.:ct31:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 7390 2-in-1
  dmi.product.sku: 08B0
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1875254/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : 

[Kernel-packages] [Bug 1876645] Re: Unable to handle kernel pointer dereference in virtual kernel address space on Eoan

2020-05-08 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
eoan' to 'verification-done-eoan'. If the problem still exists, change
the tag 'verification-needed-eoan' to 'verification-failed-eoan'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!

-- 
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/1876645

Title:
  Unable to handle kernel pointer dereference in virtual kernel address
  space on Eoan

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Eoan:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed

Bug description:
  Issue spotted on Eoan zVM / LPAR
  It looks like this happens when running the ubunut_fan_smoke_test (jenkins 
job hang with this one)

  [ 1225.137764] docker0: port 1(veth2fda0c6) entered blocking state
  [ 1225.137767] docker0: port 1(veth2fda0c6) entered disabled state
  [ 1225.138023] device veth2fda0c6 entered promiscuous mode
  [ 1225.148523] Unable to handle kernel pointer dereference in virtual kernel 
address space
  [ 1225.148529] Failing address: 6f766c5f646f5000 TEID: 6f766c5f646f5803
  [ 1225.148531] Fault in home space mode while using kernel ASCE.
  [ 1225.148533] AS:00070d94c007 R3:0024
  [ 1225.148575] Oops: 0038 ilc:3 [#1] SMP
  [ 1225.148578] Modules linked in: veth xt_nat vxlan ip6_udp_tunnel udp_tunnel 
nf_conntrack_netlink xfrm_user xfrm_algo xt_addrtype br_netfilter unix_diag 
sctp cuse vhost_net tap vhost_vsock vmw_vsock_virtio_transport_common vhost 
vsock dccp_ipv4 dccp algif_rng aegis128 aegis128l aegis256 morus1280 morus640 
algif_aead anubis fcrypt khazad seed sm4_generic tea md4 michael_mic nhpoly1305 
poly1305_generic rmd128 rmd160 rmd256 rmd320 sha3_generic sm3_generic 
streebog_generic tgr192 wp512 xxhash_generic algif_hash blowfish_generic 
blowfish_common cast5_generic salsa20_generic chacha_generic camellia_generic 
cast6_generic cast_common serpent_generic twofish_generic twofish_common 
algif_skcipher af_alg xt_conntrack ipt_REJECT nf_reject_ipv4 ip6table_mangle 
ip6table_nat nf_tables nfnetlink ip6table_filter ip6_tables iptable_mangle 
xt_CHECKSUM iptable_nat xt_MASQUERADE xt_tcpudp bridge iptable_filter bpfilter 
aufs overlay 8021q garp stp mrp llc openvswitch nsh nf_conncount nf_nat 
nf_conntrack
  [ 1225.148622]  nf_defrag_ipv6 nf_defrag_ipv4 binfmt_misc zfs(PO) 
zunicode(PO) zavl(PO) icp(PO) zlua(PO) zcommon(PO) znvpair(PO) spl(O) 
genwqe_card crc_itu_t chsc_sch eadm_sch ctcm fsm vfio_ccw vfio_mdev mdev 
vfio_iommu_type1 vfio sch_fq_codel nfsd auth_rpcgss nfs_acl lockd grace sunrpc 
ip_tables x_tables btrfs zstd_compress zlib_deflate raid10 raid456 
async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq 
libcrc32c raid1 raid0 linear dm_service_time mlx4_ib ib_uverbs mlx4_en ptp 
ib_core pps_core pkey zcrypt crc32_vx_s390 ghash_s390 prng aes_s390 des_s390 
qeth_l2 des_generic sha512_s390 sha256_s390 sha1_s390 sha_common mlx4_core zfcp 
scsi_transport_fc qeth qdio ccwgroup dasd_eckd_mod dasd_mod scsi_dh_emc 
scsi_dh_rdac scsi_dh_alua dm_multipath
  [ 1225.148711] CPU: 4 PID: 161930 Comm: dockerd Tainted: P   O  
5.3.0-52-generic #46-Ubuntu
  [ 1225.148714] Hardware name: IBM 2964 N63 400 (LPAR)
  [ 1225.148716] Krnl PSW : 0704d0018000 03ff808e972a 
(ovl_open_realfile+0x4a/0x148 [overlay])
  [ 1225.148734]R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:0 AS:3 CC:1 PM:0 
RI:0 EA:3
  [ 1225.148736] Krnl GPRS: 0064 6f766c5f646f5f6d 0007a14ac300 
0003a5df6600
  [ 1225.148738]8000 0001 0003 
000372e45278
  [ 1225.148740]03ff808ea508 000304048000 0005c7f32b68 
00064a2ab900
  [ 1225.148742]0003a5df6600 03ff808f31d8 03ff808e971a 
03e009c0faf8
  [ 1225.148749] Krnl Code: 03ff808e971a: a59a0404  oilh%r9,1028
    03ff808e971e: e310f0c4  lg  
%r1,192(%r15)
   #03ff808e9724: e31010680004  lg  
%r1,104(%r1)
   >03ff808e972a: e3101064  lg  
%r1,96(%r1)
    03ff808e9730: b9040082  lgr %r8,%r2
    03ff808e9734: c21c6a656a62  cgfi
%r1,1785031266
    03ff808e973a: b9140039  lgfr%r3,%r9
    03ff808e973e: e3100344  lg  %r1,832
  [ 1225.148766] Call Trace:
  [ 1225.148769] 

[Kernel-packages] [Bug 1875254] Re: Intermittent display blackouts on event

2020-05-08 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
focal' to 'verification-done-focal'. If the problem still exists, change
the tag 'verification-needed-focal' to 'verification-failed-focal'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-focal

** Tags added: verification-needed-eoan

-- 
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/1875254

Title:
  Intermittent display blackouts on event

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Invalid
Status in linux-oem-osp1 package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Invalid
Status in linux-oem-osp1 source package in Bionic:
  Fix Committed
Status in linux source package in Eoan:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux-oem-osp1 source package in Focal:
  Invalid

Bug description:
  [Impact]
  When audio device enters runpm D3(idle for 7 seconds) and then wakes it up to 
make a sound, it flicks the screen.
  This behavior could be observed while plug/remove AC cable or USB disk, or 
open a terminal and press backsapce key.

  [Fix]
  This issue could be fixed by this commit, it fixes the flicker during 
boot-time, but it also fixes the flicker during rumtime wakeup.
  1ee48a61aa57 drm/i915: Limit audio CDCLK>=2*BCLK constraint back to GLK only

  Audio drivers communicate with i915 over HDA bus multiple times during system 
boot-up and each of these transactions result in matching
  get_power/put_power calls to i915, and depending on the platform,
  a modeset change causing visible flicker.
  
  GLK is the only platform with minimum CDCLK significantly lower
  than BCLK, and thus for GLK setting a higher CDCLK is mandatory.

  For other platforms, minimum CDCLK is close but below 2*BCLK
  (e.g. on ICL, CDCLK=176.4kHz with BCLK=96kHz). Spec-wise the constraint
  should be set, but in practise no communication errors have been
  reported and the downside if set is the flicker observed at boot-time.

  [Test]
  Verified on Dell XPS 13 9300

  [Regression Potential]
  Low, it fixes below commit which contains in ubuntu kernel and should have 
been applied on ubuntu kernel, too.
  Fixes: f6ec9483091f ("drm/i915: extend audio CDCLK>=2*BCLK constraint to more 
platforms")

  =

  Issues with the screen going black for a second on certain events on a dell 
XPS 9370 2 in 1, especially when on battery.
  Seems to be a known bug in arch 
(https://wiki.archlinux.org/index.php/Dell_XPS_13_2-in-1_(7390)).
  Last 5.6.7 kernel tested and the issues has disappears but pb with sound card.
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  lucie  2232 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-04-25 (1 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Dell Inc. XPS 13 7390 2-in-1
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-26-generic 
root=UUID=056fd229-d014-4b3b-a581-1b646105d1ed ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-26.30-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-26-generic N/A
   linux-backports-modules-5.4.0-26-generic  N/A
   linux-firmware1.187
  Tags:  focal
  Uname: Linux 5.4.0-26-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 03/02/2020
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.3.1
  dmi.board.name: 06CDVY
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 31
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.3.1:bd03/02/2020:svnDellInc.:pnXPS1373902-in-1:pvr:rvnDellInc.:rn06CDVY:rvrA00:cvnDellInc.:ct31:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 7390 2-in-1
  dmi.product.sku: 08B0
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1875254/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1876645] Re: Unable to handle kernel pointer dereference in virtual kernel address space on Eoan

2020-05-08 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
focal' to 'verification-done-focal'. If the problem still exists, change
the tag 'verification-needed-focal' to 'verification-failed-focal'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-focal

** Tags added: verification-needed-eoan

-- 
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/1876645

Title:
  Unable to handle kernel pointer dereference in virtual kernel address
  space on Eoan

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Eoan:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed

Bug description:
  Issue spotted on Eoan zVM / LPAR
  It looks like this happens when running the ubunut_fan_smoke_test (jenkins 
job hang with this one)

  [ 1225.137764] docker0: port 1(veth2fda0c6) entered blocking state
  [ 1225.137767] docker0: port 1(veth2fda0c6) entered disabled state
  [ 1225.138023] device veth2fda0c6 entered promiscuous mode
  [ 1225.148523] Unable to handle kernel pointer dereference in virtual kernel 
address space
  [ 1225.148529] Failing address: 6f766c5f646f5000 TEID: 6f766c5f646f5803
  [ 1225.148531] Fault in home space mode while using kernel ASCE.
  [ 1225.148533] AS:00070d94c007 R3:0024
  [ 1225.148575] Oops: 0038 ilc:3 [#1] SMP
  [ 1225.148578] Modules linked in: veth xt_nat vxlan ip6_udp_tunnel udp_tunnel 
nf_conntrack_netlink xfrm_user xfrm_algo xt_addrtype br_netfilter unix_diag 
sctp cuse vhost_net tap vhost_vsock vmw_vsock_virtio_transport_common vhost 
vsock dccp_ipv4 dccp algif_rng aegis128 aegis128l aegis256 morus1280 morus640 
algif_aead anubis fcrypt khazad seed sm4_generic tea md4 michael_mic nhpoly1305 
poly1305_generic rmd128 rmd160 rmd256 rmd320 sha3_generic sm3_generic 
streebog_generic tgr192 wp512 xxhash_generic algif_hash blowfish_generic 
blowfish_common cast5_generic salsa20_generic chacha_generic camellia_generic 
cast6_generic cast_common serpent_generic twofish_generic twofish_common 
algif_skcipher af_alg xt_conntrack ipt_REJECT nf_reject_ipv4 ip6table_mangle 
ip6table_nat nf_tables nfnetlink ip6table_filter ip6_tables iptable_mangle 
xt_CHECKSUM iptable_nat xt_MASQUERADE xt_tcpudp bridge iptable_filter bpfilter 
aufs overlay 8021q garp stp mrp llc openvswitch nsh nf_conncount nf_nat 
nf_conntrack
  [ 1225.148622]  nf_defrag_ipv6 nf_defrag_ipv4 binfmt_misc zfs(PO) 
zunicode(PO) zavl(PO) icp(PO) zlua(PO) zcommon(PO) znvpair(PO) spl(O) 
genwqe_card crc_itu_t chsc_sch eadm_sch ctcm fsm vfio_ccw vfio_mdev mdev 
vfio_iommu_type1 vfio sch_fq_codel nfsd auth_rpcgss nfs_acl lockd grace sunrpc 
ip_tables x_tables btrfs zstd_compress zlib_deflate raid10 raid456 
async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq 
libcrc32c raid1 raid0 linear dm_service_time mlx4_ib ib_uverbs mlx4_en ptp 
ib_core pps_core pkey zcrypt crc32_vx_s390 ghash_s390 prng aes_s390 des_s390 
qeth_l2 des_generic sha512_s390 sha256_s390 sha1_s390 sha_common mlx4_core zfcp 
scsi_transport_fc qeth qdio ccwgroup dasd_eckd_mod dasd_mod scsi_dh_emc 
scsi_dh_rdac scsi_dh_alua dm_multipath
  [ 1225.148711] CPU: 4 PID: 161930 Comm: dockerd Tainted: P   O  
5.3.0-52-generic #46-Ubuntu
  [ 1225.148714] Hardware name: IBM 2964 N63 400 (LPAR)
  [ 1225.148716] Krnl PSW : 0704d0018000 03ff808e972a 
(ovl_open_realfile+0x4a/0x148 [overlay])
  [ 1225.148734]R:0 T:1 IO:1 EX:1 Key:0 M:1 W:0 P:0 AS:3 CC:1 PM:0 
RI:0 EA:3
  [ 1225.148736] Krnl GPRS: 0064 6f766c5f646f5f6d 0007a14ac300 
0003a5df6600
  [ 1225.148738]8000 0001 0003 
000372e45278
  [ 1225.148740]03ff808ea508 000304048000 0005c7f32b68 
00064a2ab900
  [ 1225.148742]0003a5df6600 03ff808f31d8 03ff808e971a 
03e009c0faf8
  [ 1225.148749] Krnl Code: 03ff808e971a: a59a0404  oilh%r9,1028
    03ff808e971e: e310f0c4  lg  
%r1,192(%r15)
   #03ff808e9724: e31010680004  lg  
%r1,104(%r1)
   >03ff808e972a: e3101064  lg  
%r1,96(%r1)
    03ff808e9730: b9040082  lgr %r8,%r2
    03ff808e9734: c21c6a656a62  cgfi
%r1,1785031266
    03ff808e973a: b9140039  lgfr%r3,%r9
    

[Kernel-packages] [Bug 1877575] Re: kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu with focal daily

2020-05-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: qemu (Ubuntu)
   Status: New => 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/1877575

Title:
  kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu
  with focal daily

Status in linux package in Ubuntu:
  Confirmed
Status in qemu package in Ubuntu:
  Confirmed

Bug description:
  Focal daily 20200507 (started earlier)
  Kernel is 5.4.0-30.34

  Kernel crashes on boot in Qemu with:
   
  [4.019922] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.022101] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.027487] RSP: 0018:ac44c0707c08 EFLAGS: 00010202
  [4.029424] RAX: 0f230ca096f12900 RBX: 9e44e9c2eaa0 RCX: 
0001
  [4.031645] RDX: 9e44ea9ae540 RSI: 9e44e9c2eaa0 RDI: 
9e44fb281f00
  [4.033811] RBP: ac44c0707c50 R08: 9e44e9e3cc00 R09: 

  [4.036428] R10: 9e44ea9ae540 R11:  R12: 
9e44f9ec9c00
  [4.038737] R13: 04048002 R14: 9e44eaa51b00 R15: 
9e44e9e3cc00
  [4.046087] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.051277] CS:  0010 DS:  ES:  CR0: 80050033
  [4.055455] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.059614] general protection fault:  [#4] SMP NOPTI
  [4.061700] CPU: 1 PID: 360 Comm: cp Tainted: G  D   
5.4.0-30-generic #34-Ubuntu
  [4.063016] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 
1.13.0-1ubuntu1 04/01/2014
  [4.063016] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.063016] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.063016] RSP: 0018:ac44c0373c08 EFLAGS: 00010206
  [4.063016] RAX: 1579f0d048c0c300 RBX: 9e44eaa3f478 RCX: 

  [4.063016] RDX:  RSI: 9e44eaa3f478 RDI: 
9e44fb281f00
  [4.063016] RBP: ac44c0373c50 R08: 9e44fb3ac6c0 R09: 

  [4.063016] R10: 0001 R11: 007461642e73 R12: 
9e44f9b2d700
  [4.063016] R13: 04048000 R14: 9e44fa3d65c0 R15: 
9e44fb3ac6c0
  [4.063016] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.063016] CS:  0010 DS:  ES:  CR0: 80050033
  [4.063016] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.063016] Call Trace:
  [4.063016]  ? ovl_llseek+0x120/0x120 [overlay]
  [4.063016]  ovl_open+0x57/0x90 [overlay]
  [4.063016]  do_dentry_open+0x143/0x3a0
  [4.063016]  vfs_open+0x2d/0x30
  [4.063016]  do_last+0x194/0x900
  [4.063016]  path_openat+0x8d/0x290
  [4.063016]  do_filp_open+0x91/0x100
  [4.063016]  ? __alloc_fd+0x46/0x150
  [4.063016]  do_sys_open+0x17e/0x290
  [4.063016]  __x64_sys_openat+0x20/0x30
  [4.124120]  do_syscall_64+0x57/0x190
  [4.124120]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
  [4.124120] RIP: 0033:0x7f91961c3d1b
  [4.124120] Code: 25 00 00 41 00 3d 00 00 41 00 74 4b 64 8b 04 25 18 00 00 
00 85 c0 75 67 44 89 e2 48 89 ee bf 9c ff ff ff b8 01 01 00 00 0f 05 <48> 3d 00 
f0 ff ff 0f 87 91 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
  [4.124120] RSP: 002b:7ffebc71f1b0 EFLAGS: 0246 ORIG_RAX: 
0101
  [4.124120] RAX: ffda RBX:  RCX: 
7f91961c3d1b
  [4.124120] RDX:  RSI: 562960241670 RDI: 
ff9c
  [4.124120] RBP: 562960241670 R08: 0001 R09: 
0013
  [4.124120] R10:  R11: 0246 R12: 

  [4.124120] R13:  R14: 7ffebc71f298 R15: 

  [4.124120] Modules linked in: overlay nls_utf8 isofs dm_mirror 
dm_region_hash dm_log hid_generic usbhid hid qxl ttm drm_kms_helper ahci 
syscopyarea sysfillrect virtio_net net_failover i2c_i801 libahci psmouse 
lpc_ich sysimgblt fb_sys_fops failover virtio_blk drm


  Reproduced on bionic and focal hosts.
  Groovy daily boots fine.
  boot message attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: qemu 1:4.2-3ubuntu6
  ProcVersionSignature: Ubuntu 5.4.0-18.22-generic 5.4.24
  Uname: Linux 5.4.0-18-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu32
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri May  8 15:36:38 2020
  

[Kernel-packages] [Bug 1877575] Status changed to Confirmed

2020-05-08 Thread Ubuntu Kernel Bot
This change was made by a bot.

** Changed in: linux (Ubuntu)
   Status: New => 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/1877575

Title:
  kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu
  with focal daily

Status in linux package in Ubuntu:
  Confirmed
Status in qemu package in Ubuntu:
  New

Bug description:
  Focal daily 20200507 (started earlier)
  Kernel is 5.4.0-30.34

  Kernel crashes on boot in Qemu with:
   
  [4.019922] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.022101] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.027487] RSP: 0018:ac44c0707c08 EFLAGS: 00010202
  [4.029424] RAX: 0f230ca096f12900 RBX: 9e44e9c2eaa0 RCX: 
0001
  [4.031645] RDX: 9e44ea9ae540 RSI: 9e44e9c2eaa0 RDI: 
9e44fb281f00
  [4.033811] RBP: ac44c0707c50 R08: 9e44e9e3cc00 R09: 

  [4.036428] R10: 9e44ea9ae540 R11:  R12: 
9e44f9ec9c00
  [4.038737] R13: 04048002 R14: 9e44eaa51b00 R15: 
9e44e9e3cc00
  [4.046087] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.051277] CS:  0010 DS:  ES:  CR0: 80050033
  [4.055455] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.059614] general protection fault:  [#4] SMP NOPTI
  [4.061700] CPU: 1 PID: 360 Comm: cp Tainted: G  D   
5.4.0-30-generic #34-Ubuntu
  [4.063016] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 
1.13.0-1ubuntu1 04/01/2014
  [4.063016] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.063016] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.063016] RSP: 0018:ac44c0373c08 EFLAGS: 00010206
  [4.063016] RAX: 1579f0d048c0c300 RBX: 9e44eaa3f478 RCX: 

  [4.063016] RDX:  RSI: 9e44eaa3f478 RDI: 
9e44fb281f00
  [4.063016] RBP: ac44c0373c50 R08: 9e44fb3ac6c0 R09: 

  [4.063016] R10: 0001 R11: 007461642e73 R12: 
9e44f9b2d700
  [4.063016] R13: 04048000 R14: 9e44fa3d65c0 R15: 
9e44fb3ac6c0
  [4.063016] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.063016] CS:  0010 DS:  ES:  CR0: 80050033
  [4.063016] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.063016] Call Trace:
  [4.063016]  ? ovl_llseek+0x120/0x120 [overlay]
  [4.063016]  ovl_open+0x57/0x90 [overlay]
  [4.063016]  do_dentry_open+0x143/0x3a0
  [4.063016]  vfs_open+0x2d/0x30
  [4.063016]  do_last+0x194/0x900
  [4.063016]  path_openat+0x8d/0x290
  [4.063016]  do_filp_open+0x91/0x100
  [4.063016]  ? __alloc_fd+0x46/0x150
  [4.063016]  do_sys_open+0x17e/0x290
  [4.063016]  __x64_sys_openat+0x20/0x30
  [4.124120]  do_syscall_64+0x57/0x190
  [4.124120]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
  [4.124120] RIP: 0033:0x7f91961c3d1b
  [4.124120] Code: 25 00 00 41 00 3d 00 00 41 00 74 4b 64 8b 04 25 18 00 00 
00 85 c0 75 67 44 89 e2 48 89 ee bf 9c ff ff ff b8 01 01 00 00 0f 05 <48> 3d 00 
f0 ff ff 0f 87 91 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
  [4.124120] RSP: 002b:7ffebc71f1b0 EFLAGS: 0246 ORIG_RAX: 
0101
  [4.124120] RAX: ffda RBX:  RCX: 
7f91961c3d1b
  [4.124120] RDX:  RSI: 562960241670 RDI: 
ff9c
  [4.124120] RBP: 562960241670 R08: 0001 R09: 
0013
  [4.124120] R10:  R11: 0246 R12: 

  [4.124120] R13:  R14: 7ffebc71f298 R15: 

  [4.124120] Modules linked in: overlay nls_utf8 isofs dm_mirror 
dm_region_hash dm_log hid_generic usbhid hid qxl ttm drm_kms_helper ahci 
syscopyarea sysfillrect virtio_net net_failover i2c_i801 libahci psmouse 
lpc_ich sysimgblt fb_sys_fops failover virtio_blk drm


  Reproduced on bionic and focal hosts.
  Groovy daily boots fine.
  boot message attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: qemu 1:4.2-3ubuntu6
  ProcVersionSignature: Ubuntu 5.4.0-18.22-generic 5.4.24
  Uname: Linux 5.4.0-18-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu32
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri May  8 15:36:38 2020
  Dependencies:
   
  InstallationDate: 

[Kernel-packages] [Bug 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Seth Forshee
Don't worry too much about what lspci says. It just has a database to
map PCI ids to names, and it currently considers anything with the id
8086:02f0 to be a 9462. The correct driver (iwlwifi) is being used, and
it identifies your wireless correctly, so that is what matters.

Can you please describe what functional problems you're having with your
wireless? You say that bluetooth is not detected. Is anything else not
working?

** Changed in: linux (Ubuntu)
   Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Incomplete
Status in linux-firmware package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=8d5d378c-648e-4355-8c1c-10cb298b2677 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-29-generic N/A
   linux-backports-modules-5.4.0-29-generic  N/A
   linux-firmware1.187
  RfKill:
   1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  focal
  Uname: Linux 5.4.0-29-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/29/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 863F
  dmi.board.vendor: HP
  dmi.board.version: 54.23
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd11/29/2019:svnHP:pnHPSpectrex360Convertible15-df1xxx:pvr:rvnHP:rn863F:rvr54.23:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 

[Kernel-packages] [Bug 1877578] [NEW] To support older userspace running on newer kernels please backport syscall table updates in linux-libc-dev

2020-05-08 Thread Dimitri John Ledkov
Public bug reported:

To support older userspace running on newer kernels please backport
syscall table updates in linux-libc-dev.

Alternatively make linux-libc-dev be shipped by a standalone source
package (linux "flavour") to easily update it.

Currently snapd wants to apply seccomp filters on any release and any
kernel, which needs updated libseccomp, which needs updated linux-libc-
dev available at build time.

At the moment looking to backport syscall table numbers for the split
ipc, y2038 time syscalls introduced in v5.0.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: New

-- 
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/1877578

Title:
  To support older userspace running on newer kernels please backport
  syscall table updates in linux-libc-dev

Status in linux package in Ubuntu:
  New

Bug description:
  To support older userspace running on newer kernels please backport
  syscall table updates in linux-libc-dev.

  Alternatively make linux-libc-dev be shipped by a standalone source
  package (linux "flavour") to easily update it.

  Currently snapd wants to apply seccomp filters on any release and any
  kernel, which needs updated libseccomp, which needs updated linux-
  libc-dev available at build time.

  At the moment looking to backport syscall table numbers for the split
  ipc, y2038 time syscalls introduced in v5.0.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877578/+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 1865130] Re: [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, trying to reset the VCPU!!!

2020-05-08 Thread Carmelo Caldarella
** Attachment removed: "2020-05-05 - dell-studio-1537 - xubuntu 20.04 - 
journalctl.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1865130/+attachment/5366946/+files/2020-05-05%20-%20dell-studio-1537%20-%20xubuntu%2020.04%20-%20journalctl.txt

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1865130

Title:
  [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, trying to
  reset the VCPU!!!

Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-firmware source package in Bionic:
  Fix Released
Status in linux-firmware source package in Eoan:
  Fix Released

Bug description:
  === SRU Justification ===
  [Impact] 
  Firmware update of radeon/oland_rlc.bin breaks some radeon cards.

  [Fix]
  Revert the new firmware.

  [Regression Potential]
  Low. The old firmware has been used for a long time.

  === Original Bug Report ===

  when trying > DRI_PRIME=1 glxgears , the result in dmesg is as
  following

  [  +0.91] radeon :01:00.0: WB enabled
  [  +0.02] radeon :01:00.0: fence driver on ring 0 use gpu addr 
0x8c00 and cpu addr 0x8ac2d26f
  [  +0.01] radeon :01:00.0: fence driver on ring 1 use gpu addr 
0x8c04 and cpu addr 0xa848de20
  [  +0.01] radeon :01:00.0: fence driver on ring 2 use gpu addr 
0x8c08 and cpu addr 0x1e4494a9
  [  +0.01] radeon :01:00.0: fence driver on ring 3 use gpu addr 
0x8c0c and cpu addr 0x98a9748e
  [  +0.01] radeon :01:00.0: fence driver on ring 4 use gpu addr 
0x8c10 and cpu addr 0xb6ff734d
  [  +0.000212] radeon :01:00.0: fence driver on ring 5 use gpu addr 
0x00075a18 and cpu addr 0x6b4da526
  [  +0.100566] radeon :01:00.0: failed VCE resume (-110).
  [  +0.179115] [drm] ring test on 0 succeeded in 1 usecs
  [  +0.04] [drm] ring test on 1 succeeded in 1 usecs
  [  +0.04] [drm] ring test on 2 succeeded in 1 usecs
  [  +0.06] [drm] ring test on 3 succeeded in 3 usecs
  [  +0.04] [drm] ring test on 4 succeeded in 3 usecs
  [  +1.171892] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015643] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015509] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015572] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015514] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015405] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015442] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015416] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015388] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +1.015379] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
trying to reset the VCPU!!!
  [  +0.019924] [drm:uvd_v1_0_start [radeon]] *ERROR* UVD not responding, 
giving up!!!
  [  +0.40] radeon :01:00.0: failed initializing UVD (-1).
  [  +0.60] [drm] ib test on ring 0 succeeded in 0 usecs
  [  +0.51] [drm] ib test on ring 1 succeeded in 0 usecs
  [  +0.32] [drm] ib test on ring 2 succeeded in 0 usecs
  [  +0.52] [drm] ib test on ring 3 succeeded in 0 usecs
  [  +0.29] [drm] ib test on ring 4 succeeded in 0 usecs

  Also it affects the boot time.

  the used OpenGL renderer is:
  "OpenGL renderer string: AMD OLAND (DRM 2.50.0, 5.3.0-40-generic, LLVM 9.0.0)"

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg 1:7.7+19ubuntu7.1
  ProcVersionSignature: Ubuntu 5.3.0-40.32~18.04.1-generic 5.3.18
  Uname: Linux 5.3.0-40-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.20.9-0ubuntu7.11
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: communitheme:ubuntu:GNOME
  Date: Fri Feb 28 11:50:50 2020
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.271+bdcom, 5.3.0-28-generic, x86_64: installed
   bcmwl, 6.30.223.271+bdcom, 5.3.0-40-generic, x86_64: installed
   virtualbox, 5.2.34, 5.3.0-28-generic, x86_64: installed
   virtualbox, 5.2.34, 5.3.0-40-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation 4th Gen Core Processor Integrated Graphics Controller 
[8086:0416] (rev 06) (prog-if 00 [VGA controller])
     Subsystem: Lenovo 4th Gen Core Processor Integrated Graphics Controller 
[17aa:3801]
     Subsystem: Lenovo Mars [Radeon HD 8670A/8670M/8750M] [17aa:3801]
  

[Kernel-packages] [Bug 1877575] Re: kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu with focal daily

2020-05-08 Thread Paride Legovini
This is happening with the Focal live-server images too, starting from
the image with serial 20200506. The previous daily (20200505) booted and
installed fine.

-- 
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/1877575

Title:
  kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu
  with focal daily

Status in linux package in Ubuntu:
  Confirmed
Status in qemu package in Ubuntu:
  New

Bug description:
  Focal daily 20200507 (started earlier)
  Kernel is 5.4.0-30.34

  Kernel crashes on boot in Qemu with:
   
  [4.019922] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.022101] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.027487] RSP: 0018:ac44c0707c08 EFLAGS: 00010202
  [4.029424] RAX: 0f230ca096f12900 RBX: 9e44e9c2eaa0 RCX: 
0001
  [4.031645] RDX: 9e44ea9ae540 RSI: 9e44e9c2eaa0 RDI: 
9e44fb281f00
  [4.033811] RBP: ac44c0707c50 R08: 9e44e9e3cc00 R09: 

  [4.036428] R10: 9e44ea9ae540 R11:  R12: 
9e44f9ec9c00
  [4.038737] R13: 04048002 R14: 9e44eaa51b00 R15: 
9e44e9e3cc00
  [4.046087] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.051277] CS:  0010 DS:  ES:  CR0: 80050033
  [4.055455] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.059614] general protection fault:  [#4] SMP NOPTI
  [4.061700] CPU: 1 PID: 360 Comm: cp Tainted: G  D   
5.4.0-30-generic #34-Ubuntu
  [4.063016] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 
1.13.0-1ubuntu1 04/01/2014
  [4.063016] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
  [4.063016] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
  [4.063016] RSP: 0018:ac44c0373c08 EFLAGS: 00010206
  [4.063016] RAX: 1579f0d048c0c300 RBX: 9e44eaa3f478 RCX: 

  [4.063016] RDX:  RSI: 9e44eaa3f478 RDI: 
9e44fb281f00
  [4.063016] RBP: ac44c0373c50 R08: 9e44fb3ac6c0 R09: 

  [4.063016] R10: 0001 R11: 007461642e73 R12: 
9e44f9b2d700
  [4.063016] R13: 04048000 R14: 9e44fa3d65c0 R15: 
9e44fb3ac6c0
  [4.063016] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
  [4.063016] CS:  0010 DS:  ES:  CR0: 80050033
  [4.063016] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 
06e0
  [4.063016] Call Trace:
  [4.063016]  ? ovl_llseek+0x120/0x120 [overlay]
  [4.063016]  ovl_open+0x57/0x90 [overlay]
  [4.063016]  do_dentry_open+0x143/0x3a0
  [4.063016]  vfs_open+0x2d/0x30
  [4.063016]  do_last+0x194/0x900
  [4.063016]  path_openat+0x8d/0x290
  [4.063016]  do_filp_open+0x91/0x100
  [4.063016]  ? __alloc_fd+0x46/0x150
  [4.063016]  do_sys_open+0x17e/0x290
  [4.063016]  __x64_sys_openat+0x20/0x30
  [4.124120]  do_syscall_64+0x57/0x190
  [4.124120]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
  [4.124120] RIP: 0033:0x7f91961c3d1b
  [4.124120] Code: 25 00 00 41 00 3d 00 00 41 00 74 4b 64 8b 04 25 18 00 00 
00 85 c0 75 67 44 89 e2 48 89 ee bf 9c ff ff ff b8 01 01 00 00 0f 05 <48> 3d 00 
f0 ff ff 0f 87 91 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
  [4.124120] RSP: 002b:7ffebc71f1b0 EFLAGS: 0246 ORIG_RAX: 
0101
  [4.124120] RAX: ffda RBX:  RCX: 
7f91961c3d1b
  [4.124120] RDX:  RSI: 562960241670 RDI: 
ff9c
  [4.124120] RBP: 562960241670 R08: 0001 R09: 
0013
  [4.124120] R10:  R11: 0246 R12: 

  [4.124120] R13:  R14: 7ffebc71f298 R15: 

  [4.124120] Modules linked in: overlay nls_utf8 isofs dm_mirror 
dm_region_hash dm_log hid_generic usbhid hid qxl ttm drm_kms_helper ahci 
syscopyarea sysfillrect virtio_net net_failover i2c_i801 libahci psmouse 
lpc_ich sysimgblt fb_sys_fops failover virtio_blk drm


  Reproduced on bionic and focal hosts.
  Groovy daily boots fine.
  boot message attached.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: qemu 1:4.2-3ubuntu6
  ProcVersionSignature: Ubuntu 5.4.0-18.22-generic 5.4.24
  Uname: Linux 5.4.0-18-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu32
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri May 

[Kernel-packages] [Bug 1877575] [NEW] kernel crash with 0010:ovl_open_realfile+0x4a/0x150 [overlay] in Qemu with focal daily

2020-05-08 Thread Jean-Baptiste Lallement
Public bug reported:

Focal daily 20200507 (started earlier)
Kernel is 5.4.0-30.34

Kernel crashes on boot in Qemu with:
 
[4.019922] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
[4.022101] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
[4.027487] RSP: 0018:ac44c0707c08 EFLAGS: 00010202
[4.029424] RAX: 0f230ca096f12900 RBX: 9e44e9c2eaa0 RCX: 0001
[4.031645] RDX: 9e44ea9ae540 RSI: 9e44e9c2eaa0 RDI: 9e44fb281f00
[4.033811] RBP: ac44c0707c50 R08: 9e44e9e3cc00 R09: 
[4.036428] R10: 9e44ea9ae540 R11:  R12: 9e44f9ec9c00
[4.038737] R13: 04048002 R14: 9e44eaa51b00 R15: 9e44e9e3cc00
[4.046087] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
[4.051277] CS:  0010 DS:  ES:  CR0: 80050033
[4.055455] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 06e0
[4.059614] general protection fault:  [#4] SMP NOPTI
[4.061700] CPU: 1 PID: 360 Comm: cp Tainted: G  D   
5.4.0-30-generic #34-Ubuntu
[4.063016] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 
1.13.0-1ubuntu1 04/01/2014
[4.063016] RIP: 0010:ovl_open_realfile+0x4a/0x150 [overlay]
[4.063016] Code: 44 8b 6f 40 65 48 8b 04 25 28 00 00 00 48 89 45 d0 31 c0 
49 8b 7e 28 41 81 cd 00 00 04 04 e8 9d d4 ff ff 49 89 c7 48 8b 45 c8 <48> 8b 40 
68 48 81 78 60 62 6a 65 6a 0f 84 a6 00 00 00 65 48 8b 04
[4.063016] RSP: 0018:ac44c0373c08 EFLAGS: 00010206
[4.063016] RAX: 1579f0d048c0c300 RBX: 9e44eaa3f478 RCX: 
[4.063016] RDX:  RSI: 9e44eaa3f478 RDI: 9e44fb281f00
[4.063016] RBP: ac44c0373c50 R08: 9e44fb3ac6c0 R09: 
[4.063016] R10: 0001 R11: 007461642e73 R12: 9e44f9b2d700
[4.063016] R13: 04048000 R14: 9e44fa3d65c0 R15: 9e44fb3ac6c0
[4.063016] FS:  7f91962a6600() GS:9e44fbb0() 
knlGS:
[4.063016] CS:  0010 DS:  ES:  CR0: 80050033
[4.063016] CR2: 56295fbc4a59 CR3: 000169c8 CR4: 06e0
[4.063016] Call Trace:
[4.063016]  ? ovl_llseek+0x120/0x120 [overlay]
[4.063016]  ovl_open+0x57/0x90 [overlay]
[4.063016]  do_dentry_open+0x143/0x3a0
[4.063016]  vfs_open+0x2d/0x30
[4.063016]  do_last+0x194/0x900
[4.063016]  path_openat+0x8d/0x290
[4.063016]  do_filp_open+0x91/0x100
[4.063016]  ? __alloc_fd+0x46/0x150
[4.063016]  do_sys_open+0x17e/0x290
[4.063016]  __x64_sys_openat+0x20/0x30
[4.124120]  do_syscall_64+0x57/0x190
[4.124120]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[4.124120] RIP: 0033:0x7f91961c3d1b
[4.124120] Code: 25 00 00 41 00 3d 00 00 41 00 74 4b 64 8b 04 25 18 00 00 
00 85 c0 75 67 44 89 e2 48 89 ee bf 9c ff ff ff b8 01 01 00 00 0f 05 <48> 3d 00 
f0 ff ff 0f 87 91 00 00 00 48 8b 4c 24 28 64 48 33 0c 25
[4.124120] RSP: 002b:7ffebc71f1b0 EFLAGS: 0246 ORIG_RAX: 
0101
[4.124120] RAX: ffda RBX:  RCX: 7f91961c3d1b
[4.124120] RDX:  RSI: 562960241670 RDI: ff9c
[4.124120] RBP: 562960241670 R08: 0001 R09: 0013
[4.124120] R10:  R11: 0246 R12: 
[4.124120] R13:  R14: 7ffebc71f298 R15: 
[4.124120] Modules linked in: overlay nls_utf8 isofs dm_mirror 
dm_region_hash dm_log hid_generic usbhid hid qxl ttm drm_kms_helper ahci 
syscopyarea sysfillrect virtio_net net_failover i2c_i801 libahci psmouse 
lpc_ich sysimgblt fb_sys_fops failover virtio_blk drm


Reproduced on bionic and focal hosts.
Groovy daily boots fine.
boot message attached.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: qemu 1:4.2-3ubuntu6
ProcVersionSignature: Ubuntu 5.4.0-18.22-generic 5.4.24
Uname: Linux 5.4.0-18-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu32
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Fri May  8 15:36:38 2020
Dependencies:
 
InstallationDate: Installed on 2014-07-15 (2124 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20140520)
MachineType: Gigabyte Technology Co., Ltd. GA-890GPA-UD3H
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-18-generic 
root=UUID=0889d734-ea91-4bdb-9d16-2a0a923ad3d1 ro
SourcePackage: qemu
UpgradeStatus: Upgraded to groovy on 2018-03-24 (775 days ago)
dmi.bios.date: 07/23/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: FD
dmi.board.name: GA-890GPA-UD3H
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.type: 3

[Kernel-packages] [Bug 1877388] Re: If DVD drive is present system very often fails to start-up

2020-05-08 Thread jdaviescoates
OK, attached.

** Attachment added: "prevboot.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1877388/+attachment/5368398/+files/prevboot.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/1877388

Title:
  If DVD drive is present system very often fails to start-up

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Whenever I power down, upon next boot the system just hangs with
  Ubuntu at the bottom of the screen and the circle above going around
  and around forever.

  It happens nearly every ime I power down, but not every single time.
  Rebooting rather that powering down works quite often.

  At first when thing hung I would just hard power off by holding down
  the power key.  Then I'd use the live usb I installed with to run
  Disks app.  More often than not the vfat W95 FAT32 partition at sda1
  was damaged. The first repair would fail. The second repair would
  succeed.  And then I'd be able to boot into my system again.

  After chatting about it a little with EriC^^ in #ubuntu on IRC I
  learned how to do Alt+Fn+PrtSc S, U, B or S, U, O.  Sometimes just
  doing either of those on the hang screen would result in it booting up
  fine next time.  Sometimes not.

  After installing 20.04 (a fresh install on a brand new Samsung 860 EVO
  1TB sdd hard drive) I copied back all the files in my home direct that
  I'd backed from 18.04, including hidden files.  This confused Firefox
  so I had to delete related folders and then unintall and reinstall to
  stop Firefox being confused.  This might have nothing whatsoever to do
  with this issue, just mentioning it just in case something else is
  similarly confused.  EriC^^ suggested I try adding another user and
  seeing if the issue went away.  On the first test (and some but not
  all subsequent tests) it did seem that TestUser could power down and
  reboot fine. But actually it didn't seem that different.

  I powered down, rebooted, used live usb to repair Disk over and over
  again for hours trying to find a pattern as to when it happened and
  when it didn't, but failed to find any fixed pattern.

  Eventually at one point it was taking a while to power down (or
  reboot, I forget) and so I hit Esc and spotted that it had failed to
  unmount /cdrom  ...

  ... so then I thought I'd try completely removing my DVD/CDRW drive
  and that made the issue go away.

  Before filing this I put the DVD drive back in (but haven't since
  rebooted), so not sure if apport has picked up it's details or not?
  Perhaps I'll need to re-file the bug after booting with it present?

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: plymouth 0.9.4git20200323-0ubuntu6
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  Uname: Linux 5.4.0-29-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  7 15:09:23 2020
  DefaultPlymouth: /usr/share/plymouth/themes/bgrt/bgrt.plymouth
  InstallationDate: Installed on 2020-04-26 (11 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lsusb:
   Bus 002 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 001 Device 003: ID 147e:2016 Upek Biometric Touchchip/Touchstrip 
Fingerprint Sensor
   Bus 001 Device 002: ID 8087:0020 Intel Corp. Integrated Rate Matching Hub
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  Lsusb-t:
   /:  Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/8p, 480M
   /:  Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-pci/3p, 480M
   |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/6p, 480M
   |__ Port 3: Dev 3, If 0, Class=Vendor Specific Class, Driver=, 12M
  MachineType: LENOVO 4384WCV
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=9ce94e7a-53bd-4507-ae31-93a2392b2da2 ro quiet splash vt.handoff=7
  ProcEnviron:
   LANGUAGE=en_GB:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=9ce94e7a-53bd-4507-ae31-93a2392b2da2 ro quiet splash vt.handoff=7
  SourcePackage: plymouth
  TextPlymouth: /usr/share/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/26/2010
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 6MET81WW (1.41 )
  dmi.board.name: 4384WCV
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  

[Kernel-packages] [Bug 1875668] Re: SSD ext4_find_entry:1454 : read only

2020-05-08 Thread Yass
** Changed in: linux (Ubuntu)
   Status: Confirmed => Invalid

** Converted to question:
   https://answers.launchpad.net/ubuntu/+source/linux/+question/690548

-- 
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/1875668

Title:
  SSD ext4_find_entry:1454 : read only

Status in linux package in Ubuntu:
  Invalid

Bug description:
  I'm using Ubuntu 18.04, recently i remark that  Randomly the computer just 
goes read only and if I go to command line screen typing Alt+Ctrl+F1 i get : 
  https://imgur.com/a/Kf04JE5

  I launched smartctl analyis here is the output :

  smartctl 6.6 2016-05-31 r4324 [x86_64-linux-4.15.0-96-generic] (local build)
  Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

  === START OF INFORMATION SECTION ===
  Device Model: TCSUNBOW N8 120GB
  Serial Number:2017101700034
  Firmware Version: Q0607A
  User Capacity:120,034,123,776 bytes [120 GB]
  Sector Size:  512 bytes logical/physical
  Rotation Rate:Solid State Device
  Device is:Not in smartctl database [for details use: -P showall]
  ATA Version is:   ACS-2 (minor revision not indicated)
  SATA Version is:  SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s)
  Local Time is:Tue Apr 28 17:05:20 2020 CEST
  SMART support is: Available - device has SMART capability.
  SMART support is: Enabled

  === START OF READ SMART DATA SECTION ===
  SMART overall-health self-assessment test result: PASSED

  General SMART Values:
  Offline data collection status:  (0x00)   Offline data collection activity
was never started.
Auto Offline Data Collection: Disabled.
  Self-test execution status:  (   0)   The previous self-test routine 
completed
without error or no self-test has ever 
been run.
  Total time to complete Offline 
  data collection:  (0) seconds.
  Offline data collection
  capabilities:  (0x71) SMART execute Offline immediate.
No Auto Offline data collection support.
Suspend Offline collection upon new
command.
No Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
  SMART capabilities:(0x0002)   Does not save SMART data before
entering power-saving mode.
Supports SMART auto save timer.
  Error logging capability:(0x01)   Error logging supported.
General Purpose Logging supported.
  Short self-test routine 
  recommended polling time:  (   1) minutes.
  Extended self-test routine
  recommended polling time:  (   2) minutes.
  Conveyance self-test routine
  recommended polling time:  (   1) minutes.
  SCT capabilities:(0x0035) SCT Status supported.
SCT Feature Control supported.
SCT Data Table supported.

  SMART Attributes Data Structure revision number: 1
  Vendor Specific SMART Attributes with Thresholds:
  ID# ATTRIBUTE_NAME  FLAG VALUE WORST THRESH TYPE  UPDATED  
WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x   100   100   000Old_age   Offline 
 -   0
5 Reallocated_Sector_Ct   0x   100   100   000Old_age   Offline 
 -   0
9 Power_On_Hours  0x   100   100   000Old_age   Offline 
 -   2056
   12 Power_Cycle_Count   0x   100   100   000Old_age   Offline 
 -   902
  160 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   0
  161 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   120
  163 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   3
  164 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   24167
  165 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   76
  166 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   1
  167 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   12
  168 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   1000
  169 Unknown_Attribute   0x   100   100   000Old_age   Offline 
 -   99
  175 Program_Fail_Count_Chip 0x   100   100   000Old_age   Offline 
 -   0
  

[Kernel-packages] [Bug 1876847] Re: HP-Spectre 2019 Intel wireless driver is detected incorrectly.

2020-05-08 Thread Srikar Thottempudi
** Also affects: linux-firmware (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux-firmware in Ubuntu.
https://bugs.launchpad.net/bugs/1876847

Title:
  HP-Spectre 2019 Intel wireless driver is detected incorrectly.

Status in linux package in Ubuntu:
  Confirmed
Status in linux-firmware package in Ubuntu:
  New

Bug description:
  Output of lsb_release -rd,
  Description:  Ubuntu 20.04 LTS
  Release:  20.04

  Issue:
  I have Intel AX-201 for wireless but when i do "lspci -k", the driver is 
detected as "Intel-9462". When i did "journalctl -k | grep iwlwifi", it shows 
that the wireless driver detected is "Intel AX-201".

  Output of lspci -k,
  00:14.3 Network controller: Intel Corporation Wireless-AC 9462
   Subsystem: Intel Corporation Wireless-AC 9462
   Kernel driver in use: iwlwifi
   Kernel modules: iwlwifi

  Output of journalctl -k | grep iwlwifi,
  May 04 23:20:12 kernel: iwlwifi :00:14.3: enabling device ( -> 0002)
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-50.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Direct firmware load for 
iwlwifi-QuZ-a0-hr-b0-49.ucode failed with error -2
  May 04 23:20:12 kernel: iwlwifi :00:14.3: TLV_FW_FSEQ_VERSION: FSEQ 
Version: 43.2.23.17
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug destination: 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Found debug configuration: 0
  May 04 23:20:12 kernel: iwlwifi :00:14.3: loaded firmware version 
48.4fa0041f.0 op_mode iwlmvm
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Detected Intel(R) Wi-Fi 6 AX201 
160MHz, REV=0x354
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:12 kernel: iwlwifi :00:14.3: Allocated 0x0040 bytes for 
firmware monitor.
  May 04 23:20:12 kernel: iwlwifi :00:14.3: base HW address: 
7c:b2:7d:d0:d5:95
  May 04 23:20:12 kernel: iwlwifi :00:14.3 wlp0s20f3: renamed from wlan0
  May 04 23:20:13 kernel: iwlwifi :00:14.3: Applying debug destination 
EXTERNAL_DRAM
  May 04 23:20:13 kernel: iwlwifi :00:14.3: FW already configured (0) - 
re-configuring

  In the additional drivers module, it shows that module Intel-9462 no
  longer works. My bluetooth is also not detected and doesn't work.

  I came across this but no else responded yet. So decided to report a bug here.
  
https://askubuntu.com/questions/1232224/intel-ax201-detected-as-ac9462-wifi-connectivity-problems

  Please let me know if any more information is required.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  srikar 1447 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2020-05-03 (2 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP Spectre x360 Convertible 15-df1xxx
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-29-generic 
root=UUID=8d5d378c-648e-4355-8c1c-10cb298b2677 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-29.33-generic 5.4.30
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-29-generic N/A
   linux-backports-modules-5.4.0-29-generic  N/A
   linux-firmware1.187
  RfKill:
   1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  focal
  Uname: Linux 5.4.0-29-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 11/29/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.20
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 863F
  dmi.board.vendor: HP
  dmi.board.version: 54.23
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.20:bd11/29/2019:svnHP:pnHPSpectrex360Convertible15-df1xxx:pvr:rvnHP:rn863F:rvr54.23:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Spectre
  dmi.product.name: HP Spectre x360 Convertible 15-df1xxx
  dmi.product.sku: 7UT64UA#ABA
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1876847/+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 1875944] PulseList.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368367/+files/PulseList.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] RfKill.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368368/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] Xrandr.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "Xrandr.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368373/+files/Xrandr.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] XorgLogOld.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "XorgLogOld.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368372/+files/XorgLogOld.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] xdpyinfo.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "xdpyinfo.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368374/+files/xdpyinfo.txt

** 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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: 

[Kernel-packages] [Bug 1875944] Re: Lenovo Ideapad 130-15AST 20.04 distorted and unusable

2020-05-08 Thread Clay
I added the apport information with the system running 18.04. It isn't
possible to submit the info when on 20.04 as the display is unusable.

** Changed in: ubuntu-mate
   Status: New => Confirmed

** Changed in: libdrm (Ubuntu)
   Status: New => 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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:

[Kernel-packages] [Bug 1875944] UdevDb.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368369/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] WifiSyslog.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368370/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] XorgLog.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "XorgLog.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368371/+files/XorgLog.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] ProcModules.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368366/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] ProcEnviron.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368364/+files/ProcEnviron.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] ProcInterrupts.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368365/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1875944] ProcCpuinfoMinimal.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368363/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1875944] Lsusb.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368361/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe 

[Kernel-packages] [Bug 1875944] ProcCpuinfo.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368362/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] Lspci.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368360/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe 

[Kernel-packages] [Bug 1875944] IwConfig.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368357/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] DpkgLog.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "DpkgLog.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368356/+files/DpkgLog.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] CRDA.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/1875944/+attachment/5368354/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : 

[Kernel-packages] [Bug 1875944] LightdmDisplayLog.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "LightdmDisplayLog.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368358/+files/LightdmDisplayLog.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1875944] CurrentDmesg.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368355/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : 

[Kernel-packages] [Bug 1875944] LightdmLog.txt

2020-05-08 Thread Clay
apport information

** Attachment added: "LightdmLog.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368359/+files/LightdmLog.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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  Confirmed
Status in libdrm package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Output of lshw here: https://pastebin.com/NMBigV4G

  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617

  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.

  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.

  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.

  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE
  specific issue with this system.

  It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  clay   1524 F pulseaudio
   /dev/snd/controlC0:  clay   1524 F pulseaudio
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: MATE
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroRelease: Ubuntu 18.04
  DistroVariant: ubuntu
  DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:39f5]
  InstallationDate: Installed on 2020-04-27 (11 days ago)
  InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
  MachineType: LENOVO 81H5
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
  RelatedPackageVersions:
   linux-restricted-modules-5.3.0-46-generic N/A
   linux-backports-modules-5.3.0-46-generic  N/A
   linux-firmware1.173.17
  Tags:  bionic ubuntu
  Uname: Linux 5.3.0-46-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/27/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8ZCN15WW(V1.04)
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40700 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad 130-15AST
  dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
  dmi.product.family: ideapad 130-15AST
  dmi.product.name: 81H5
  dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
  dmi.product.version: Lenovo ideapad 130-15AST
  dmi.sys.vendor: LENOVO
  version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-mate/+bug/1875944/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net

[Kernel-packages] [Bug 1875944] Re: Lenovo Ideapad 130-15AST 20.04 distorted and unusable

2020-05-08 Thread Clay
apport information

** Tags added: apport-collected bionic ubuntu

** Description changed:

  Output of lshw here: https://pastebin.com/NMBigV4G
  
  Screenshot of the desktop here in the community forum: 
  
https://ubuntu-mate.community/t/lenovo-ideapad-20-04-upgrade-distorted-and-unusable/21617
  
  I'm not all that experienced at filing bug reports here so I have
  included the attachment of the photo found at the forum link.
  
  The picture in the community forum link is what the MATE 20.04 live USB boots 
to.
  I first upgraded from 18.04 using do-release-upgrade. The result looked like 
the photo as well.
  Then I reinstalled 18.04, upgraded to 19.10, which looked and performed 
normally. I then upgraded the 19.10 install to 20.04 with the same result as 
the photo.
  I also tried with a different flash drive just to rule that out.
  
  Then I made the live USB of the 20.04 image and booted it to what you see in 
the forum post.
  I made a live USB of both Stock Ubuntu and Kubuntu 20.04 and both worked just 
fine.
  
  Until I tried the other two flavors I was thinking it was system
  specific, but after they worked normally it seems to be a MATE specific
  issue with this system.
  
- It appears to be only a display problem. The DE is completely unusable
- with the mouse, but I can launch a terminal and run commands, although
- the terminal is just as distorted as the photo above, so you can't see
- what you are typing or the resulting output.
+ It appears to be only a display problem. The DE is completely unusable with 
the mouse, but I can launch a terminal and run commands, although the terminal 
is just as distorted as the photo above, so you can't see what you are typing 
or the resulting output.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.9-0ubuntu7.14
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC1:  clay   1524 F pulseaudio
+  /dev/snd/controlC0:  clay   1524 F pulseaudio
+ BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
+ CompositorRunning: None
+ CurrentDesktop: MATE
+ DistUpgraded: Fresh install
+ DistroCodename: bionic
+ DistroRelease: Ubuntu 18.04
+ DistroVariant: ubuntu
+ DkmsStatus: rtl8821ce, v5.5.2_34066.20200325, 5.3.0-46-generic, x86_64: 
installed
+ GraphicsCard:
+  Advanced Micro Devices, Inc. [AMD/ATI] Stoney [Radeon R2/R3/R4/R5 Graphics] 
[1002:98e4] (rev ea) (prog-if 00 [VGA controller])
+Subsystem: Lenovo Device [17aa:39f5]
+ InstallationDate: Installed on 2020-04-27 (11 days ago)
+ InstallationMedia: Ubuntu-MATE 18.04.4 LTS "Bionic Beaver" - Release amd64 
(20200203.1)
+ MachineType: LENOVO 81H5
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-46-generic 
root=UUID=bec09cbc-83af-49f6-8aeb-f02059977f4a ro quiet splash vt.handoff=1
+ ProcVersionSignature: Ubuntu 5.3.0-46.38~18.04.1-generic 5.3.18
+ RelatedPackageVersions:
+  linux-restricted-modules-5.3.0-46-generic N/A
+  linux-backports-modules-5.3.0-46-generic  N/A
+  linux-firmware1.173.17
+ Tags:  bionic ubuntu
+ Uname: Linux 5.3.0-46-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 06/27/2018
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: 8ZCN15WW(V1.04)
+ dmi.board.asset.tag: NO Asset Tag
+ dmi.board.name: LNVNB161216
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0J40700 WIN
+ dmi.chassis.asset.tag: NO Asset Tag
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: Lenovo ideapad 130-15AST
+ dmi.modalias: 
dmi:bvnLENOVO:bvr8ZCN15WW(V1.04):bd06/27/2018:svnLENOVO:pn81H5:pvrLenovoideapad130-15AST:rvnLENOVO:rnLNVNB161216:rvrSDK0J40700WIN:cvnLENOVO:ct10:cvrLenovoideapad130-15AST:
+ dmi.product.family: ideapad 130-15AST
+ dmi.product.name: 81H5
+ dmi.product.sku: LENOVO_MT_81H5_BU_idea_FM_ideapad 130-15AST
+ dmi.product.version: Lenovo ideapad 130-15AST
+ dmi.sys.vendor: LENOVO
+ version.compiz: compiz 1:0.9.13.1+18.04.20180302-0ubuntu1
+ version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.2
+ version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.3
+ version.libgl1-mesa-glx: libgl1-mesa-glx 19.2.8-0ubuntu0~18.04.3
+ version.xserver-xorg-core: xserver-xorg-core N/A
+ version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
+ version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
+ version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
+ version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1875944/+attachment/5368353/+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/1875944

Title:
  Lenovo Ideapad 130-15AST 20.04 distorted and unusable

Status in Ubuntu MATE:
  

  1   2   >