[Kernel-packages] [Bug 1901413] Re: Sound Blaster Audigy 5/Rx cannot be configured as input/output

2020-10-25 Thread Daniel van Vugt
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command only once, as it
will automatically gather debugging information, in a terminal:

apport-collect 1901413

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

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

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

** Changed in: pulseaudio (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/1901413

Title:
  Sound Blaster Audigy 5/Rx cannot be configured as input/output

Status in linux package in Ubuntu:
  Incomplete
Status in pulseaudio package in Ubuntu:
  Incomplete

Bug description:
  I have Sound Blaster Audigy 5/Rx, using the well known snd_emu10k1, but I 
cannot use it as both input and output device: it's working either as output or 
as input but not as input/output.
  I have installed "pavucontrol", when opening it in "configure" there are 
different options:

  Output "Analog Stereo"
  Output "Digital Stereo (IEC958)"
  Output "Surround 5.1"
  Output "Surround 4.1"
  Output "Surround 2.1"
  Output "Surround 7.1"
  Output "Surround 5.0"
  Output "Surround 4.0"
  Input "Analog Stereo"
  Input "Digital Stereo (IEC958)"

  If I pick one of the "output" I can hear the sound but the microphones
  are greyed out in the audio panel and I can't use it in any
  application. Instead if I select "Input "Analog Stereo"" I can record
  the audio but I can't hear any output!

  The volumes are turned up according also to a previous post I did
  related to similar issue I had in the past.

  The only workaround found so far is to execute: "pacmd load-module
  module-alsa-source device=hw:1,0".

  Please find attached "alsa-info" report.

  Everything was working fine in Min 19.3 but not in Mint 20 (based on Ubuntu 
20.04):
  DISTRIB_ID=LinuxMint
  DISTRIB_RELEASE=20
  DISTRIB_CODENAME=ulyana
  DISTRIB_DESCRIPTION="Linux Mint 20 Ulyana"
  snd_emu10k1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901413/+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 1891421] Re: kci_test_encap_fou() in rtnetlink.sh from kselftests/net failed with "FAIL: can't add fou port 7777, skipping test"

2020-10-25 Thread Po-Hsu Lin
** Description changed:

+ == SRU Justification ==
  The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of 
kselftests/net will fail with non-zero return value, and print:
    "FAIL: can't add fou port , skipping test"
  
  How to reproduce this:
   devdummy="test-dummy0"
   testns="testns"
   ip netns add "$testns"
   ip netns exec "$testns" ip link set lo up
   ip netns exec "$testns" ip link add name "$devdummy" type dummy
   ip netns exec "$testns" ip link set "$devdummy" up
   ip netns exec "$testns" ip fou add port  ipproto 47
  RTNETLINK answers: No such file or directory
  Error talking to the kernel
  
- This is not a regression, it's the real test result after bug 1890136
- has been fixed.
+ This would require the fou module to be loaded before the test.
+ 
+ == Fix 
+ * fca48e23f989 ("selftests: rtnetlink: load fou module for 
kci_test_encap_fou() test")
+ 
+ This patch needs to be backported for series after Xenial.
+ 
+ == Test ==
+ Patch tested directly on the kernel tree, the test will now pass as expected.
+ 
+ == Regression Potential ==
+ Low, change limited to the testing tool.
+ 
+ 
+ == Original Bug Report == 
+ The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of 
kselftests/net will fail with non-zero return value, and print:
+   "FAIL: can't add fou port , skipping test"
+ 
+ How to reproduce this:
+  devdummy="test-dummy0"
+  testns="testns"
+  ip netns add "$testns"
+  ip netns exec "$testns" ip link set lo up
+  ip netns exec "$testns" ip link add name "$devdummy" type dummy
+  ip netns exec "$testns" ip link set "$devdummy" up
+  ip netns exec "$testns" ip fou add port  ipproto 47
+ RTNETLINK answers: No such file or directory
+ Error talking to the kernel
+ 
+ 
+ This is not a regression, it's the real test result after bug 1890136 has 
been fixed.

** Changed in: linux-oem-osp1 (Ubuntu)
   Status: New => Invalid

** Changed in: linux-oem-osp1 (Ubuntu Focal)
   Status: New => Invalid

** Changed in: linux-oem-osp1 (Ubuntu Groovy)
   Status: New => Invalid

** Description changed:

  == SRU Justification ==
+ The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of
+ kselftests/net will fail with non-zero return value, and print:
+   "FAIL: can't add fou port , skipping test"
+ 
+ How to reproduce this:
+  devdummy="test-dummy0"
+  testns="testns"
+  ip netns add "$testns"
+  ip netns exec "$testns" ip link set lo up
+  ip netns exec "$testns" ip link add name "$devdummy" type dummy
+  ip netns exec "$testns" ip link set "$devdummy" up
+  ip netns exec "$testns" ip fou add port  ipproto 47
+ RTNETLINK answers: No such file or directory
+ Error talking to the kernel
+ 
+ This test would require the fou module to be loaded before it gets
+ started.
+ 
+ == Fix
+ * fca48e23f989 ("selftests: rtnetlink: load fou module for
+ kci_test_encap_fou() test")
+ 
+ This patch needs to be backported for series after Xenial.
+ 
+ == Test ==
+ Patch tested directly on the kernel tree, the test will now pass as
+ expected.
+ 
+ == Regression Potential ==
+ Low, change limited to the testing tool.
+ 
+ 
+ == Original Bug Report ==
  The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of 
kselftests/net will fail with non-zero return value, and print:
    "FAIL: can't add fou port , skipping test"
  
  How to reproduce this:
   devdummy="test-dummy0"
   testns="testns"
   ip netns add "$testns"
   ip netns exec "$testns" ip link set lo up
   ip netns exec "$testns" ip link add name "$devdummy" type dummy
   ip netns exec "$testns" ip link set "$devdummy" up
   ip netns exec "$testns" ip fou add port  ipproto 47
  RTNETLINK answers: No such file or directory
  Error talking to the kernel
  
- This would require the fou module to be loaded before the test.
- 
- == Fix 
- * fca48e23f989 ("selftests: rtnetlink: load fou module for 
kci_test_encap_fou() test")
- 
- This patch needs to be backported for series after Xenial.
- 
- == Test ==
- Patch tested directly on the kernel tree, the test will now pass as expected.
- 
- == Regression Potential ==
- Low, change limited to the testing tool.
- 
- 
- == Original Bug Report == 
- The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of 
kselftests/net will fail with non-zero return value, and print:
-   "FAIL: can't add fou port , skipping test"
- 
- How to reproduce this:
-  devdummy="test-dummy0"
-  testns="testns"
-  ip netns add "$testns"
-  ip netns exec "$testns" ip link set lo up
-  ip netns exec "$testns" ip link add name "$devdummy" type dummy
-  ip netns exec "$testns" ip link set "$devdummy" up
-  ip netns exec "$testns" ip fou add port  ipproto 47
- RTNETLINK answers: No such file or directory
- Error talking to the kernel
- 
- 
- This is not a regression, it's the real test result after bug 1890136 has 
been fixed.
+ This is not a regression, it's the real test result after bug 1890136
+ has been fixed.

** Changed in: linux-oem-5.6 

[Kernel-packages] [Bug 1891421] Re: kci_test_encap_fou() in rtnetlink.sh from kselftests/net failed with "FAIL: can't add fou port 7777, skipping test"

2020-10-25 Thread Po-Hsu Lin
** Also affects: linux-oem-5.6 (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: linux-oem-osp1 (Ubuntu)
   Importance: Undecided
   Status: New

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

** Also affects: linux-oem-osp1 (Ubuntu Groovy)
   Importance: Undecided
   Status: New

** Also affects: linux-oem-5.6 (Ubuntu Groovy)
   Importance: Undecided
   Status: New

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

Title:
  kci_test_encap_fou() in rtnetlink.sh from kselftests/net failed with
  "FAIL: can't add fou port , skipping test"

Status in ubuntu-kernel-tests:
  In Progress
Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.6 package in Ubuntu:
  New
Status in linux-oem-osp1 package in Ubuntu:
  New
Status in linux source package in Bionic:
  Confirmed
Status in linux-oem-5.6 source package in Bionic:
  New
Status in linux-oem-osp1 source package in Bionic:
  New
Status in linux source package in Focal:
  Confirmed
Status in linux-oem-5.6 source package in Focal:
  New
Status in linux-oem-osp1 source package in Focal:
  New
Status in linux source package in Groovy:
  New
Status in linux-oem-5.6 source package in Groovy:
  New
Status in linux-oem-osp1 source package in Groovy:
  New

Bug description:
  The kci_test_encap_fou() from kci_test_encap() in rtnetlink.sh of 
kselftests/net will fail with non-zero return value, and print:
    "FAIL: can't add fou port , skipping test"

  How to reproduce this:
   devdummy="test-dummy0"
   testns="testns"
   ip netns add "$testns"
   ip netns exec "$testns" ip link set lo up
   ip netns exec "$testns" ip link add name "$devdummy" type dummy
   ip netns exec "$testns" ip link set "$devdummy" up
   ip netns exec "$testns" ip fou add port  ipproto 47
  RTNETLINK answers: No such file or directory
  Error talking to the kernel

  This is not a regression, it's the real test result after bug 1890136
  has been fixed.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/1891421/+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 1897934] Re: [SRU][Intel HDA] The initial sound level is set to zero (muted)

2020-10-25 Thread Hui Wang
Because there is an alsa-lib SRU for focal in the queue already
(#1899857), I will submit the SRU of this bug for focal after #1899857
is put in the -proposed.

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

Title:
  [SRU][Intel HDA] The initial sound level is set to zero (muted)

Status in Release Notes for Ubuntu:
  Invalid
Status in alsa-lib package in Ubuntu:
  Fix Released
Status in alsa-lib source package in Focal:
  Fix Committed
Status in alsa-lib source package in Groovy:
  Fix Released

Bug description:
  [Impact]
  Fail to run '/usr/sbin/alsactl restore' on the HDA-Intel machines, this
  results in the failure on setting the init mixer values for HDA sound
  card, and users experience the mute of audio after installing the 20.10.  

  [Fix]
  Backport a patch from the latest alsa-lib (v1.2.3+)

  [Test]
  Without the patched alsa-lib, rm ~/.config/pulse/*;sudo rm /var/lib/alsa/*;
  sudo sh -c "echo b > /proc/sysrq-trigger", after booting up, the audio is
  muted.

  Install the patched alsa-lib, rm ~/.config/pulse/*;sudo rm /var/lib/alsa/*;
  sudo sh -c "echo b > /proc/sysrq-trigger", after booting up, the audio is
  not muted.

  [Regression Potential]
  This could make the ucm audio fail to initialize, but this possibility is
  very low, since this patch is from upstream, and I tested on a ucm based
  machine, the audio is good.

  
  On boot into the live session - or on first install the sound level is muted.

  I have to use GNOME Control Center - Sounds to change to an
  appropriate level.  Once changed the level chosen is correctly
  retained between reboots.

  This appears to be a regression from 20.04 where the sound level was
  set to - I guess - 80% on the live-session/first install

  ProblemType: BugDistroRelease: Ubuntu 20.10
  Package: pulseaudio 1:13.99.1-1ubuntu11
  ProcVersionSignature: Ubuntu 5.8.0-20.21-generic 5.8.10
  Uname: Linux 5.8.0-20-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu48
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu-budgie   5041 F pulseaudio
  CasperMD5CheckResult: pass
  CasperVersion: 1.452
  CurrentDesktop: Budgie:GNOME
  Date: Wed Sep 30 16:03:08 2020
  LiveMediaBuild: Ubuntu-Budgie 20.10 "Groovy Gorilla" - Beta amd64 (20200930)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bashSourcePackage: pulseaudio
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/15/2016
  dmi.bios.release: 15.31
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.1F
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 80BF
  dmi.board.vendor: HP
  dmi.board.version: 95.16
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 95.22
  dmi.modalias: 
dmi:bvnInsyde:bvrF.1F:bd02/15/2016:br15.31:efr95.22:svnHP:pnHPNotebook:pvr:rvnHP:rn80BF:rvr95.16:cvnHP:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV G=N L=CON B=HP
  dmi.product.name: HP Notebook
  dmi.product.sku: N9S73EA#ABU
  dmi.sys.vendor: HP

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1897934/+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 1901350] Status changed to Confirmed

2020-10-25 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/1901350

Title:
  [Lenovo ThinkPad T450s] Touchpad stops working after sleep

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  On Ubuntu 20.04 and 20.10, the touchpad stops working after sleep.

  Restarting with rmmod psmouse and modprobe psmouse is not working
  anymore, the touchpad reloads but with the wrong settings.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct 24 13:42:39 2020
  DistUpgraded: 2020-10-24 12:59:49,175 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistroCodename: groovy
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 5500 [17aa:5036]
  MachineType: LENOVO 20BWS1D61J
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=09cc0657-0a94-4a6c-9043-2df6132cd821 ro
  SourcePackage: xorg
  UpgradeStatus: Upgraded to groovy on 2020-10-24 (0 days ago)
  dmi.bios.date: 02/23/2019
  dmi.bios.release: 1.36
  dmi.bios.vendor: LENOVO
  dmi.bios.version: JBET72WW (1.36 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BWS1D61J
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.4
  dmi.modalias: 
dmi:bvnLENOVO:bvrJBET72WW(1.36):bd02/23/2019:br1.36:efr1.4:svnLENOVO:pn20BWS1D61J:pvrThinkPadT450s:rvnLENOVO:rn20BWS1D61J:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T450s
  dmi.product.name: 20BWS1D61J
  dmi.product.sku: LENOVO_MT_20BW_BU_Think_FM_ThinkPad T450s
  dmi.product.version: ThinkPad T450s
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.102-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.1-1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901350/+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 1881888] Re: Atheros AR3012 Bluetooth Bluetooth [04ca:300b] Always Disconnected After Suspend

2020-10-25 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/1881888

Title:
  Atheros AR3012 BluetoothBluetooth [04ca:300b] Always Disconnected
  After Suspend

Status in linux package in Ubuntu:
  Expired

Bug description:
  After suspend (either manually or automatically), every time I connect
  my phone to the computer through bluetooth, it always disconnected
  after several seconds.

  Inspecting hcitrace from btmon, I got:

  ```
  < ACL Data TX: Handle 21 flags 0x00 dlen 16  #209 [hci0] 
121.395244
    L2CAP: Connection Response (0x03) ident 16 len 8
  Destination CID: 0
  Source CID: 68
  Result: Connection refused - PSM not supported (0x0002)
  Status: No further information available (0x)
  >
  ```

  Often, the symptom is when I play audio from connected phone, I didn't
  hear the sound from my headset connected on my computer, even though I
  maxed out volume on the phone.

  The problem does not occur when the computer rebooted.

  Bluetooth Phone Device: vivo 1609 (Vivo V5 Lite)
  Bluetooth Device Version: 2.5 (Bluetooth Share APK)
  bluetoothctl version: 5.53

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: bluez 5.53-0ubuntu3
  ProcVersionSignature: Ubuntu 5.4.0-33.37-generic 5.4.34
  Uname: Linux 5.4.0-33-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Jun  3 17:47:59 2020
  InstallationDate: Installed on 2020-05-05 (28 days ago)
  InstallationMedia: Ubuntu-MATE 20.04 LTS "Focal Fossa" - Release amd64 
(20200423)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: Acer Aspire E5-571
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-33-generic 
root=UUID=30956875-cf76-41af-963e-866e73f8e23e ro
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/06/2014
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.04
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: EA50_HB
  dmi.board.vendor: Acer
  dmi.board.version: V1.04
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.04:bd05/06/2014:svnAcer:pnAspireE5-571:pvrV1.04:rvnAcer:rnEA50_HB:rvrV1.04:cvnAcer:ct10:cvrChassisVersion:
  dmi.product.family: SharkBay System
  dmi.product.name: Aspire E5-571
  dmi.product.sku: Aspire E5-571_0866_V1.04
  dmi.product.version: V1.04
  dmi.sys.vendor: Acer
  hciconfig:
   hci0:Type: Primary  Bus: USB
    BD Address: 18:CF:5E:0F:06:FB  ACL MTU: 1022:8  SCO MTU: 183:5
    UP RUNNING PSCAN
    RX bytes:3010 acl:50 sco:0 events:153 errors:0
    TX bytes:5047 acl:50 sco:0 commands:67 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1881888/+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 1891032] Re: Brightness key freeze screen

2020-10-25 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/1891032

Title:
  Brightness key freeze screen

Status in linux package in Ubuntu:
  Expired

Bug description:
  When I press the KEY_BRIGHTNESSDOWN or KEY_BRIGHTNESSUP the screen
  freeze for a few seconds.

  Sometimes it up/down brightness to max/min with just one press and the
  overlay get stuck in the screen.

  Maybe useful information:
  # evtest
  Event: time 1597066500.752632, -- SYN_REPORT 
  Event: time 1597066502.755372, type 4 (EV_MSC), code 4 (MSC_SCAN), value 86
  Event: time 1597066502.755372, type 1 (EV_KEY), code 225 (KEY_BRIGHTNESSUP), 
value 1
  Event: time 1597066502.755372, -- SYN_REPORT 
  Event: time 1597066502.761653, type 4 (EV_MSC), code 4 (MSC_SCAN), value 86
  Event: time 1597066502.761653, type 1 (EV_KEY), code 225 (KEY_BRIGHTNESSUP), 
value 0
  Event: time 1597066502.761653, -- SYN_REPORT 
  Event: time 1597066521.533682, type 4 (EV_MSC), code 4 (MSC_SCAN), value 85
  Event: time 1597066521.533682, type 1 (EV_KEY), code 224 
(KEY_BRIGHTNESSDOWN), value 1
  Event: time 1597066521.533682, -- SYN_REPORT 
  Event: time 1597066521.542973, type 4 (EV_MSC), code 4 (MSC_SCAN), value 85
  Event: time 1597066521.542973, type 1 (EV_KEY), code 224 
(KEY_BRIGHTNESSDOWN), value 0

  $ lsb_release -rd
  Description:  Ubuntu 20.04.1 LTS
  Release:  20.04

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: udev 245.4-4ubuntu3.2
  ProcVersionSignature: Ubuntu 5.4.0-42.46-generic 5.4.44
  Uname: Linux 5.4.0-42-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  CustomUdevRuleFiles: 70-snap.core.rules
  Date: Mon Aug 10 10:44:20 2020
  InstallationDate: Installed on 2018-07-23 (749 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  MachineType: Dell Inc. Inspiron 5558
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-42-generic 
root=UUID=c78b51e8-c664-4dd2-8020-7bc5da6f2bc0 ro quiet splash 
acpi_backlight=vendor vt.handoff=7
  SourcePackage: systemd
  UpgradeStatus: Upgraded to focal on 2020-07-11 (29 days ago)
  dmi.bios.date: 02/02/2018
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A15
  dmi.board.name: 0R392V
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA15:bd02/02/2018:svnDellInc.:pnInspiron5558:pvr01:rvnDellInc.:rn0R392V:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Inspiron 5558
  dmi.product.sku: Inspiron 5558
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1891032/+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 1901272] Re: Can't connect Bluetooth devices after reboot - Ubuntu 20.10 on Raspberry Pi 4

2020-10-25 Thread Daniel van Vugt
** Tags added: groovy

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

** Also affects: bluez (Ubuntu)
   Importance: Undecided
   Status: New

** Tags added: raspi

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

Title:
  Can't connect Bluetooth devices after reboot - Ubuntu 20.10 on
  Raspberry Pi 4

Status in bluez package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  New
Status in pi-bluetooth package in Ubuntu:
  New

Bug description:
  Raspberry pi 4 4Gb ram
  Ubuntu desktop 20.10 64 bit
  After reboot no Bluetooth devices connect, scanning Bluetooth devices works, 
results with same device name (duplicated and with not set up status).
  Sometimes after several reboots it works.
  If I use power off and cycle power then it works fine each time.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1901272/+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 1871794] Re: [Bluetooth] No audio output/input in HSP/HFP mode

2020-10-25 Thread smurf
I have the same problem with a fresh 20.04.1 install, kernel 5.4.0.52,
Huawei laptop with Ryzen 5, Realtek BT (I tried as well with a tp-link
dongle).

Bus 003 Device 002: ID 1358:c123 Realtek Bluetooth Radio

In my case A2DP is working, but I can't switch to HFP/HSP from Bluetooth
device manager, nor from pulseaudio.

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

Title:
  [Bluetooth] No audio output/input in HSP/HFP mode

Status in bluez package in Ubuntu:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed

Bug description:
  I'm testing with Sony bluetooth headset SBH20, works fine in A2DP
  profile, but I can't get audio input and output work in HSP/HFP
  profile.

  [Reproduce steps]
  1. Scan and pair BT headset in Bluetooth setting
  2. Switch to HSP/HFP profile in Sound setting
  3. Test sound output/input

  [Machine information]
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: pulseaudio 1:13.99.1-1ubuntu1
  ProcVersionSignature: Ubuntu 5.4.0-21.25-generic 5.4.27
  Uname: Linux 5.4.0-21-generic x86_64
  ApportVersion: 2.20.11-0ubuntu25
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1359 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Apr  9 16:26:52 2020
  InstallationDate: Installed on 2020-04-09 (0 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Beta amd64 (20200402)
  SourcePackage: pulseaudio
  Symptom: audio
  Symptom_Card: SBH20
  Symptom_DevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 1359 F pulseaudio
  Symptom_Type: No sound at all
  Title: [SBH20, recording] No sound at all
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 09/17/2019
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.0.13
  dmi.board.name: 0188D1
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 31
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.0.13:bd09/17/2019:svnDellInc.:pnXPS1373902-in-1:pvr:rvnDellInc.:rn0188D1: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/ubuntu/+source/bluez/+bug/1871794/+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 1896091] Re: [i915] Noise-like lines of graphics corruption when moving windows in Xorg sessions

2020-10-25 Thread Daniel van Vugt
** Tags added: regression-release

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

Title:
  [i915] Noise-like lines of graphics corruption when moving windows in
  Xorg sessions

Status in Mutter:
  Unknown
Status in linux package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Invalid

Bug description:
  I left my desktop (T480s thinkpad docked to ThinkVision P24h-10)
  unattended for a while, and then got the error message and now have
  funny lines on activity, e.g. red lines flashing on top of gnome-shell
  bar when switching windows, or white blocks/lines around typing text.

  This is the second or third time it happened, reboot fixes it until
  the error pops up again.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-19-generic 5.8.0-19.20
  ProcVersionSignature: Ubuntu 5.8.0-19.20-generic 5.8.8
  Uname: Linux 5.8.0-19-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu45
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  jak5052 F pulseaudio
   /dev/snd/controlC1:  jak5052 F pulseaudio
   /dev/snd/pcmC1D0p:   jak5052 F...m pulseaudio
   /dev/snd/controlC0:  jak5052 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: GNOME
  CurrentDmesg: Error: command ['dmesg'] failed with exit code 1: dmesg: read 
kernel buffer failed: Operation not permitted
  Date: Thu Sep 17 19:14:11 2020
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2018-03-14 (917 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180313)
  MachineType: LENOVO 20L8S02D00
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-19-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-19-generic N/A
   linux-backports-modules-5.8.0-19-generic  N/A
   linux-firmware1.190
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/04/2020
  dmi.bios.release: 1.42
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET65W (1.42 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L8S02D00
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.20
  dmi.modalias: 
dmi:bvnLENOVO:bvrN22ET65W(1.42):bd06/04/2020:br1.42:efr1.20:svnLENOVO:pn20L8S02D00:pvrThinkPadT480s:rvnLENOVO:rn20L8S02D00:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L8S02D00
  dmi.product.sku: LENOVO_MT_20L8_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu45
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  jak5052 F pulseaudio
   /dev/snd/controlC1:  jak5052 F pulseaudio
   /dev/snd/pcmC1D0p:   jak5052 F...m pulseaudio
   /dev/snd/controlC0:  jak5052 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: GNOME
  CurrentDmesg: Error: command ['dmesg'] failed with exit code 1: dmesg: read 
kernel buffer failed: Operation not permitted
  DistroRelease: Ubuntu 20.10
  HibernationDevice: RESUME=none
  InstallationDate: Installed on 2018-03-14 (917 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180313)
  MachineType: LENOVO 20L8S02D00
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-19-generic 
root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-19.20-generic 5.8.8
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-19-generic N/A
   linux-backports-modules-5.8.0-19-generic  N/A
   linux-firmware1.190
  Tags:  groovy
  Uname: Linux 5.8.0-19-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip fax input kvm lpadmin lxd plugdev sambashare sbuild 
sudo
  _MarkForUpload: True
  dmi.bios.date: 06/04/2020
  dmi.bios.release: 1.42
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET65W (1.42 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L8S02D00
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.20
  dmi.modalias: 

[Kernel-packages] [Bug 1901350] Re: [Lenovo ThinkPad T450s] Touchpad stops working after sleep

2020-10-25 Thread Daniel van Vugt
** Summary changed:

- Touchpad stops working after sleep
+ [Lenovo ThinkPad T450s] Touchpad stops working after sleep

** Package changed: xorg (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/1901350

Title:
  [Lenovo ThinkPad T450s] Touchpad stops working after sleep

Status in linux package in Ubuntu:
  New

Bug description:
  On Ubuntu 20.04 and 20.10, the touchpad stops working after sleep.

  Restarting with rmmod psmouse and modprobe psmouse is not working
  anymore, the touchpad reloads but with the wrong settings.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: xorg 1:7.7+19ubuntu15
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct 24 13:42:39 2020
  DistUpgraded: 2020-10-24 12:59:49,175 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistroCodename: groovy
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA 
controller])
 Subsystem: Lenovo HD Graphics 5500 [17aa:5036]
  MachineType: LENOVO 20BWS1D61J
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=C.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=09cc0657-0a94-4a6c-9043-2df6132cd821 ro
  SourcePackage: xorg
  UpgradeStatus: Upgraded to groovy on 2020-10-24 (0 days ago)
  dmi.bios.date: 02/23/2019
  dmi.bios.release: 1.36
  dmi.bios.vendor: LENOVO
  dmi.bios.version: JBET72WW (1.36 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BWS1D61J
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50510 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.4
  dmi.modalias: 
dmi:bvnLENOVO:bvrJBET72WW(1.36):bd02/23/2019:br1.36:efr1.4:svnLENOVO:pn20BWS1D61J:pvrThinkPadT450s:rvnLENOVO:rn20BWS1D61J:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T450s
  dmi.product.name: 20BWS1D61J
  dmi.product.sku: LENOVO_MT_20BW_BU_Think_FM_ThinkPad T450s
  dmi.product.version: ThinkPad T450s
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.102-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.1-1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1ubuntu1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901350/+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 1246981] Re: Bluetooth devices fail to re-connect after sleep.

2020-10-25 Thread Daniel van Vugt
** Tags added: focal groovy

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

Title:
  Bluetooth devices fail to re-connect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This exact harware was working faultlessly in 13.04. Since re-
  installing at 13.10 the mouse consistently failes to reconnect after
  the device either hybernates or ever goes to screen saver sleep.

  I have to remove the dive and re-add it each time (which works well).

  There are other issues with the bluetooth stack as well in that I have
  not found any way to use bluetooth tethering to my mobile which again
  worked well and was easy to configure in 13.04

  Peter.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: bluetooth 4.101-0ubuntu8b1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Fri Nov  1 16:44:37 2013
  InstallationDate: Installed on 2013-10-19 (13 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: bnep rfcomm btusb bluetooth
  MachineType: Dell Inc. Latitude E6530
  MarkForUpload: True
  PackageArchitecture: all
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=8283de78-9264-42bf-a8b4-25643fa1475f ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/13/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A09
  dmi.board.name: 07Y85M
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd12/13/2012:svnDellInc.:pnLatitudeE6530:pvr01:rvnDellInc.:rn07Y85M:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6530
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
BD Address: 20:16:D8:9C:38:E5  ACL MTU: 1021:8  SCO MTU: 64:1
UP RUNNING PSCAN ISCAN 
RX bytes:1817731 acl:117432 sco:0 events:5271 errors:0
TX bytes:37955 acl:131 sco:0 commands:5096 errors:0
  syslog:
   Nov  1 14:50:19 pnunn-Latitude-E6530 bluetoothd[1015]: Discovery session 
0x7f6489f7b450 with :1.582 activated
   Nov  1 14:50:25 pnunn-Latitude-E6530 bluetoothd[1015]: Unknown command 
complete for opcode 37
   Nov  1 14:50:28 pnunn-Latitude-E6530 bluetoothd[1015]: Stopping discovery
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211132] input: Microsoft 
Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/input29
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211646] hid-generic 
0005:045E:0700.000C: input,hidraw3: BLUETOOTH HID v1.00 Mouse [Microsoft 
Bluetooth Notebook Mouse 5000] on 20:16:d8:9c:38:e5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1246981/+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 1246981] Re: Bluetooth devices fail to re-connect after sleep.

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

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

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

Title:
  Bluetooth devices fail to re-connect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This exact harware was working faultlessly in 13.04. Since re-
  installing at 13.10 the mouse consistently failes to reconnect after
  the device either hybernates or ever goes to screen saver sleep.

  I have to remove the dive and re-add it each time (which works well).

  There are other issues with the bluetooth stack as well in that I have
  not found any way to use bluetooth tethering to my mobile which again
  worked well and was easy to configure in 13.04

  Peter.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: bluetooth 4.101-0ubuntu8b1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Fri Nov  1 16:44:37 2013
  InstallationDate: Installed on 2013-10-19 (13 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: bnep rfcomm btusb bluetooth
  MachineType: Dell Inc. Latitude E6530
  MarkForUpload: True
  PackageArchitecture: all
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=8283de78-9264-42bf-a8b4-25643fa1475f ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/13/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A09
  dmi.board.name: 07Y85M
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd12/13/2012:svnDellInc.:pnLatitudeE6530:pvr01:rvnDellInc.:rn07Y85M:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6530
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
BD Address: 20:16:D8:9C:38:E5  ACL MTU: 1021:8  SCO MTU: 64:1
UP RUNNING PSCAN ISCAN 
RX bytes:1817731 acl:117432 sco:0 events:5271 errors:0
TX bytes:37955 acl:131 sco:0 commands:5096 errors:0
  syslog:
   Nov  1 14:50:19 pnunn-Latitude-E6530 bluetoothd[1015]: Discovery session 
0x7f6489f7b450 with :1.582 activated
   Nov  1 14:50:25 pnunn-Latitude-E6530 bluetoothd[1015]: Unknown command 
complete for opcode 37
   Nov  1 14:50:28 pnunn-Latitude-E6530 bluetoothd[1015]: Stopping discovery
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211132] input: Microsoft 
Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/input29
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211646] hid-generic 
0005:045E:0700.000C: input,hidraw3: BLUETOOTH HID v1.00 Mouse [Microsoft 
Bluetooth Notebook Mouse 5000] on 20:16:d8:9c:38:e5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1246981/+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 1246981] Re: Bluetooth devices fail to re-connect after sleep.

2020-10-25 Thread Daniel van Vugt
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Bluetooth devices fail to re-connect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This exact harware was working faultlessly in 13.04. Since re-
  installing at 13.10 the mouse consistently failes to reconnect after
  the device either hybernates or ever goes to screen saver sleep.

  I have to remove the dive and re-add it each time (which works well).

  There are other issues with the bluetooth stack as well in that I have
  not found any way to use bluetooth tethering to my mobile which again
  worked well and was easy to configure in 13.04

  Peter.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: bluetooth 4.101-0ubuntu8b1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Fri Nov  1 16:44:37 2013
  InstallationDate: Installed on 2013-10-19 (13 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: bnep rfcomm btusb bluetooth
  MachineType: Dell Inc. Latitude E6530
  MarkForUpload: True
  PackageArchitecture: all
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=8283de78-9264-42bf-a8b4-25643fa1475f ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/13/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A09
  dmi.board.name: 07Y85M
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd12/13/2012:svnDellInc.:pnLatitudeE6530:pvr01:rvnDellInc.:rn07Y85M:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6530
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
BD Address: 20:16:D8:9C:38:E5  ACL MTU: 1021:8  SCO MTU: 64:1
UP RUNNING PSCAN ISCAN 
RX bytes:1817731 acl:117432 sco:0 events:5271 errors:0
TX bytes:37955 acl:131 sco:0 commands:5096 errors:0
  syslog:
   Nov  1 14:50:19 pnunn-Latitude-E6530 bluetoothd[1015]: Discovery session 
0x7f6489f7b450 with :1.582 activated
   Nov  1 14:50:25 pnunn-Latitude-E6530 bluetoothd[1015]: Unknown command 
complete for opcode 37
   Nov  1 14:50:28 pnunn-Latitude-E6530 bluetoothd[1015]: Stopping discovery
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211132] input: Microsoft 
Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/input29
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211646] hid-generic 
0005:045E:0700.000C: input,hidraw3: BLUETOOTH HID v1.00 Mouse [Microsoft 
Bluetooth Notebook Mouse 5000] on 20:16:d8:9c:38:e5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1246981/+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 1901350] [NEW] [Lenovo ThinkPad T450s] Touchpad stops working after sleep

2020-10-25 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

On Ubuntu 20.04 and 20.10, the touchpad stops working after sleep.

Restarting with rmmod psmouse and modprobe psmouse is not working
anymore, the touchpad reloads but with the wrong settings.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: xorg 1:7.7+19ubuntu15
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckResult: skip
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Sat Oct 24 13:42:39 2020
DistUpgraded: 2020-10-24 12:59:49,175 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
DistroCodename: groovy
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation HD Graphics 5500 [8086:1616] (rev 09) (prog-if 00 [VGA 
controller])
   Subsystem: Lenovo HD Graphics 5500 [17aa:5036]
MachineType: LENOVO 20BWS1D61J
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=C.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=09cc0657-0a94-4a6c-9043-2df6132cd821 ro
SourcePackage: xorg
UpgradeStatus: Upgraded to groovy on 2020-10-24 (0 days ago)
dmi.bios.date: 02/23/2019
dmi.bios.release: 1.36
dmi.bios.vendor: LENOVO
dmi.bios.version: JBET72WW (1.36 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20BWS1D61J
dmi.board.vendor: LENOVO
dmi.board.version: SDK0E50510 WIN
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: None
dmi.ec.firmware.release: 1.4
dmi.modalias: 
dmi:bvnLENOVO:bvrJBET72WW(1.36):bd02/23/2019:br1.36:efr1.4:svnLENOVO:pn20BWS1D61J:pvrThinkPadT450s:rvnLENOVO:rn20BWS1D61J:rvrSDK0E50510WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T450s
dmi.product.name: 20BWS1D61J
dmi.product.sku: LENOVO_MT_20BW_BU_Think_FM_ThinkPad T450s
dmi.product.version: ThinkPad T450s
dmi.sys.vendor: LENOVO
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.102-1ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 20.2.1-1
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.9-2ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200714-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


** Tags: amd64 apport-bug groovy ubuntu
-- 
[Lenovo ThinkPad T450s] Touchpad stops working after sleep
https://bugs.launchpad.net/bugs/1901350
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 1246981] Re: Bluetooth mouse fails to re-connect after sleep.

2020-10-25 Thread Daniel van Vugt
** Summary changed:

- Bluetooth mouse fails to re-connect after sleep.
+ Bluetooth devices fail to re-connect after sleep.

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

Title:
  Bluetooth devices fail to re-connect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  This exact harware was working faultlessly in 13.04. Since re-
  installing at 13.10 the mouse consistently failes to reconnect after
  the device either hybernates or ever goes to screen saver sleep.

  I have to remove the dive and re-add it each time (which works well).

  There are other issues with the bluetooth stack as well in that I have
  not found any way to use bluetooth tethering to my mobile which again
  worked well and was easy to configure in 13.04

  Peter.

  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: bluetooth 4.101-0ubuntu8b1
  ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
  Uname: Linux 3.11.0-12-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: amd64
  Date: Fri Nov  1 16:44:37 2013
  InstallationDate: Installed on 2013-10-19 (13 days ago)
  InstallationMedia: Kubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  InterestingModules: bnep rfcomm btusb bluetooth
  MachineType: Dell Inc. Latitude E6530
  MarkForUpload: True
  PackageArchitecture: all
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-12-generic 
root=UUID=8283de78-9264-42bf-a8b4-25643fa1475f ro quiet splash
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/13/2012
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A09
  dmi.board.name: 07Y85M
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA09:bd12/13/2012:svnDellInc.:pnLatitudeE6530:pvr01:rvnDellInc.:rn07Y85M:rvrA01:cvnDellInc.:ct9:cvr:
  dmi.product.name: Latitude E6530
  dmi.product.version: 01
  dmi.sys.vendor: Dell Inc.
  hciconfig:
   hci0:Type: BR/EDR  Bus: USB
BD Address: 20:16:D8:9C:38:E5  ACL MTU: 1021:8  SCO MTU: 64:1
UP RUNNING PSCAN ISCAN 
RX bytes:1817731 acl:117432 sco:0 events:5271 errors:0
TX bytes:37955 acl:131 sco:0 commands:5096 errors:0
  syslog:
   Nov  1 14:50:19 pnunn-Latitude-E6530 bluetoothd[1015]: Discovery session 
0x7f6489f7b450 with :1.582 activated
   Nov  1 14:50:25 pnunn-Latitude-E6530 bluetoothd[1015]: Unknown command 
complete for opcode 37
   Nov  1 14:50:28 pnunn-Latitude-E6530 bluetoothd[1015]: Stopping discovery
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211132] input: Microsoft 
Bluetooth Notebook Mouse 5000 as 
/devices/pci:00/:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0/hci0:11/input29
   Nov  1 14:50:36 pnunn-Latitude-E6530 kernel: [60934.211646] hid-generic 
0005:045E:0700.000C: input,hidraw3: BLUETOOTH HID v1.00 Mouse [Microsoft 
Bluetooth Notebook Mouse 5000] on 20:16:d8:9c:38:e5

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1246981/+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 1883028] Re: Bluetooth devices don't reconnect after sleep.

2020-10-25 Thread Launchpad Bug Tracker
*** This bug is a duplicate of bug 1246981 ***
https://bugs.launchpad.net/bugs/1246981

Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Bluetooth devices don't reconnect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Bluetooth devices don't reconnect after sleep, or something along
  those lines.

  I have experienced this with a BT audio receiver and BT Keyboard.  One
  way to repro is to switch BT pairing on multi-pairing keyboard, then
  switch back to Ubuntu.  The BT connection state will be very confused,
  keyboard will not work.

  Another way to repro is to get a bluetooth audio receiver, pair it.
  Let the BT device (or PC?) sleep... now wake up the system.  The audio
  will not play.  BT UI slider says disconnected.  If you click the
  slider it will go back to off.  If you click it quickly >25 times, no
  joke, it will reconnect and work.

  FYI: Raspbian handles the keyboard fine, have not tested the audio.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: bluetooth (not installed)
  ProcVersionSignature: Ubuntu 5.4.0-31.35-generic 5.4.34
  Uname: Linux 5.4.0-31-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Jun 10 17:09:06 2020
  InstallationDate: Installed on 2019-06-10 (366 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: LENOVO 20HRCTO1WW
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-31-generic 
root=UUID=df7df2a3-26f4-4fe6-8621-51673ae55b6f ro intel_pstate=disable
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/08/2020
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1MET61W (1.46 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20HRCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1MET61W(1.46):bd04/08/2020:svnLENOVO:pn20HRCTO1WW:pvrThinkPadX1Carbon5th:rvnLENOVO:rn20HRCTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad X1 Carbon 5th
  dmi.product.name: 20HRCTO1WW
  dmi.product.sku: LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th
  dmi.product.version: ThinkPad X1 Carbon 5th
  dmi.sys.vendor: LENOVO
  hciconfig:
   hci0:Type: Primary  Bus: USB
    BD Address: 88:B1:11:77:AE:CE  ACL MTU: 1021:4  SCO MTU: 96:6
    UP RUNNING PSCAN ISCAN
    RX bytes:6243797 acl:69580 sco:0 events:629809 errors:0
    TX bytes:488355907 acl:570780 sco:0 commands:32574 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1883028/+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 1883028] Re: [Intel 8265] Bluetooth devices don't reconnect after sleep.

2020-10-25 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1246981 ***
https://bugs.launchpad.net/bugs/1246981

** Summary changed:

- Bluetooth devices don't reconnect after sleep.  
+ [Intel 8265] Bluetooth devices don't reconnect after sleep.

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

** Summary changed:

- [Intel 8265] Bluetooth devices don't reconnect after sleep.
+ Bluetooth devices don't reconnect after sleep.

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

Title:
  Bluetooth devices don't reconnect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Bluetooth devices don't reconnect after sleep, or something along
  those lines.

  I have experienced this with a BT audio receiver and BT Keyboard.  One
  way to repro is to switch BT pairing on multi-pairing keyboard, then
  switch back to Ubuntu.  The BT connection state will be very confused,
  keyboard will not work.

  Another way to repro is to get a bluetooth audio receiver, pair it.
  Let the BT device (or PC?) sleep... now wake up the system.  The audio
  will not play.  BT UI slider says disconnected.  If you click the
  slider it will go back to off.  If you click it quickly >25 times, no
  joke, it will reconnect and work.

  FYI: Raspbian handles the keyboard fine, have not tested the audio.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: bluetooth (not installed)
  ProcVersionSignature: Ubuntu 5.4.0-31.35-generic 5.4.34
  Uname: Linux 5.4.0-31-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Jun 10 17:09:06 2020
  InstallationDate: Installed on 2019-06-10 (366 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: LENOVO 20HRCTO1WW
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-31-generic 
root=UUID=df7df2a3-26f4-4fe6-8621-51673ae55b6f ro intel_pstate=disable
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/08/2020
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1MET61W (1.46 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20HRCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1MET61W(1.46):bd04/08/2020:svnLENOVO:pn20HRCTO1WW:pvrThinkPadX1Carbon5th:rvnLENOVO:rn20HRCTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad X1 Carbon 5th
  dmi.product.name: 20HRCTO1WW
  dmi.product.sku: LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th
  dmi.product.version: ThinkPad X1 Carbon 5th
  dmi.sys.vendor: LENOVO
  hciconfig:
   hci0:Type: Primary  Bus: USB
    BD Address: 88:B1:11:77:AE:CE  ACL MTU: 1021:4  SCO MTU: 96:6
    UP RUNNING PSCAN ISCAN
    RX bytes:6243797 acl:69580 sco:0 events:629809 errors:0
    TX bytes:488355907 acl:570780 sco:0 commands:32574 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1883028/+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 1883028] Re: Bluetooth devices don't reconnect after sleep.

2020-10-25 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1246981 ***
https://bugs.launchpad.net/bugs/1246981

** This bug has been marked a duplicate of bug 1246981
   Bluetooth devices fail to re-connect after sleep.

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

Title:
  Bluetooth devices don't reconnect after sleep.

Status in bluez package in Ubuntu:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Bluetooth devices don't reconnect after sleep, or something along
  those lines.

  I have experienced this with a BT audio receiver and BT Keyboard.  One
  way to repro is to switch BT pairing on multi-pairing keyboard, then
  switch back to Ubuntu.  The BT connection state will be very confused,
  keyboard will not work.

  Another way to repro is to get a bluetooth audio receiver, pair it.
  Let the BT device (or PC?) sleep... now wake up the system.  The audio
  will not play.  BT UI slider says disconnected.  If you click the
  slider it will go back to off.  If you click it quickly >25 times, no
  joke, it will reconnect and work.

  FYI: Raspbian handles the keyboard fine, have not tested the audio.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: bluetooth (not installed)
  ProcVersionSignature: Ubuntu 5.4.0-31.35-generic 5.4.34
  Uname: Linux 5.4.0-31-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Jun 10 17:09:06 2020
  InstallationDate: Installed on 2019-06-10 (366 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: LENOVO 20HRCTO1WW
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-31-generic 
root=UUID=df7df2a3-26f4-4fe6-8621-51673ae55b6f ro intel_pstate=disable
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/08/2020
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N1MET61W (1.46 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20HRCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN1MET61W(1.46):bd04/08/2020:svnLENOVO:pn20HRCTO1WW:pvrThinkPadX1Carbon5th:rvnLENOVO:rn20HRCTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad X1 Carbon 5th
  dmi.product.name: 20HRCTO1WW
  dmi.product.sku: LENOVO_MT_20HR_BU_Think_FM_ThinkPad X1 Carbon 5th
  dmi.product.version: ThinkPad X1 Carbon 5th
  dmi.sys.vendor: LENOVO
  hciconfig:
   hci0:Type: Primary  Bus: USB
    BD Address: 88:B1:11:77:AE:CE  ACL MTU: 1021:4  SCO MTU: 96:6
    UP RUNNING PSCAN ISCAN
    RX bytes:6243797 acl:69580 sco:0 events:629809 errors:0
    TX bytes:488355907 acl:570780 sco:0 commands:32574 errors:0

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1883028/+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 1901437] Re: System loses bluetooth mouse settings at every reconnect

2020-10-25 Thread Daniel van Vugt
** Package changed: linux (Ubuntu) => gnome-settings-daemon (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/1901437

Title:
  System loses bluetooth mouse settings at every reconnect

Status in gnome-settings-daemon package in Ubuntu:
  Confirmed

Bug description:
  My bluetooth mouse loses it's settings at every reconnect.  It's a
  Logitech MX Master 2S in bluetooth mode (NOT using the usb dongle.)
  The control panel always shows my desired settings, but I have to poke
  both the speed and scroll direction settings to get them reset to the
  mouse.

  This happens to me in 20.04 and 20.10.  19.10 was just fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-25-generic 5.8.0-25.26
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mwilson1464 F pulseaudio
   /dev/snd/controlC1:  mwilson1464 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 25 12:52:56 2020
  InstallationDate: Installed on 2020-09-04 (50 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-25-generic 
root=UUID=b47a92f4-e140-422c-a1a7-fc261ff16f40 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-10-25 (0 days ago)
  dmi.bios.date: 05/15/2019
  dmi.bios.release: 5.12
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P4.20
  dmi.board.name: B365M Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.20:bd05/15/2019:br5.12:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnB365MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To Be Filled By O.E.M.
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.sku: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/1901437/+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 1901465] Re: [Cambridge Silicon Radio] Bluetooth fails to reconnect after waking from sleep on 20.10

2020-10-25 Thread Daniel van Vugt
*** This bug is a duplicate of bug 1246981 ***
https://bugs.launchpad.net/bugs/1246981

Assuming the issue is not hardware-specific, we can use bug 1883028 for
now.

** Summary changed:

- bluetooth fails to reconnect after waking from sleep on 20.10
+ [Cambridge Silicon Radio] Bluetooth fails to reconnect after waking from 
sleep on 20.10

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

** This bug has been marked a duplicate of bug 1883028
   Bluetooth devices don't reconnect after sleep.

** This bug is no longer a duplicate of bug 1883028
   Bluetooth devices don't reconnect after sleep.
** This bug has been marked a duplicate of bug 1246981
   Bluetooth devices fail to re-connect after sleep.

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

Title:
  [Cambridge Silicon Radio] Bluetooth fails to reconnect after waking
  from sleep on 20.10

Status in bluez package in Ubuntu:
  New
Status in linux package in Ubuntu:
  New

Bug description:
  After upgrading to 20.10, my mouse either takes an extraordinarily
  long time to reconnect (2+m), or it never reconnects until I unplug
  and replug my usb bluetooth dongle. It was slow to reconnect on 20.04
  (10-30s), but it seems pretty much broken on 20.10.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: bluez 5.55-0ubuntu1
  ProcVersionSignature: Ubuntu 5.8.0-25.26-lowlatency 5.8.14
  Uname: Linux 5.8.0-25-lowlatency x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 25 19:32:46 2020
  InstallationDate: Installed on 2020-07-15 (103 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: ASUS All Series
  ProcKernelCmdLine: 
BOOT_IMAGE=/BOOT/ubuntu_13qyk7@/vmlinuz-5.8.0-25-lowlatency 
root=ZFS=rpool/ROOT/ubuntu_13qyk7 ro intel_iommu=on nvidia-drm.modeset=1 quiet 
splash vt.handoff=1
  SourcePackage: bluez
  UpgradeStatus: Upgraded to groovy on 2020-10-24 (2 days ago)
  dmi.bios.date: 04/18/2018
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3503
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: GRYPHON Z97
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3503:bd04/18/2018:br4.6:svnASUS:pnAllSeries:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnGRYPHONZ97:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: ASUS MB
  dmi.product.name: All Series
  dmi.product.sku: All
  dmi.product.version: System Version
  dmi.sys.vendor: ASUS
  hciconfig:
   hci0:Type: Primary  Bus: USB
BD Address: 00:1A:7D:DA:71:0C  ACL MTU: 310:10  SCO MTU: 64:8
UP RUNNING PSCAN 
RX bytes:103048 acl:4561 sco:0 events:437 errors:0
TX bytes:3727 acl:71 sco:0 commands:62 errors:0
  rfkill:
   2: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1901465/+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 1894627] Re: [nvidia] Web browser distorted after hibernation/power save when idle

2020-10-25 Thread Daniel van Vugt
No, I meant that it has to be fixed by the Chrome developers. It looks
like that's in progress now.

If you need a workaround then I can only suggest closing and reopening
Chrome after resuming from suspend/hibernation. Then use Ctrl+Shift+T to
restore your previous tabs.

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

Title:
  [nvidia] Web browser distorted after hibernation/power save when idle

Status in chromium-browser package in Ubuntu:
  Triaged
Status in nvidia-graphics-drivers-340 package in Ubuntu:
  Won't Fix
Status in nvidia-graphics-drivers-440 package in Ubuntu:
  Won't Fix

Bug description:
  https://bugs.chromium.org/p/chromium/issues/detail?id=791913

  ---

  my laptop goes to hibernation/power saver mode when my computer is idle.
  every time I bring my computer back up, the screen distorted. I have to close 
all my browsers. Sometimes, shut down the computer.

  Description:  Ubuntu 20.04.1 LTS
  Release:  20.04
  N: Unable to locate package pkgname

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
  Uname: Linux 5.4.0-45-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.100  Fri May 29 08:45:51 
UTC 2020
   GCC version:  gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)
  ApportVersion: 2.20.11-0ubuntu27.8
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Sep  7 03:33:23 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 440.100, 5.4.0-42-generic, x86_64: installed
   nvidia, 440.100, 5.4.0-45-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00 [VGA 
controller])
     Subsystem: Hewlett-Packard Company UHD Graphics 630 (Mobile) [103c:8466]
   NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev a1) 
(prog-if 00 [VGA controller])
     Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Ti Mobile] 
[103c:8466]
  InstallationDate: Installed on 2020-06-23 (75 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 002: ID 05c8:03ab Cheng Uei Precision Industry Co., Ltd 
(Foxlink) HP Wide Vision HD Camera
   Bus 001 Device 003: ID 8087:0aaa Intel Corp.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP OMEN by HP Laptop
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-generic 
root=UUID=98265a4d-5439-415e-b43c-904265a8559a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/24/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.09
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 8466
  dmi.board.vendor: HP
  dmi.board.version: 68.21
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.09:bd04/24/2019:svnHP:pnOMENbyHPLaptop:pvr:rvnHP:rn8466:rvr68.21:cvnHP:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP OMEN
  dmi.product.name: OMEN by HP Laptop
  dmi.product.sku: 4CC49UA#ABA
  dmi.sys.vendor: HP
  modified.conffile..etc.default.apport:
   # set this to 0 to disable apport, or to 1 to enable it
   # you can temporarily override this with
   # sudo service apport start force_start=1
   enabled=0
  mtime.conffile..etc.default.apport: 2020-06-26T00:47:21.524860
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.101-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:

Re: [Kernel-packages] [Bug 1894627] Re: [nvidia] Web browser distorted after hibernation/power save when idle

2020-10-25 Thread Kashad J Turner-Warren
Daniel, you said enhance each app meaning, should I disable the
acceleration feature within google chrome browser settings?

On Sun, Oct 25, 2020, 8:00 PM Daniel van Vugt <1894...@bugs.launchpad.net>
wrote:

> ** Tags added: resume suspend-resume
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1894627
>
> Title:
>   [nvidia] Web browser distorted after hibernation/power save when idle
>
> Status in chromium-browser package in Ubuntu:
>   Triaged
> Status in nvidia-graphics-drivers-340 package in Ubuntu:
>   Won't Fix
> Status in nvidia-graphics-drivers-440 package in Ubuntu:
>   Won't Fix
>
> Bug description:
>   https://bugs.chromium.org/p/chromium/issues/detail?id=791913
>
>   ---
>
>   my laptop goes to hibernation/power saver mode when my computer is idle.
>   every time I bring my computer back up, the screen distorted. I have to
> close all my browsers. Sometimes, shut down the computer.
>
>   Description:  Ubuntu 20.04.1 LTS
>   Release:  20.04
>   N: Unable to locate package pkgname
>
>   ProblemType: Bug
>   DistroRelease: Ubuntu 20.04
>   Package: xorg 1:7.7+19ubuntu14
>   ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
>   Uname: Linux 5.4.0-45-generic x86_64
>   NonfreeKernelModules: nvidia_modeset nvidia
>   .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory:
> '/proc/driver/nvidia/gpus/:01:00.0'
>   .proc.driver.nvidia.registry: Binary: ""
>   .proc.driver.nvidia.suspend: suspend hibernate resume
>   .proc.driver.nvidia.suspend_depth: default modeset uvm
>   .proc.driver.nvidia.version:
>NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.100  Fri May 29
> 08:45:51 UTC 2020
>GCC version:  gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)
>   ApportVersion: 2.20.11-0ubuntu27.8
>   Architecture: amd64
>   BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
>   CasperMD5CheckResult: skip
>   CompositorRunning: None
>   CurrentDesktop: ubuntu:GNOME
>   Date: Mon Sep  7 03:33:23 2020
>   DistUpgraded: Fresh install
>   DistroCodename: focal
>   DistroVariant: ubuntu
>   DkmsStatus:
>nvidia, 440.100, 5.4.0-42-generic, x86_64: installed
>nvidia, 440.100, 5.4.0-45-generic, x86_64: installed
>   ExtraDebuggingInterest: Yes
>   GraphicsCard:
>Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00
> [VGA controller])
>  Subsystem: Hewlett-Packard Company UHD Graphics 630 (Mobile)
> [103c:8466]
>NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev
> a1) (prog-if 00 [VGA controller])
>  Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Ti
> Mobile] [103c:8466]
>   InstallationDate: Installed on 2020-06-23 (75 days ago)
>   InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64
> (20200423)
>   Lsusb:
>Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
>Bus 001 Device 002: ID 05c8:03ab Cheng Uei Precision Industry Co., Ltd
> (Foxlink) HP Wide Vision HD Camera
>Bus 001 Device 003: ID 8087:0aaa Intel Corp.
>Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
>   MachineType: HP OMEN by HP Laptop
>   ProcEnviron:
>TERM=xterm-256color
>PATH=(custom, no user)
>XDG_RUNTIME_DIR=
>LANG=en_US.UTF-8
>SHELL=/bin/bash
>   ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-generic
> root=UUID=98265a4d-5439-415e-b43c-904265a8559a ro quiet splash vt.handoff=7
>   SourcePackage: xorg
>   Symptom: display
>   UpgradeStatus: No upgrade log present (probably fresh install)
>   dmi.bios.date: 04/24/2019
>   dmi.bios.vendor: AMI
>   dmi.bios.version: F.09
>   dmi.board.asset.tag: Base Board Asset Tag
>   dmi.board.name: 8466
>   dmi.board.vendor: HP
>   dmi.board.version: 68.21
>   dmi.chassis.type: 10
>   dmi.chassis.vendor: HP
>   dmi.chassis.version: Chassis Version
>   dmi.modalias:
> dmi:bvnAMI:bvrF.09:bd04/24/2019:svnHP:pnOMENbyHPLaptop:pvr:rvnHP:rn8466:rvr68.21:cvnHP:ct10:cvrChassisVersion:
>   dmi.product.family: 103C_5335KV HP OMEN
>   dmi.product.name: OMEN by HP Laptop
>   dmi.product.sku: 4CC49UA#ABA
>   dmi.sys.vendor: HP
>   modified.conffile..etc.default.apport:
># set this to 0 to disable apport, or to 1 to enable it
># you can temporarily override this with
># sudo service apport start force_start=1
>enabled=0
>   mtime.conffile..etc.default.apport: 2020-06-26T00:47:21.524860
>   version.compiz: compiz N/A
>   version.libdrm2: libdrm2 2.4.101-2
>   version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
>   version.libgl1-mesa-glx: libgl1-mesa-glx N/A
>   version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
>   version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.3
>   version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
>   version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
>   version.xserver-xorg-video-intel: xserver-xorg-video-intel
> 2:2.99.917+git20200226-1
>   

[Kernel-packages] [Bug 1901312] Re: tpm module malfunctions

2020-10-25 Thread Woodrow Shen
Hi bluppfisk,

Can you help to provide the following information:

1. upload the /sys/kernel/security/tpm0/binary_bios_measurements, you
can cp it into ~/ and then upload it to Launchpad bug as it's in-memory
file, so it should be amount of bytes in size.

2. check if TCG event log can be extracted by fwts
sudo add-apt-repository ppa:firmware-testing-team/ppa-fwts-stable
sudo apt-get update
sudo apt-get install fwts
sudo fwts tpmevlogdump

attach results.log to this bug

3. add loglevel=8 to kernel cmdline or GRUB_CMDLINE_LINUX_DEFAULT to
capture dmesg with all levels. Also attach dmesg to this bug

I'm verifying various devices with TPM2 on ubuntu core and ubuntu 20.04
so maybe I can try to help for cross reference.

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

Title:
  tpm module malfunctions

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I originally filed a bug against the fwupd software
  (https://github.com/fwupd/fwupd/issues/2508) from where it transpired
  that this problem was with the tpm package rather than with fwupd.

  Some evidence is in:

  $ sudo cat /sys/kernel/security/tpm0/binary_bios_measurements 
  Killed

  The device is an XPS 13 9300 (2020 model).

  I can reproduce the problem on kernels 5.8, 5.9 and 5.9.1 too. Haven't
  tried any other kernel versions.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-52-generic 5.4.0-52.57
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  Uname: Linux 5.4.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  sander 2665 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Oct 24 14:29:34 2020
  HibernationDevice:
   # RESUME=UUID=e2b4846f-867a-4f84-a3d7-0f5d10d24a33 resume_offset=31260671
   # RESUME=UUID=6a9d6823-9903-4887-bd63-11831c1218c0
   # RESUME=/dev/nvme0n1p7 resume_offset=31260671
   # RESUME=/dev/nvme0n1p7
   # Resume from /swapfile
  InstallationDate: Installed on 2020-04-01 (206 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: Dell Inc. XPS 13 9300
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=e1b4846f-867a-4f84-a3d7-0f5d10d24a33 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-04-24 (183 days ago)
  dmi.bios.date: 08/13/2020
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.0
  dmi.board.name: 0Y4GNJ
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.0:bd08/13/2020:svnDellInc.:pnXPS139300:pvr:rvnDellInc.:rn0Y4GNJ:rvrA01:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 13 9300
  dmi.product.sku: 096D
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901312/+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 1901215] Re: Cannot boot with thunderbolt dock connected before kernel loads

2020-10-25 Thread Alex Murray
FWIW I am seeing this also with my Lenovo X1 Carbon 6th when docked to
my Thinkpad Ultra Docking Station (that has 2 external monitors
connected to it). This booted fine on focal but after upgrading to
Groovy (or doing a fresh install) the boot hangs as soon as the plymouth
splash screen tries to display. Setting nospash in /etc/default/grub
(GRUB_CMDLINE_LINUX_DEFAULT) works around this for now by disabling the
splash screen.

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

Title:
  Cannot boot with thunderbolt dock connected before kernel loads

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Dell XPS 9650 with a TB16 thunderbolt dock. 2 external displays
  through the dock (HDMI and VGA). My system uses graphical boot via
  plymouth. Dell logo remains on screen while ubuntu loads into gdm3
  (when it is booting normally). I'm using LUKS.

  This is a regression from focal and kernel 5.4.

  If I boot the laptop with the thunderbolt dock connected, the system
  will get past the Dell logo, go to a black screen and remain there.
  The screen is powered up as I can see some light on the edges. It
  won't boot up or respond to any keys.

  After force-shutdown via power key long press, on the next boot the
  grub menu will appear. The system will boot normally then (with the
  dock still connected).

  If I boot the system with the dock disconnected, it will correctly go
  into disk encryption password prompt. If at that point I connect the
  dock and wait without entering the password, the system will correctly
  set up the dock: the displays lit up and the mouse and keyboard
  plugged into it become active. The system boots normally.

  I'm trying to bisect in which kernel version this happened. I'll put
  results in a comment.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-generic 5.8.0.25.30
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  luis   3332 F pulseaudio
   /dev/snd/controlC0:  luis   3332 F pulseaudio
  CasperMD5CheckResult: skip
  Date: Fri Oct 23 16:27:30 2020
  InstallationDate: Installed on 2019-08-17 (432 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: Dell Inc. XPS 15 9560
  ProcEnviron:
   LANGUAGE=en_GB:en
   TERM=xterm-256color
   PATH=(custom, no user)
   LANG=en_GB.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=/dev/mapper/vglinux-root ro quiet splash
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-10-09 (13 days ago)
  dmi.bios.date: 11/17/2019
  dmi.bios.release: 1.18
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.18.0
  dmi.board.name: 05FFDN
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.18.0:bd11/17/2019:br1.18:svnDellInc.:pnXPS159560:pvr:rvnDellInc.:rn05FFDN:rvrA00:cvnDellInc.:ct10:cvr:
  dmi.product.family: XPS
  dmi.product.name: XPS 15 9560
  dmi.product.sku: 07BE
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901215/+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 1521173] Re: AER: Corrected error received: id=00e0

2020-10-25 Thread Bill Duetschler
Still an issue for me on Ubuntu 20.10 "Groovy".

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

Title:
  AER: Corrected error received: id=00e0

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Triaged
Status in linux source package in Xenial:
  Triaged

Bug description:
  WORKAROUND: add pci=noaer to your kernel command line:

  1) edit /etc/default/grub and and add pci=noaer to the line starting with 
GRUB_CMDLINE_LINUX_DEFAULT. It will look like this:
  GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pci=noaer"
  2) run "sudo update-grub"
  3) reboot

  

  My dmesg gets completely spammed with the following messages appearing
  over and over again. It stops after one s3 cycle; it only happens
  after reboot.

  [ 5315.986588] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5315.987249] pcieport :00:1c.0: can't find device of ID00e0
  [ 5315.995632] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5315.995664] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5315.995674] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5315.995683] pcieport :00:1c.0:[ 0] Receiver Error
  [ 5316.002772] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5316.002811] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5316.002826] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5316.002838] pcieport :00:1c.0:[ 0] Receiver Error
  [ 5316.009926] pcieport :00:1c.0: AER: Corrected error received: id=00e0
  [ 5316.009964] pcieport :00:1c.0: PCIe Bus Error: severity=Corrected, 
type=Physical Layer, id=00e0(Receiver ID)
  [ 5316.009979] pcieport :00:1c.0:   device [8086:9d14] error 
status/mask=0001/2000
  [ 5316.009991] pcieport :00:1c.0:[ 0] Receiver Error

  ProblemType: BugDistroRelease: Ubuntu 16.04
  Package: linux-image-4.2.0-19-generic 4.2.0-19.23 [modified: 
boot/vmlinuz-4.2.0-19-generic]
  ProcVersionSignature: Ubuntu 4.2.0-19.23-generic 4.2.6
  Uname: Linux 4.2.0-19-generic x86_64
  ApportVersion: 2.19.2-0ubuntu8
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0c:   david  1502 F...m pulseaudio
   /dev/snd/controlC0:  david  1502 F pulseaudio
  CurrentDesktop: Unity
  Date: Mon Nov 30 13:19:00 2015
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=fe528b90-b4eb-4a20-82bd-6a03b79cfb14
  InstallationDate: Installed on 2015-11-28 (2 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151127)
  MachineType: Dell Inc. Inspiron 13-7359
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.2.0-19-generic.efi.signed 
root=UUID=94d54f88-5d18-4e2b-960a-8717d6e618bb ro noprompt persistent quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-19-generic N/A
   linux-backports-modules-4.2.0-19-generic  N/A
   linux-firmware1.153SourcePackage: linux
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/07/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 01.00.00
  dmi.board.name: 0NT3WX
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 9
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr01.00.00:bd08/07/2015:svnDellInc.:pnInspiron13-7359:pvr:rvnDellInc.:rn0NT3WX:rvrA00:cvnDellInc.:ct9:cvr:
  dmi.product.name: Inspiron 13-7359
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1521173/+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 1894627] Re: [nvidia] Web browser distorted after hibernation/power save when idle

2020-10-25 Thread Daniel van Vugt
** Tags added: resume suspend-resume

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

Title:
  [nvidia] Web browser distorted after hibernation/power save when idle

Status in chromium-browser package in Ubuntu:
  Triaged
Status in nvidia-graphics-drivers-340 package in Ubuntu:
  Won't Fix
Status in nvidia-graphics-drivers-440 package in Ubuntu:
  Won't Fix

Bug description:
  https://bugs.chromium.org/p/chromium/issues/detail?id=791913

  ---

  my laptop goes to hibernation/power saver mode when my computer is idle.
  every time I bring my computer back up, the screen distorted. I have to close 
all my browsers. Sometimes, shut down the computer.

  Description:  Ubuntu 20.04.1 LTS
  Release:  20.04
  N: Unable to locate package pkgname

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
  Uname: Linux 5.4.0-45-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.100  Fri May 29 08:45:51 
UTC 2020
   GCC version:  gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)
  ApportVersion: 2.20.11-0ubuntu27.8
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Sep  7 03:33:23 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 440.100, 5.4.0-42-generic, x86_64: installed
   nvidia, 440.100, 5.4.0-45-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00 [VGA 
controller])
     Subsystem: Hewlett-Packard Company UHD Graphics 630 (Mobile) [103c:8466]
   NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev a1) 
(prog-if 00 [VGA controller])
     Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Ti Mobile] 
[103c:8466]
  InstallationDate: Installed on 2020-06-23 (75 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 002: ID 05c8:03ab Cheng Uei Precision Industry Co., Ltd 
(Foxlink) HP Wide Vision HD Camera
   Bus 001 Device 003: ID 8087:0aaa Intel Corp.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP OMEN by HP Laptop
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-generic 
root=UUID=98265a4d-5439-415e-b43c-904265a8559a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/24/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.09
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 8466
  dmi.board.vendor: HP
  dmi.board.version: 68.21
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.09:bd04/24/2019:svnHP:pnOMENbyHPLaptop:pvr:rvnHP:rn8466:rvr68.21:cvnHP:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP OMEN
  dmi.product.name: OMEN by HP Laptop
  dmi.product.sku: 4CC49UA#ABA
  dmi.sys.vendor: HP
  modified.conffile..etc.default.apport:
   # set this to 0 to disable apport, or to 1 to enable it
   # you can temporarily override this with
   # sudo service apport start force_start=1
   enabled=0
  mtime.conffile..etc.default.apport: 2020-06-26T00:47:21.524860
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.101-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.8-0ubuntu1~20.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2.3
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1894627/+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 1894627] Re: [nvidia] Web browser distorted after hibernation/power save when idle

2020-10-25 Thread Daniel van Vugt
Tracking upstream:
https://bugs.chromium.org/p/chromium/issues/detail?id=791913

** Description changed:

- my laptop goes to hibernation/power saver mode when my computer is idle. 
+ https://bugs.chromium.org/p/chromium/issues/detail?id=791913
+ 
+ ---
+ 
+ my laptop goes to hibernation/power saver mode when my computer is idle.
  every time I bring my computer back up, the screen distorted. I have to close 
all my browsers. Sometimes, shut down the computer.
  
  Description:  Ubuntu 20.04.1 LTS
  Release:  20.04
  N: Unable to locate package pkgname
  
  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.4.0-45.49-generic 5.4.55
  Uname: Linux 5.4.0-45-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
-  NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.100  Fri May 29 08:45:51 
UTC 2020
-  GCC version:  gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)
+  NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.100  Fri May 29 08:45:51 
UTC 2020
+  GCC version:  gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)
  ApportVersion: 2.20.11-0ubuntu27.8
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Sep  7 03:33:23 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  DkmsStatus:
-  nvidia, 440.100, 5.4.0-42-generic, x86_64: installed
-  nvidia, 440.100, 5.4.0-45-generic, x86_64: installed
+  nvidia, 440.100, 5.4.0-42-generic, x86_64: installed
+  nvidia, 440.100, 5.4.0-45-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
-  Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00 [VGA 
controller])
-Subsystem: Hewlett-Packard Company UHD Graphics 630 (Mobile) [103c:8466]
-  NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev a1) 
(prog-if 00 [VGA controller])
-Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Ti Mobile] 
[103c:8466]
+  Intel Corporation UHD Graphics 630 (Mobile) [8086:3e9b] (prog-if 00 [VGA 
controller])
+    Subsystem: Hewlett-Packard Company UHD Graphics 630 (Mobile) [103c:8466]
+  NVIDIA Corporation GP107M [GeForce GTX 1050 Ti Mobile] [10de:1c8c] (rev a1) 
(prog-if 00 [VGA controller])
+    Subsystem: Hewlett-Packard Company GP107M [GeForce GTX 1050 Ti Mobile] 
[103c:8466]
  InstallationDate: Installed on 2020-06-23 (75 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lsusb:
-  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
-  Bus 001 Device 002: ID 05c8:03ab Cheng Uei Precision Industry Co., Ltd 
(Foxlink) HP Wide Vision HD Camera
-  Bus 001 Device 003: ID 8087:0aaa Intel Corp. 
-  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
+  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
+  Bus 001 Device 002: ID 05c8:03ab Cheng Uei Precision Industry Co., Ltd 
(Foxlink) HP Wide Vision HD Camera
+  Bus 001 Device 003: ID 8087:0aaa Intel Corp.
+  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: HP OMEN by HP Laptop
  ProcEnviron:
-  TERM=xterm-256color
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-generic 
root=UUID=98265a4d-5439-415e-b43c-904265a8559a ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/24/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.09
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 8466
  dmi.board.vendor: HP
  dmi.board.version: 68.21
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.09:bd04/24/2019:svnHP:pnOMENbyHPLaptop:pvr:rvnHP:rn8466:rvr68.21:cvnHP:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP OMEN
  dmi.product.name: OMEN by HP Laptop
  dmi.product.sku: 4CC49UA#ABA
  dmi.sys.vendor: HP
  modified.conffile..etc.default.apport:
-  # set this to 0 to disable apport, or to 1 to enable it
-  # you can temporarily override this with
-  # sudo service apport start force_start=1
-  enabled=0
+  # set this to 0 to disable apport, or to 1 to enable it
+  # you can temporarily override this with
+  # sudo service apport start force_start=1
+  enabled=0
  mtime.conffile..etc.default.apport: 2020-06-26T00:47:21.524860
  version.compiz: compiz N/A
  version.libdrm2: 

[Kernel-packages] [Bug 1861532] Re: brightness control not working [Lenovo Legion Y540/Y545]

2020-10-25 Thread Harry Brar
Sir no resolution legion y545 not working

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

Title:
  brightness control not working [Lenovo Legion Y540/Y545]

Status in linux package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-435 package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-440 package in Ubuntu:
  New

Bug description:
  after selecting nvidia-driver-435 in livepatch- additional drivers the
  brightness control stops working after the first reboot.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: xorg 1:7.7+19ubuntu7.1
  ProcVersionSignature: Ubuntu 5.3.0-28.30~18.04.1-generic 5.3.13
  Uname: Linux 5.3.0-28-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  435.21  Sun Aug 25 08:17:57 
CDT 2019
   GCC version:  gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
  ApportVersion: 2.20.9-0ubuntu7.7
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Jan 31 22:00:02 2020
  DistUpgraded: Fresh install
  DistroCodename: bionic
  DistroVariant: ubuntu
  DkmsStatus:
   nvidia, 435.21, 4.15.0-76-generic, x86_64: installed
   nvidia, 435.21, 5.3.0-28-generic, x86_64: installed
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation Device [10de:2191] (rev a1) (prog-if 00 [VGA controller])
 Subsystem: Lenovo Device [17aa:3ffc]
  InstallationDate: Installed on 2020-01-31 (0 days ago)
  InstallationMedia: Ubuntu 18.04.3 LTS "Bionic Beaver" - Release amd64 
(20190805)
  MachineType: LENOVO 81Q4
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.3.0-28-generic 
root=UUID=084301b5-fdae-4c92-811e-0536a3b7555b ro quiet splash vt.handoff=1
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  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: SDK0J40709 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Legion Y540-17IRH
  dmi.modalias: 
dmi:bvnLENOVO:bvrBHCN35WW:bd11/23/2019:svnLENOVO:pn81Q4:pvrLegionY540-17IRH:rvnLENOVO:rnLNVNB161216:rvrSDK0J40709WIN:cvnLENOVO:ct10:cvrLegionY540-17IRH:
  dmi.product.family: Legion Y540-17IRH
  dmi.product.name: 81Q4
  dmi.product.sku: LENOVO_MT_81Q4_BU_idea_FM_Legion Y540-17IRH
  dmi.product.version: Legion Y540-17IRH
  dmi.sys.vendor: LENOVO
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.99-1ubuntu1~18.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.2.8-0ubuntu0~18.04.1
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.0.2-1ubuntu1.1~18.04.2
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  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/+source/linux/+bug/1861532/+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 1899508] Re: alsa/hda/realtek - The front Mic on a HP machine doesn't work

2020-10-25 Thread jeremyszu
** Description changed:

  This fix is only for oem-5.6 kernel, other kernels will merge this
  patch with stable update. Our oem project needs this patch to be merged
  ASAP.
  
  [Impact]
  When using a HP machine, after plugging the headset at front jack,
  there is no any input device shows.
  
  [Fix]
  The codec of the HP ZCentrol is alc671 and it needs to override the pin
  configuration to enable the headset mic.
  This patch is going to be merged by upstream, now backport it to
  oem-5.6 kernel.
  
  [Test Case]
  Boot the system, plug a headset and check the gnome-control-center,
  the Mic is active in the UI, and record the sound, it could record
  the sound.
  
- [Regression Risk]
+ [Regression Potential]
  Low, this patch is to add a platform specific quirk to override pin
  configuration and already tested in this HP machine.

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

Title:
  alsa/hda/realtek - The front Mic on a HP machine doesn't work

Status in OEM Priority Project:
  In Progress
Status in linux package in Ubuntu:
  Triaged
Status in linux-oem-5.6 package in Ubuntu:
  New
Status in linux source package in Focal:
  Triaged
Status in linux-oem-5.6 source package in Focal:
  Fix Released

Bug description:
  This fix is only for oem-5.6 kernel, other kernels will merge this
  patch with stable update. Our oem project needs this patch to be merged
  ASAP.

  [Impact]
  When using a HP machine, after plugging the headset at front jack,
  there is no any input device shows.

  [Fix]
  The codec of the HP ZCentrol is alc671 and it needs to override the pin
  configuration to enable the headset mic.
  This patch is going to be merged by upstream, now backport it to
  oem-5.6 kernel.

  [Test Case]
  Boot the system, plug a headset and check the gnome-control-center,
  the Mic is active in the UI, and record the sound, it could record
  the sound.

  [Regression Potential]
  Low, this patch is to add a platform specific quirk to override pin
  configuration and already tested in this HP machine.

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/1899508/+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 1901465] [NEW] bluetooth fails to reconnect after waking from sleep on 20.10

2020-10-25 Thread Tessa
Public bug reported:

After upgrading to 20.10, my mouse either takes an extraordinarily long
time to reconnect (2+m), or it never reconnects until I unplug and
replug my usb bluetooth dongle. It was slow to reconnect on 20.04
(10-30s), but it seems pretty much broken on 20.10.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: bluez 5.55-0ubuntu1
ProcVersionSignature: Ubuntu 5.8.0-25.26-lowlatency 5.8.14
Uname: Linux 5.8.0-25-lowlatency x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Oct 25 19:32:46 2020
InstallationDate: Installed on 2020-07-15 (103 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
InterestingModules: rfcomm bnep btusb bluetooth
MachineType: ASUS All Series
ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_13qyk7@/vmlinuz-5.8.0-25-lowlatency 
root=ZFS=rpool/ROOT/ubuntu_13qyk7 ro intel_iommu=on nvidia-drm.modeset=1 quiet 
splash vt.handoff=1
SourcePackage: bluez
UpgradeStatus: Upgraded to groovy on 2020-10-24 (2 days ago)
dmi.bios.date: 04/18/2018
dmi.bios.release: 4.6
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 3503
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: GRYPHON Z97
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3503:bd04/18/2018:br4.6:svnASUS:pnAllSeries:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnGRYPHONZ97:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: ASUS MB
dmi.product.name: All Series
dmi.product.sku: All
dmi.product.version: System Version
dmi.sys.vendor: ASUS
hciconfig:
 hci0:  Type: Primary  Bus: USB
BD Address: 00:1A:7D:DA:71:0C  ACL MTU: 310:10  SCO MTU: 64:8
UP RUNNING PSCAN 
RX bytes:103048 acl:4561 sco:0 events:437 errors:0
TX bytes:3727 acl:71 sco:0 commands:62 errors:0
rfkill:
 2: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

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


** Tags: amd64 apport-bug groovy

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

Title:
  bluetooth fails to reconnect after waking from sleep on 20.10

Status in bluez package in Ubuntu:
  New

Bug description:
  After upgrading to 20.10, my mouse either takes an extraordinarily
  long time to reconnect (2+m), or it never reconnects until I unplug
  and replug my usb bluetooth dongle. It was slow to reconnect on 20.04
  (10-30s), but it seems pretty much broken on 20.10.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: bluez 5.55-0ubuntu1
  ProcVersionSignature: Ubuntu 5.8.0-25.26-lowlatency 5.8.14
  Uname: Linux 5.8.0-25-lowlatency x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 25 19:32:46 2020
  InstallationDate: Installed on 2020-07-15 (103 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  InterestingModules: rfcomm bnep btusb bluetooth
  MachineType: ASUS All Series
  ProcKernelCmdLine: 
BOOT_IMAGE=/BOOT/ubuntu_13qyk7@/vmlinuz-5.8.0-25-lowlatency 
root=ZFS=rpool/ROOT/ubuntu_13qyk7 ro intel_iommu=on nvidia-drm.modeset=1 quiet 
splash vt.handoff=1
  SourcePackage: bluez
  UpgradeStatus: Upgraded to groovy on 2020-10-24 (2 days ago)
  dmi.bios.date: 04/18/2018
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 3503
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: GRYPHON Z97
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr3503:bd04/18/2018:br4.6:svnASUS:pnAllSeries:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnGRYPHONZ97:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: ASUS MB
  dmi.product.name: All Series
  dmi.product.sku: All
  dmi.product.version: System Version
  dmi.sys.vendor: ASUS
  hciconfig:
   hci0:Type: Primary  Bus: USB
BD Address: 00:1A:7D:DA:71:0C  ACL MTU: 310:10  SCO MTU: 64:8
UP RUNNING PSCAN 
RX bytes:103048 acl:4561 sco:0 events:437 errors:0
TX bytes:3727 acl:71 sco:0 commands:62 errors:0
  rfkill:
   2: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

To manage notifications about this bug go to:

[Kernel-packages] [Bug 1891773] Re: kcompactd0 and btrfs-transaction keep deadlocking with each other

2020-10-25 Thread Bogdan Mart
I confirm that downgrading to 4.15.0-106 fixed the issue for me.

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

Title:
  kcompactd0 and btrfs-transaction keep deadlocking with each other

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Example 1:
  [346911.187920] INFO: task kcompactd0:53 blocked for more than 120 seconds.
  [346911.187938]   Not tainted 4.15.0-112-generic #113-Ubuntu
  [346911.187951] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables 
this message.
  [346911.187968] kcompactd0  D053  2 0x8000
  [346911.187969] Call Trace:
  [346911.187973]  __schedule+0x24e/0x880
  [346911.187986]  ? btree_releasepage+0x42/0x50 [btrfs]
  [346911.187987]  schedule+0x2c/0x80
  [346911.187988]  io_schedule+0x16/0x40
  [346911.187989]  __lock_page+0xff/0x140
  [346911.187990]  ? page_cache_tree_insert+0xe0/0xe0
  [346911.187992]  migrate_pages+0x91f/0xb80
  [346911.187993]  ? __ClearPageMovable+0x10/0x10
  [346911.187994]  ? isolate_freepages_block+0x3b0/0x3b0
  [346911.187995]  compact_zone+0x681/0x950
  [346911.187995]  kcompactd_do_work+0xfe/0x2a0
  [346911.187996]  ? __switch_to_asm+0x35/0x70
  [346911.187997]  ? __switch_to_asm+0x41/0x70
  [346911.187998]  kcompactd+0x86/0x1c0
  [346911.187999]  ? kcompactd+0x86/0x1c0
  [346911.188001]  ? wait_woken+0x80/0x80
  [346911.188002]  kthread+0x121/0x140
  [346911.188003]  ? kcompactd_do_work+0x2a0/0x2a0
  [346911.188003]  ? kthread_create_worker_on_cpu+0x70/0x70
  [346911.188004]  ret_from_fork+0x35/0x40

  [346911.188015] INFO: task btrfs-transacti:858 blocked for more than 120 
seconds.
  [346911.188031]   Not tainted 4.15.0-112-generic #113-Ubuntu
  [346911.188043] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables 
this message.
  [346911.188060] btrfs-transacti D0   858  2 0x8000
  [346911.188061] Call Trace:
  [346911.188062]  __schedule+0x24e/0x880
  [346911.188063]  ? bit_wait+0x60/0x60
  [346911.188063]  schedule+0x2c/0x80
  [346911.188064]  io_schedule+0x16/0x40
  [346911.188065]  bit_wait_io+0x11/0x60
  [346911.188066]  __wait_on_bit+0x4c/0x90
  [346911.188066]  ? bit_wait+0x60/0x60
  [346911.188067]  out_of_line_wait_on_bit+0x90/0xb0
  [346911.188068]  ? bit_waitqueue+0x40/0x40
  [346911.188080]  lock_extent_buffer_for_io+0x100/0x2a0 [btrfs]
  [346911.188090]  btree_write_cache_pages+0x1b8/0x420 [btrfs]
  [346911.188092]  ? native_sched_clock_from_tsc+0x30/0x70
  [346911.188092]  ? update_load_avg+0x423/0x780
  [346911.188101]  btree_writepages+0x5d/0x70 [btrfs]
  [346911.188102]  do_writepages+0x4b/0xe0
  [346911.188102]  ? enqueue_task_fair+0xb6/0x300
  [346911.188111]  ? merge_state.part.47+0x44/0x130 [btrfs]
  [346911.188112]  __filemap_fdatawrite_range+0xcf/0x100
  [346911.188113]  ? __filemap_fdatawrite_range+0xcf/0x100
  [346911.188114]  filemap_fdatawrite_range+0x13/0x20
  [346911.188122]  btrfs_write_marked_extents+0x68/0x140 [btrfs]
  [346911.188129]  btrfs_write_and_wait_marked_extents.constprop.20+0x4f/0x90 
[btrfs]
  [346911.188136]  btrfs_commit_transaction+0x696/0x910 [btrfs]
  [346911.188143]  ? btrfs_commit_transaction+0x696/0x910 [btrfs]
  [346911.188144]  ? wait_woken+0x80/0x80
  [346911.188151]  transaction_kthread+0x18d/0x1b0 [btrfs]
  [346911.188152]  kthread+0x121/0x140
  [346911.188158]  ? btrfs_cleanup_transaction+0x570/0x570 [btrfs]
  [346911.188159]  ? kthread_create_worker_on_cpu+0x70/0x70
  [346911.188160]  ret_from_fork+0x35/0x40

  Example 2:
  2020-08-11T20:23:03.533+01:00  kernel: INFO: task kcompactd0:53 blocked 
for more than 120 seconds.
  2020-08-11T20:23:03.533+01:00  kernel:   Not tainted 
4.15.0-112-generic #113-Ubuntu
  2020-08-11T20:23:03.533+01:00  kernel: "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
  2020-08-11T20:23:03.533+01:00  kernel: kcompactd0  D053 
 2 0x8000
  2020-08-11T20:23:03.533+01:00  kernel: Call Trace:
  2020-08-11T20:23:03.533+01:00  kernel:  __schedule+0x24e/0x880
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
btree_releasepage+0x42/0x50 [btrfs]
  2020-08-11T20:23:03.533+01:00  kernel:  schedule+0x2c/0x80
  2020-08-11T20:23:03.533+01:00  kernel:  io_schedule+0x16/0x40
  2020-08-11T20:23:03.533+01:00  kernel:  __lock_page+0xff/0x140
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
page_cache_tree_insert+0xe0/0xe0
  2020-08-11T20:23:03.533+01:00  kernel:  migrate_pages+0x91f/0xb80
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
__ClearPageMovable+0x10/0x10
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
isolate_freepages_block+0x3b0/0x3b0
  2020-08-11T20:23:03.533+01:00  kernel:  compact_zone+0x681/0x950
  2020-08-11T20:23:03.533+01:00  kernel:  kcompactd_do_work+0xfe/0x2a0
  2020-08-11T20:23:03.533+01:00  kernel:  ? __switch_to_asm+0x35/0x70
  2020-08-11T20:23:03.533+01:00  kernel:  ? __switch_to_asm+0x41/0x70
  2020-08-11T20:23:03.533+01:00  kernel:  

[Kernel-packages] [Bug 1800752] Re: [regression] Wrong EU count for i5-5250U, reducing OpenCL performance

2020-10-25 Thread Gordon Lack
This has been fixed

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

Title:
  [regression] Wrong EU count for i5-5250U, reducing OpenCL performance

Status in beignet package in Ubuntu:
  Invalid
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  I run a BOINC project which uses opencl_intel on my Kubunut system

  On bioinc the tasks ran in 12,000 +/- 200 seconds.
  They've been doing that for ~6 months.

  I've now updated the system to cosmic, and the task are not taking
  19,000 +/- 200s.

  I have another system (which is still running Mint18.3 - and hasn't
  changed) which also runs these tasks and the timings there have not
  changed, so the tasks themselves are still equivalent.

  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: beignet-opencl-icd 1.3.2-4
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Uname: Linux 4.18.0-10-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Wed Oct 31 01:17:08 2018
  InstallationDate: Installed on 2018-05-09 (174 days ago)
  InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
  SourcePackage: beignet
  UpgradeStatus: Upgraded to cosmic on 2018-10-26 (4 days ago)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  DistroRelease: Ubuntu 18.10
  InstallationDate: Installed on 2018-03-23 (228 days ago)
  InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 
(20180306.1)
  Package: linux
  PackageArchitecture: amd64
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-28 (9 days ago)
  UserGroups:
   
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/beignet/+bug/1800752/+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 1313279] Re: xHCI host not responding to stop endpoint command

2020-10-25 Thread Sergey Galtsev
FWIW I used method described here
https://bbs.archlinux.org/viewtopic.php?id=236536 and it works for me:

echo -n ":00:14.0" | tee /sys/bus/pci/drivers/xhci_hcd/unbind
sleep 5
echo -n ":00:14.0" | tee /sys/bus/pci/drivers/xhci_hcd/bind

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

Title:
  xHCI host not responding to stop endpoint command

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Description:  Ubuntu 14.04 LTS
  Release:  14.04
  Hardware: Intel NUC D34010WYK (Core i3 4010U)
  Memory: 4 gigabytes
  USD device: PCTV 292e DVB-T tuner

  I have 2 PCTV 292e DVB-T tuners connected to the system. When I start
  to use either of the tuner, the xHCI host crashes. Since I'm booting
  from an USB disk. If I only connect 1 of the tuners, the system works
  ok. It does not matter which one of the tuners I connect.

  [   68.990396] xhci_hcd :00:14.0: xHCI host not responding to stop 
endpoint command.
  [   68.990402] xhci_hcd :00:14.0: Assuming host is dying, halting host.

  Sometimes this also leads to this:

  [  638.183002] IP: [] usb_enable_link_state+0x2d/0x2f0
  [  638.183057] PGD 0 
  [  638.183077] Oops:  [#1] SMP 

  I can also observe the same fault with OpenELEC Linux distribution
  that runs kernel 3.14 when I run the system from an internal SATA SSD
  drive (not from an external USB disk).

  lsusb -v: http://paste.ubuntu.com/7343384/
  dmesg: http://sprunge.us/HMXH
  dmesg (crash type 2): http://sprunge.us/PSiX

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: lubuntu-desktop 0.55
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  Date: Sun Apr 27 11:12:22 2014
  InstallationDate: Installed on 2014-04-07 (19 days ago)
  InstallationMedia: Lubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  SourcePackage: lubuntu-meta
  UpgradeStatus: Upgraded to trusty on 2014-04-26 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1313279/+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 1861936] Re: Raspberry Pi 3 network dies shortly after a burst of IPv6 tunnel network load ((lan78xx): transmit queue 0 timed out)

2020-10-25 Thread Seamus Ryan
Well, it took more than 24 hours for my Pi to crash again, but it did
happen. I wasn't able to capture much of what triggered it as i wasn't
home at the time.

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

Title:
  Raspberry Pi 3 network dies shortly after a burst of IPv6 tunnel
  network load ((lan78xx): transmit queue 0 timed out)

Status in linux-raspi package in Ubuntu:
  Incomplete
Status in linux-raspi2 package in Ubuntu:
  Incomplete
Status in linux-raspi2 source package in Eoan:
  Won't Fix
Status in linux-raspi source package in Focal:
  Confirmed

Bug description:
  Desciption changed:
  Raspberry Pi 3 network partially dies (transmission doesn't work, reception 
still does) shortly after a burst of network load over IPv6, when IPv6 
connectivity is provided by a tunnel from tunnelbroker.net. The triggering load 
is typically an HTTP(S) download, and replication can be done without actually 
saving the file (wget -O /dev/null ...). Problem happens within downloading ~10 
GB, usually withinthe first 1 GB of traffic)
  Replication is 100% as long as _all_ of the following conditions are met 
  - 6in4 tunnel to HE.net set up with netplan
  - ipv6 rules applied (netfilter-persistent)
  - ipv6 forwarding enabled (edit /etc/sysctl.conf)

  
  kern.log message that appears after a while:

  Feb  4 23:42:59 rpi3 kernel: [  571.878359] [ cut here 
]
  Feb  4 23:42:59 rpi3 kernel: [  571.878420] NETDEV WATCHDOG: eth0 (lan78xx): 
transmit queue 0 timed out
  Feb  4 23:42:59 rpi3 kernel: [  571.878550] WARNING: CPU: 3 PID: 0 at 
net/sched/sch_generic.c:447 dev_watchdog+0x324/0x330
  Feb  4 23:42:59 rpi3 kernel: [  571.878557] Modules linked in: sit tunnel4 
ip_tunnel bridge stp llc ip6table_filter ip6_tables xt_tcpudp xt_conntrack 
nf_conntrack iptable_filter bpfilter nls_ascii dm_multipath scsi_dh_rdac 
scsi_dh_emc scsi_dh_alua btsdio bluetooth ecdh_generic ecc brcmfmac brcmutil 
cfg80211 bcm2835_v4l2(CE) bcm2835_mmal_vchiq(CE) input_leds vc_sm_cma(CE) 
v4l2_common videobuf2_vmalloc spidev videobuf2_memops videobuf2_v4l2 
raspberrypi_hwmon videobuf2_common videodev mc uio_pdrv_genirq uio sch_fq_codel 
jool(OE) jool_common(OE) nf_defrag_ipv6 nf_defrag_ipv4 ip_tables x_tables 
autofs4 btrfs zstd_compress raid10 raid456 async_raid6_recov async_memcpy 
async_pq async_xor async_tx xor xor_neon raid6_pq libcrc32c raid1 raid0 
multipath linear hid_generic usbhid crct10dif_ce sdhci_iproc phy_generic fixed 
aes_neon_bs aes_neon_blk crypto_simd cryptd aes_arm64
  Feb  4 23:42:59 rpi3 kernel: [  571.878774] CPU: 3 PID: 0 Comm: swapper/3 
Tainted: G C OE 5.3.0-1017-raspi2 #19-Ubuntu
  Feb  4 23:42:59 rpi3 kernel: [  571.878781] Hardware name: Raspberry Pi 3 
Model B Plus Rev 1.3 (DT)
  Feb  4 23:42:59 rpi3 kernel: [  571.878789] pstate: 6045 (nZCv daif +PAN 
-UAO)
  Feb  4 23:42:59 rpi3 kernel: [  571.878800] pc : dev_watchdog+0x324/0x330
  Feb  4 23:42:59 rpi3 kernel: [  571.878807] lr : dev_watchdog+0x324/0x330
  Feb  4 23:42:59 rpi3 kernel: [  571.878812] sp : 1001bd60
  Feb  4 23:42:59 rpi3 kernel: [  571.878817] x29: 1001bd60 x28: 
0140
  Feb  4 23:42:59 rpi3 kernel: [  571.878827] x27:  x26: 

  Feb  4 23:42:59 rpi3 kernel: [  571.878836] x25: 8ecbefa4e000 x24: 
305e0f529018
  Feb  4 23:42:59 rpi3 kernel: [  571.878845] x23:  x22: 
0001
  Feb  4 23:42:59 rpi3 kernel: [  571.878853] x21: 8ecbefa4e480 x20: 
305e0f807000
  Feb  4 23:42:59 rpi3 kernel: [  571.878862] x19:  x18: 

  Feb  4 23:42:59 rpi3 kernel: [  571.878871] x17: 10fd8218 x16: 
305e0e30efb8
  Feb  4 23:42:59 rpi3 kernel: [  571.878879] x15: 8ecbf922a290 x14: 

  Feb  4 23:42:59 rpi3 kernel: [  571.87] x13:  x12: 
305e0f944000
  Feb  4 23:42:59 rpi3 kernel: [  571.878897] x11: 305e0f82d000 x10: 

  Feb  4 23:42:59 rpi3 kernel: [  571.878905] x9 : 0004 x8 : 
017f
  Feb  4 23:42:59 rpi3 kernel: [  571.878913] x7 :  x6 : 
0001
  Feb  4 23:42:59 rpi3 kernel: [  571.878921] x5 :  x4 : 
0008
  Feb  4 23:42:59 rpi3 kernel: [  571.878929] x3 : 305e0ee15750 x2 : 
0004
  Feb  4 23:42:59 rpi3 kernel: [  571.878937] x1 : 6abb42c67c954600 x0 : 

  Feb  4 23:42:59 rpi3 kernel: [  571.878946] Call trace:
  Feb  4 23:42:59 rpi3 kernel: [  571.878955]  dev_watchdog+0x324/0x330
  Feb  4 23:42:59 rpi3 kernel: [  571.878967]  call_timer_fn+0x3c/0x178
  Feb  4 23:42:59 rpi3 kernel: [  571.878977]  __run_timers.part.0+0x200/0x330
  Feb  4 23:42:59 rpi3 kernel: [  571.878985]  run_timer_softirq+0x40/0x78
  Feb  4 23:42:59 rpi3 kernel: [  571.878995]  __do_softirq+0x168/0x384
  Feb  4 23:42:59 

[Kernel-packages] [Bug 1894017] Re: Keyboard not working

2020-10-25 Thread Peter Horn
I have since received kernel 5.4.0-52 but this still has the same issue 
(Keyboard AND Mouse not working).
I will continue to use 5.4.0-42 until this can be fixed - my only other option 
is to revert to Windows (ugh!).

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

Title:
  Keyboard not working

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  The laptop keyboard doesn't work at login or in the de. If I
  ctrl+alt+F3 from an external usb keyboard to a terminal the laptop
  keyboard works. An external usb keyboard works everywhere. The
  laptop's keyboard does work everywhere with the previous kernel
  5.4.0.42.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-45-lowlatency 5.4.0-45.49
  ProcVersionSignature: Ubuntu 5.4.0-45.49-lowlatency 5.4.55
  Uname: Linux 5.4.0-45-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu27.8
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  Date: Thu Sep  3 03:09:49 2020
  InstallationDate: Installed on 2019-08-07 (392 days ago)
  InstallationMedia: Kubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: Hewlett-Packard HP Pavilion 11 x360 PC
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-45-lowlatency 
root=UUID=6035c42c-766d-44fd-b45c-6cdf9c74e0b5 ro quiet splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-45-lowlatency N/A
   linux-backports-modules-5.4.0-45-lowlatency  N/A
   linux-firmware   1.187.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to focal on 2020-04-06 (149 days ago)
  dmi.bios.date: 03/13/2018
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.30
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 2209
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 57.57
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.30:bd03/13/2018:svnHewlett-Packard:pnHPPavilion11x360PC:pvr097710405F00010420180:rvnHewlett-Packard:rn2209:rvr57.57:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.family: 103C_5335KV G=N L=CON B=HP S=PAV X=MIN
  dmi.product.name: HP Pavilion 11 x360 PC
  dmi.product.sku: M0B61EA#ACQ
  dmi.product.version: 097710405F00010420180
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1894017/+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 1901437] Status changed to Confirmed

2020-10-25 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/1901437

Title:
  System loses bluetooth mouse settings at every reconnect

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  My bluetooth mouse loses it's settings at every reconnect.  It's a
  Logitech MX Master 2S in bluetooth mode (NOT using the usb dongle.)
  The control panel always shows my desired settings, but I have to poke
  both the speed and scroll direction settings to get them reset to the
  mouse.

  This happens to me in 20.04 and 20.10.  19.10 was just fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-25-generic 5.8.0-25.26
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mwilson1464 F pulseaudio
   /dev/snd/controlC1:  mwilson1464 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 25 12:52:56 2020
  InstallationDate: Installed on 2020-09-04 (50 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-25-generic 
root=UUID=b47a92f4-e140-422c-a1a7-fc261ff16f40 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-10-25 (0 days ago)
  dmi.bios.date: 05/15/2019
  dmi.bios.release: 5.12
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P4.20
  dmi.board.name: B365M Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.20:bd05/15/2019:br5.12:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnB365MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To Be Filled By O.E.M.
  dmi.product.name: To Be Filled By O.E.M.
  dmi.product.sku: To Be Filled By O.E.M.
  dmi.product.version: To Be Filled By O.E.M.
  dmi.sys.vendor: To Be Filled By O.E.M.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901437/+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 1901437] [NEW] System loses bluetooth mouse settings at every reconnect

2020-10-25 Thread Matthew Wilson
Public bug reported:

My bluetooth mouse loses it's settings at every reconnect.  It's a
Logitech MX Master 2S in bluetooth mode (NOT using the usb dongle.)  The
control panel always shows my desired settings, but I have to poke both
the speed and scroll direction settings to get them reset to the mouse.

This happens to me in 20.04 and 20.10.  19.10 was just fine.

ProblemType: Bug
DistroRelease: Ubuntu 20.10
Package: linux-image-5.8.0-25-generic 5.8.0-25.26
ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
Uname: Linux 5.8.0-25-generic x86_64
ApportVersion: 2.20.11-0ubuntu50
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  mwilson1464 F pulseaudio
 /dev/snd/controlC1:  mwilson1464 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sun Oct 25 12:52:56 2020
InstallationDate: Installed on 2020-09-04 (50 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 amdgpudrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-25-generic 
root=UUID=b47a92f4-e140-422c-a1a7-fc261ff16f40 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.8.0-25-generic N/A
 linux-backports-modules-5.8.0-25-generic  N/A
 linux-firmware1.190
SourcePackage: linux
UpgradeStatus: Upgraded to groovy on 2020-10-25 (0 days ago)
dmi.bios.date: 05/15/2019
dmi.bios.release: 5.12
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P4.20
dmi.board.name: B365M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.20:bd05/15/2019:br5.12:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnB365MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.family: To Be Filled By O.E.M.
dmi.product.name: To Be Filled By O.E.M.
dmi.product.sku: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

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


** Tags: amd64 apport-bug groovy

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

Title:
  System loses bluetooth mouse settings at every reconnect

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  My bluetooth mouse loses it's settings at every reconnect.  It's a
  Logitech MX Master 2S in bluetooth mode (NOT using the usb dongle.)
  The control panel always shows my desired settings, but I have to poke
  both the speed and scroll direction settings to get them reset to the
  mouse.

  This happens to me in 20.04 and 20.10.  19.10 was just fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: linux-image-5.8.0-25-generic 5.8.0-25.26
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  Uname: Linux 5.8.0-25-generic x86_64
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  mwilson1464 F pulseaudio
   /dev/snd/controlC1:  mwilson1464 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 25 12:52:56 2020
  InstallationDate: Installed on 2020-09-04 (50 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.8.0-25-generic 
root=UUID=b47a92f4-e140-422c-a1a7-fc261ff16f40 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  SourcePackage: linux
  UpgradeStatus: Upgraded to groovy on 2020-10-25 (0 days ago)
  dmi.bios.date: 05/15/2019
  dmi.bios.release: 5.12
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P4.20
  dmi.board.name: B365M Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP4.20:bd05/15/2019:br5.12:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnB365MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.family: To Be Filled By O.E.M.
  dmi.product.name: To Be Filled By O.E.M.
  

[Kernel-packages] [Bug 1901406] Re: Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

2020-10-25 Thread Henning Kulander
I tried installing 
linux-image-unsigned-5.8.16-050816-generic_5.8.16-050816.202010170731_amd64.deb

This seems to work a little bit better than the Ubuntu kernel, but not
much. I've seen the freqency reaching 1300Mhz (of 4800Mhz). Now it's
running on 500Mhz while trying to load IntelliJ. Current load is 9.5, so
I would expect it to be running at full speed now.

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

-- 
Mailing list: 

[Kernel-packages] [Bug 1863142] Re: [nvidia] Xorg crashed with SIGSEGV in xf86ScreenSetCursor(pCurs=NULL)

2020-10-25 Thread Paweł Cyprys
** Also affects: nvidia-drivers-ubuntu
   Importance: Undecided
   Status: New

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

Title:
  [nvidia] Xorg crashed with SIGSEGV in xf86ScreenSetCursor(pCurs=NULL)

Status in NVIDIA Drivers Ubuntu:
  New
Status in nvidia-graphics-drivers package in Ubuntu:
  Expired
Status in nvidia-graphics-drivers-440 package in Ubuntu:
  Expired
Status in xorg-server package in Ubuntu:
  Expired

Bug description:
  https://errors.ubuntu.com/problem/ea7655e8bec62deae73df2b30259cb413e61bef9

  ---

  I observed the following on Eoan as well with nvidia drivers older
  than 440.

  1) a windows 10 VM running in a qemu-kvm VM: pc-q35-3.1 machine type,
  QXL + SPICE:

  
    
    
  
  
    
    
  

  2) When a host is booted with `prime-select intel` observing guest
  video output works fine with both virt-viewer (over SPICE) and remmina
  (over RDP);

  3) With `prime-select nvidia` Xorg crashes as described in
  https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1862895

  ProblemType: Crash
  DistroRelease: Ubuntu 20.04
  Package: xserver-xorg-core 2:1.20.7-2ubuntu1
  ProcVersionSignature: Ubuntu 5.4.0-12.15-generic 5.4.8
  Uname: Linux 5.4.0-12-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair nvidia_modeset 
nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.suspend: suspend hibernate resume
  .proc.driver.nvidia.suspend_depth: default modeset uvm
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  440.59  Thu Jan 30 01:00:41 
UTC 2020
   GCC version:  gcc version 9.2.1 20200203 (Ubuntu 9.2.1-28ubuntu1)
  ApportVersion: 2.20.11-0ubuntu16
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Feb 13 20:16:07 2020
  DistUpgraded: 2020-02-09 15:34:46,903 DEBUG Running PostInstallScript: 
'./xorg_fix_proprietary.py'
  DistroCodename: focal
  DistroVariant: ubuntu
  DkmsStatus:
   fwts-efi-runtime-dkms, 20.01.00, 5.3.0-29-generic, x86_64: installed 
(WARNING! Diff between built and installed module!)
   fwts-efi-runtime-dkms, 20.01.00, 5.4.0-12-generic, x86_64: installed 
(WARNING! Diff between built and installed module!)
   nvidia, 440.59, 5.4.0-12-generic, x86_64: installed
  ExecutablePath: /usr/lib/xorg/Xorg
  ExecutableTimestamp: 1579009393
  GraphicsCard:
   Intel Corporation HD Graphics 630 [8086:591b] (rev 04) (prog-if 00 [VGA 
controller])
     Subsystem: Razer USA Ltd. HD Graphics 630 [1a58:6755]
   NVIDIA Corporation GP106M [GeForce GTX 1060 Mobile] [10de:1c20] (rev a1) 
(prog-if 00 [VGA controller])
     Subsystem: Razer USA Ltd. GP106M [GeForce GTX 1060 Mobile] [1a58:6755]
  InstallationDate: Installed on 2018-05-13 (641 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  MachineType: Razer Blade
  ProcCmdline: /usr/lib/xorg/Xorg vt2 -displayfd 3 -auth 
/run/user/1000/gdm/Xauthority -background none -noreset -keeptty -verbose 3
  ProcCwd: /home/dima
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.4.0-12-generic 
root=UUID=8c1115d9-2cee-41a9-864f-d4e57d662706 ro rootflags=subvol=@ 
button.lid_init_state=open amdgpu.dpm=1 amdgpu.ppfeaturemask=0x
  Signal: 6
  SourcePackage: nvidia-graphics-drivers
  StacktraceTop:
   System ()
   ()
   ()
   ()
    () at /lib/x86_64-linux-gnu/libpthread.so.0
  Title: Xorg crashed with SIGABRT in System()
  UpgradeStatus: Upgraded to focal on 2020-02-09 (4 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd microk8s plugdev sambashare sudo
  dmi.bios.date: 02/22/2018
  dmi.bios.vendor: Razer
  dmi.bios.version: 4.02
  dmi.board.name: Razer
  dmi.board.vendor: Razer
  dmi.chassis.type: 9
  dmi.chassis.vendor: Razer
  dmi.modalias: 
dmi:bvnRazer:bvr4.02:bd02/22/2018:svnRazer:pnBlade:pvr6.06:rvnRazer:rnRazer:rvr:cvnRazer:ct9:cvr:
  dmi.product.family: 1A586755
  dmi.product.name: Blade
  dmi.product.sku: RZ09-01953E72
  dmi.product.version: 6.06
  dmi.sys.vendor: Razer
  separator:

  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.100-4
  version.libgl1-mesa-dri: libgl1-mesa-dri 19.3.3-1ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx 19.3.3-1ubuntu1
  version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.7-2ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20190815-1
  version.xserver-xorg-video-nouveau: 

[Kernel-packages] [Bug 1879989] Re: "Failed to play sound: No such driver" ubuntu 20.04

2020-10-25 Thread Regern Faraja Otieno
Thanks Eric
libcanberra-pulse worked for me

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

Title:
  "Failed to play sound: No such driver"  ubuntu 20.04

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  my speakers- built in audio produces terrible sound
  I tested the speakers via settings/sound and there was no sound
  I checked gnome logs and found "Failed to play sound: No such driver"
  I checked online and it seams to be a problem that affects many users

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-31-generic 5.4.0-31.35
  ProcVersionSignature: Ubuntu 5.4.0-31.35-generic 5.4.34
  Uname: Linux 5.4.0-31-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  regern70802 F pulseaudio
   /dev/snd/pcmC0D0c:   regern70802 F...m pulseaudio
   /dev/snd/pcmC0D0p:   regern70802 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May 21 19:13:55 2020
  InstallationDate: Installed on 2020-05-16 (5 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: Dell Inc. Inspiron 15-3552
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-31-generic 
root=UUID=55652357-023b-4633-8d3a-46ce1a22d378 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-31-generic N/A
   linux-backports-modules-5.4.0-31-generic  N/A
   linux-firmware1.187
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/06/2018
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 4.4.0
  dmi.board.name: 079W3P
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A00
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: Not Specified
  dmi.modalias: 
dmi:bvnDellInc.:bvr4.4.0:bd03/06/2018:svnDellInc.:pnInspiron15-3552:pvr4.4.0:rvnDellInc.:rn079W3P:rvrA00:cvnDellInc.:ct8:cvrNotSpecified:
  dmi.product.family: Inspiron
  dmi.product.name: Inspiron 15-3552
  dmi.product.sku: 06AC
  dmi.product.version: 4.4.0
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1879989/+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 1807377] Re: i2c_hid i2c-ELAN2514:00: failed to change power setting.

2020-10-25 Thread Sumeet Kumar Mishra
I'm facing the same issue on my lenovo yoga slim 7i pc. I'm currently on
ubuntu 20.10 and have also tried 20.04 and 18.04 . Is there a fix to
this?

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

Title:
  i2c_hid i2c-ELAN2514:00: failed to change power setting.

Status in Linux:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  dmesg:
  [1.862577] i2c_hid i2c-ELAN2514:00: failed to change power setting.

  Best regards,
  --
  Cristian Aravena Romero (caravena)

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: linux-image-4.19.0-8-generic 4.19.0-8.9
  ProcVersionSignature: Ubuntu 4.19.0-8.9-generic 4.19.6
  Uname: Linux 4.19.0-8-generic x86_64
  ApportVersion: 2.20.10-0ubuntu14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   2769 F pulseaudio
   /dev/snd/pcmC0D0p:   caravena   2769 F...m pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Dec  7 08:35:57 2018
  HibernationDevice: RESUME=UUID=efcf081f-0bb0-4907-b78c-1299aa4aee57
  InstallationDate: Installed on 2018-12-02 (4 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: HP HP Pavilion x360 Convertible 14-cd0xxx
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.19.0-8-generic 
root=UUID=28bdadba-133c-4f5b-a5c9-b06993ea7ce2 ro rootflags=subvol=@ quiet 
splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-4.19.0-8-generic N/A
   linux-backports-modules-4.19.0-8-generic  N/A
   linux-firmware1.176
  SourcePackage: linux
  UpgradeStatus: Upgraded to disco on 2018-12-02 (4 days ago)
  dmi.bios.date: 06/14/2018
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.13
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 8486
  dmi.board.vendor: HP
  dmi.board.version: 72.19
  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.13:bd06/14/2018:svnHP:pnHPPavilionx360Convertible14-cd0xxx:pvrType1ProductConfigId:rvnHP:rn8486:rvr72.19: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/linux/+bug/1807377/+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 1807377] Re: i2c_hid i2c-ELAN2514:00: failed to change power setting.

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

** 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/1807377

Title:
  i2c_hid i2c-ELAN2514:00: failed to change power setting.

Status in Linux:
  Confirmed
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  dmesg:
  [1.862577] i2c_hid i2c-ELAN2514:00: failed to change power setting.

  Best regards,
  --
  Cristian Aravena Romero (caravena)

  ProblemType: Bug
  DistroRelease: Ubuntu 19.04
  Package: linux-image-4.19.0-8-generic 4.19.0-8.9
  ProcVersionSignature: Ubuntu 4.19.0-8.9-generic 4.19.6
  Uname: Linux 4.19.0-8-generic x86_64
  ApportVersion: 2.20.10-0ubuntu14
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  caravena   2769 F pulseaudio
   /dev/snd/pcmC0D0p:   caravena   2769 F...m pulseaudio
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Dec  7 08:35:57 2018
  HibernationDevice: RESUME=UUID=efcf081f-0bb0-4907-b78c-1299aa4aee57
  InstallationDate: Installed on 2018-12-02 (4 days ago)
  InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 
(20180725)
  MachineType: HP HP Pavilion x360 Convertible 14-cd0xxx
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/@/boot/vmlinuz-4.19.0-8-generic 
root=UUID=28bdadba-133c-4f5b-a5c9-b06993ea7ce2 ro rootflags=subvol=@ quiet 
splash vt.handoff=1
  RelatedPackageVersions:
   linux-restricted-modules-4.19.0-8-generic N/A
   linux-backports-modules-4.19.0-8-generic  N/A
   linux-firmware1.176
  SourcePackage: linux
  UpgradeStatus: Upgraded to disco on 2018-12-02 (4 days ago)
  dmi.bios.date: 06/14/2018
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.13
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 8486
  dmi.board.vendor: HP
  dmi.board.version: 72.19
  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.13:bd06/14/2018:svnHP:pnHPPavilionx360Convertible14-cd0xxx:pvrType1ProductConfigId:rvnHP:rn8486:rvr72.19: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/linux/+bug/1807377/+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 1426216] Re: pci driver messages - BAR 13: no space for

2020-10-25 Thread Luiz Carlos Maciel Franco
maybe usb 3.1 support is still upcoming

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

Title:
  pci driver messages - BAR 13: no space for

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  ---Problem Description---
  pci driver messages - BAR 13: no space for 

  ---uname output---
  3.18.0-12-generic
   
  Machine Type = POWER8 

  ---Steps to Reproduce---
  Install Ubuntu 15.04 daily build running bare-metal
  After the installation following messages are seen in dmesg. 
  Not sure if these indicate a problem. Can some one look at these and confirm 
if this is problem or can be ignored ?

  Messages from dmesg log

  [0.714476] pci_bus 0001:00: max bus depth: 3 pci_try_num: 4
  [0.714519] pci 0001:04:00.0: reg 0x16c: [mem 0x-0x 64bit]
  [0.714541] pci 0001:04:00.0: reg 0x174: [mem 0x-0x 64bit]
  [0.714577] pci 0001:00:00.0: BAR 15: assigned [mem 
0x3b101000-0x3b103fff 64bit pref]
  [0.714579] pci 0001:00:00.0: BAR 14: assigned [mem 
0x3fe08000-0x3fe081ff]
  [0.714581] pci 0001:00:00.0: BAR 13: no space for [io  size 0x3000]
  [0.714583] pci 0001:00:00.0: BAR 13: failed to assign [io  size 0x3000]
  [0.714586] pci 0001:01:00.0: BAR 15: assigned [mem 
0x3b101000-0x3b103fff 64bit pref]
  [0.714588] pci 0001:01:00.0: BAR 14: assigned [mem 
0x3fe08000-0x3fe0817f]
  [0.714590] pci 0001:01:00.0: BAR 0: assigned [mem 
0x3fe08180-0x3fe08183]
  [0.714595] pci 0001:01:00.0: BAR 13: no space for [io  size 0x3000]
  [0.714597] pci 0001:01:00.0: BAR 13: failed to assign [io  size 0x3000]
  [0.714600] pci 0001:02:01.0: BAR 15: assigned [mem 
0x3b101000-0x3b101fff 64bit pref]
  [0.714602] pci 0001:02:08.0: BAR 15: assigned [mem 
0x3b102000-0x3b102fff 64bit pref]
  [0.714604] pci 0001:02:09.0: BAR 15: assigned [mem 
0x3b103000-0x3b103fff 64bit pref]
  [0.714606] pci 0001:02:01.0: BAR 14: assigned [mem 
0x3fe08000-0x3fe0807f]
  [0.714608] pci 0001:02:08.0: BAR 14: assigned [mem 
0x3fe08080-0x3fe080ff]
  [0.714609] pci 0001:02:09.0: BAR 14: assigned [mem 
0x3fe08100-0x3fe0817f]
  [0.714611] pci 0001:02:01.0: BAR 13: no space for [io  size 0x1000]
  [0.714613] pci 0001:02:01.0: BAR 13: failed to assign [io  size 0x1000]
  [0.714614] pci 0001:02:08.0: BAR 13: no space for [io  size 0x1000]
  [0.714616] pci 0001:02:08.0: BAR 13: failed to assign [io  size 0x1000]
  [0.714618] pci 0001:02:09.0: BAR 13: no space for [io  size 0x1000]
  [0.714619] pci 0001:02:09.0: BAR 13: failed to assign [io  size 0x1000]
  [0.714622] pci 0001:03:00.0: BAR 6: assigned [mem 
0x3fe08000-0x3fe08003 pref]
  [0.714624] pci 0001:03:00.1: BAR 6: assigned [mem 
0x3fe08004-0x3fe08007 pref]
  [0.714627] pci 0001:03:00.0: BAR 2: assigned [mem 
0x3fe08008-0x3fe080083fff 64bit]
  [0.714641] pci 0001:03:00.1: BAR 2: assigned [mem 
0x3fe080084000-0x3fe080087fff 64bit]
  [0.714656] pci 0001:03:00.0: BAR 0: assigned [mem 
0x3fe080088000-0x3fe080088fff 64bit]
  [0.714670] pci 0001:03:00.1: BAR 0: assigned [mem 
0x3fe080089000-0x3fe080089fff 64bit]
  [0.714685] pci 0001:03:00.0: BAR 4: no space for [io  size 0x0100]
  [0.714686] pci 0001:03:00.0: BAR 4: failed to assign [io  size 0x0100]
  [0.714688] pci 0001:03:00.1: BAR 4: no space for [io  size 0x0100]
  [0.714690] pci 0001:03:00.1: BAR 4: failed to assign [io  size 0x0100]
  [0.714691] pci 0001:02:01.0: PCI bridge to [bus 03]

  # lspci 
  :00:00.0 PCI bridge: IBM Device 03dc
  0001:00:00.0 PCI bridge: IBM Device 03dc
  0001:01:00.0 PCI bridge: PLX Technology, Inc. PEX 8732 32-lane, 8-Port PCI 
Express Gen 3 (8.0 GT/s) Switch (rev ca)
  0001:02:01.0 PCI bridge: PLX Technology, Inc. PEX 8732 32-lane, 8-Port PCI 
Express Gen 3 (8.0 GT/s) Switch (rev ca)
  0001:02:08.0 PCI bridge: PLX Technology, Inc. PEX 8732 32-lane, 8-Port PCI 
Express Gen 3 (8.0 GT/s) Switch (rev ca)
  0001:02:09.0 PCI bridge: PLX Technology, Inc. PEX 8732 32-lane, 8-Port PCI 
Express Gen 3 (8.0 GT/s) Switch (rev ca)
  0001:03:00.0 Fibre Channel: Emulex Corporation Saturn-X: LightPulse Fibre 
Channel Host Adapter (rev 03)
  0001:03:00.1 Fibre Channel: Emulex Corporation Saturn-X: LightPulse Fibre 
Channel Host Adapter (rev 03)
  0001:04:00.0 RAID bus controller: IBM PCI-E IPR SAS Adapter (ASIC) (rev 01)
  0002:00:00.0 PCI bridge: IBM Device 03dc
  0003:00:00.0 PCI bridge: IBM Device 03dc
  0003:01:00.0 PCI bridge: PLX Technology, Inc. Device 8748 (rev ca)
  0003:02:01.0 PCI bridge: PLX Technology, Inc. Device 8748 (rev ca)
  0003:02:08.0 PCI bridge: PLX Technology, Inc. Device 8748 (rev ca)
  0003:02:09.0 PCI bridge: PLX Technology, Inc. Device 8748 (rev ca)
  0003:02:10.0 PCI bridge: PLX Technology, Inc. Device 8748 

[Kernel-packages] [Bug 1899678] Re: No wifi after installation - does not work with secure boot enabled

2020-10-25 Thread fossfreedom
Ok. It's been a long weekend after the release...

I dont see and lines on the sed output that match the modinfo wl.

Double checking dmesg the last lines say

Lockdown: modprobe: unsigned module loading is restricted; see man
kernel_lockdown.7

As a confirmation that the iso install  was ok I reinstalled both with
legacy mode and efi with non secure boot enabled and both times the
bcmwl wifi was ok after installation and lockdown.

So I dont really understand why ubiquity didn't sign the wl module.

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

Title:
  No wifi after installation - does not work with secure boot enabled

Status in bcmwl package in Ubuntu:
  New
Status in dkms package in Ubuntu:
  New
Status in shim-signed package in Ubuntu:
  New
Status in ubiquity package in Ubuntu:
  New

Bug description:
  After installation I noted that my broadcom wifi was not available.
  This is a regression from 20.04 where installation automatically
  installed the broadcom driver.

  So I tried to force the installation again - see trace below.

  The dialog message to enter the secure password appeared - however on
  reboot a confirmation to change the MOK state was not seen - the
  distro booted straight in.

  sudo apt install --reinstall bcmwl-kernel-source 
  [sudo] password for dad: 
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  0 to upgrade, 0 to newly install, 1 reinstalled, 0 to remove and 0 not to 
upgrade.
  Need to get 1,546 kB of archives.
  After this operation, 0 B of additional disk space will be used.
  Get:1 http://gb.archive.ubuntu.com/ubuntu groovy/restricted amd64 
bcmwl-kernel-source amd64 6.30.223.271+bdcom-0ubuntu7 [1,546 kB]
  Fetched 1,546 kB in 0s (5,232 kB/s)   
  (Reading database ... 202371 files and directories currently installed.)
  Preparing to unpack 
.../bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu7_amd64.deb ...
  Removing all DKMS Modules
  Done.
  Unpacking bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu7) over 
(6.30.223.271+bdcom-0ubuntu7) ...
  Setting up bcmwl-kernel-source (6.30.223.271+bdcom-0ubuntu7) ...
  Loading new bcmwl-6.30.223.271+bdcom DKMS files...
  Building for 5.8.0-22-generic
  Building for architecture x86_64
  Building initial module for 5.8.0-22-generic
  Done.

  wl.ko:
  Running module version sanity check.
   - Original module
 - No original module exists within this kernel
   - Installation
 - Installing to /lib/modules/5.8.0-22-generic/updates/dkms/

  depmod

  DKMS: install completed.
  modprobe: ERROR: could not insert 'wl': Operation not permitted
  update-initramfs: deferring update (trigger activated)
  Processing triggers for initramfs-tools (0.137ubuntu12) ...
  update-initramfs: Generating /boot/initrd.img-5.8.0-22-generic

  ProblemType: Bug
  DistroRelease: Ubuntu 20.10
  Package: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu7
  ProcVersionSignature: Ubuntu 5.8.0-22.23-generic 5.8.14
  Uname: Linux 5.8.0-22-generic x86_64
  ApportVersion: 2.20.11-0ubuntu49
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: Budgie:GNOME
  Date: Tue Oct 13 18:32:47 2020
  InstallationDate: Installed on 2020-10-13 (0 days ago)
  InstallationMedia: Ubuntu-Budgie 20.10 "Groovy Gorilla" - Beta amd64 
(20201013)
  SourcePackage: bcmwl
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bcmwl/+bug/1899678/+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 1901417] [NEW] zfs mount segmentation fault when target directory is non empty

2020-10-25 Thread Hadmut Danisch
Public bug reported:

Hi,

I just had made some mistake in a mounting order, thus producing non-
empty target directory.

Imagine a pool name pool1 and zfs filesystems pool1 and pool1/a  which
are (due to different encryption keys) to be mounted as

/pool1/a

one in another. (Because of encryption not automatically mounted)


I made a simple mistake and mounted /pool1/a before /pool1, but noticed and 
unmounted /pool1/a before mounting /pool1, but forget to rmdir /pool1/a, so 
/pool1 was not empty when mounting /pool1.


# zfs mount -a
cannot mount '/pool1': directory is not empty
zsh: segmentation fault (core dumped)  zfs mount -a


Segmentation faults should not happen.


after rmdir /pool1/a (i.e. make the target empty), things work as normal.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: zfsutils-linux 0.8.3-1ubuntu12.4
ProcVersionSignature: Ubuntu 5.4.0-48.52-generic 5.4.60
Uname: Linux 5.4.0-48-generic x86_64
NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
ApportVersion: 2.20.11-0ubuntu27.10
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: LXQt
Date: Sun Oct 25 15:28:45 2020
InstallationDate: Installed on 2018-04-30 (909 days ago)
InstallationMedia: Lubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
SourcePackage: zfs-linux
UpgradeStatus: Upgraded to focal on 2020-10-02 (23 days ago)
modified.conffile..etc.sudoers.d.zfs: [inaccessible: [Errno 13] Keine 
Berechtigung: '/etc/sudoers.d/zfs']

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


** Tags: amd64 apport-bug focal

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

Title:
  zfs mount segmentation fault when target directory is non empty

Status in zfs-linux package in Ubuntu:
  New

Bug description:
  Hi,

  I just had made some mistake in a mounting order, thus producing non-
  empty target directory.

  Imagine a pool name pool1 and zfs filesystems pool1 and pool1/a  which
  are (due to different encryption keys) to be mounted as

  /pool1/a

  one in another. (Because of encryption not automatically mounted)

  
  I made a simple mistake and mounted /pool1/a before /pool1, but noticed and 
unmounted /pool1/a before mounting /pool1, but forget to rmdir /pool1/a, so 
/pool1 was not empty when mounting /pool1.


  # zfs mount -a
  cannot mount '/pool1': directory is not empty
  zsh: segmentation fault (core dumped)  zfs mount -a


  Segmentation faults should not happen.

  
  after rmdir /pool1/a (i.e. make the target empty), things work as normal.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: zfsutils-linux 0.8.3-1ubuntu12.4
  ProcVersionSignature: Ubuntu 5.4.0-48.52-generic 5.4.60
  Uname: Linux 5.4.0-48-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: LXQt
  Date: Sun Oct 25 15:28:45 2020
  InstallationDate: Installed on 2018-04-30 (909 days ago)
  InstallationMedia: Lubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
  SourcePackage: zfs-linux
  UpgradeStatus: Upgraded to focal on 2020-10-02 (23 days ago)
  modified.conffile..etc.sudoers.d.zfs: [inaccessible: [Errno 13] Keine 
Berechtigung: '/etc/sudoers.d/zfs']

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/zfs-linux/+bug/1901417/+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 1882388] Re: Touchpad recognised as generic mouse

2020-10-25 Thread Fernando
```ùname -r```
5.4.0-48-generic

Issue still ongoing

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

Title:
  Touchpad recognised as generic mouse

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I've just re-installed 20.04 (dual boot/windows 10) on my Lenovo
  ideapadY700. My laptop recognises touchpad as mouse. I have no other
  mouse plugged.

  Touchpad firmware: 2ul001af
  Lenovo ideapad700-15ISK BIOS version: CDCN54WW

  I'm new in Ubuntu and I don't know much...

  ```$ uname -a```

  ```Linux nando-Lenovo 5.4.0-33-generic #37-Ubuntu SMP Thu May 21
  12:53:59 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux```

  ```$ dmesg | grep psmouse```

  ```[   30.218871] psmouse serio1: elantech: synaptics_send_cmd query 0x01 
failed.
  [   30.218879] psmouse serio1: elantech: failed to query firmware version.
  [  165.209816] psmouse serio1: Wheel Mouse at isa0060/serio1/input0 lost 
synchronization, throwing 2 bytes away.
  [  216.923481] psmouse serio1: Wheel Mouse at isa0060/serio1/input0 lost 
synchronization, throwing 2 bytes away.
  [  468.662298] psmouse serio1: Wheel Mouse at isa0060/serio1/input0 lost 
synchronization, throwing 2 bytes away.
  [  553.556484] psmouse serio1: Wheel Mouse at isa0060/serio1/input0 lost 
synchronization, throwing 2 bytes away.
  ```

  ```$ xinput```

  ```⎡ Virtual core pointer id=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎜   ↳ PS/2 Logitech Wheel Mouse   id=14   [slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
  ↳ Power Buttonid=6[slave  
keyboard (3)]
  ↳ Video Bus   id=7[slave  
keyboard (3)]
  ↳ Video Bus   id=8[slave  
keyboard (3)]
  ↳ Power Buttonid=9[slave  
keyboard (3)]
  ↳ Sleep Buttonid=10   [slave  
keyboard (3)]
  ↳ Lenovo EasyCamera: Lenovo EasyC id=11   [slave  
keyboard (3)]
  ↳ Ideapad extra buttons   id=12   [slave  
keyboard (3)]
  ↳ AT Translated Set 2 keyboardid=13   [slave  
keyboard (3)]
  ```

  ```$ cat /proc/bus/input/devices```

  ```I: Bus=0011 Vendor=0002 Product=0001 Version=0063
  N: Name="PS/2 Logitech Wheel Mouse"
  P: Phys=isa0060/serio1/input0
  S: Sysfs=/devices/platform/i8042/serio1/input/input19
  U: Uniq=
  H: Handlers=mouse0 event16
  B: PROP=1
  B: EV=7
  B: KEY=7 0 0 0 0
  B: REL=3
  ```
  I have read a lot of solutions; I tried to use xorg, but it didn't work.
  When I removed it, it worked for a day (only) and I decided erase and 
re-install Ubuntu.

  Please help!
  Thanks

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-33-generic 5.4.0-33.37
  ProcVersionSignature: Ubuntu 5.4.0-33.37-generic 5.4.34
  Uname: Linux 5.4.0-33-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nando  1137 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Sat Jun  6 20:24:24 2020
  InstallationDate: Installed on 2020-06-06 (0 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 002: ID 5986:0672 Acer, Inc Lenovo EasyCamera
   Bus 001 Device 003: ID 8087:0a2a Intel Corp.
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 80NV
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-33-generic 
root=UUID=eccd5181-f592-4fbf-a03f-3efbc86e693b ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-33-generic N/A
   linux-backports-modules-5.4.0-33-generic  N/A
   linux-firmware1.187
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/13/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: CDCN54WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: Allsparks 5A
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40709 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo ideapad Y700-15ISK
  dmi.modalias: 
dmi:bvnLENOVO:bvrCDCN54WW:bd06/13/2017:svnLENOVO:pn80NV:pvrLenovoideapadY700-15ISK:rvnLENOVO:rnAllsparks5A:rvrSDK0J40709WIN:cvnLENOVO:ct10:cvrLenovoideapadY700-15ISK:
  dmi.product.family: IDEAPAD
  

[Kernel-packages] [Bug 1901406] acpidump.txt

2020-10-25 Thread Henning Kulander
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/1901406/+attachment/5426922/+files/acpidump.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/1901406

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901406/+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 1901406] Re: Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

2020-10-25 Thread Henning Kulander
apport information

** Tags added: apport-collected groovy wayland-session

** Description changed:

  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.
  
  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active to
  grub, but that didn't help.
  
  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.
  
  CPU info from /proc/cpuinfo (with kernel 5.4):
  
  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu50
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  hennikul   2402 F pulseaudio
+  /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 20.10
+ InstallationDate: Installed on 2019-09-02 (418 days ago)
+ InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
+ MachineType: LENOVO 20N2CTO1WW
+ Package: linux (not installed)
+ ProcFB: 0 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
+ RelatedPackageVersions:
+  linux-restricted-modules-5.8.0-25-generic N/A
+  linux-backports-modules-5.8.0-25-generic  N/A
+  linux-firmware1.190
+ Tags:  groovy wayland-session
+ Uname: Linux 5.8.0-25-generic x86_64
+ UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
+ UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 01/19/2020
+ dmi.bios.release: 1.61
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: N2IET83W (1.61 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20N2CTO1WW
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0J40697 WIN
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: None
+ dmi.ec.firmware.release: 1.16
+ dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
+ dmi.product.family: ThinkPad T490
+ dmi.product.name: 20N2CTO1WW
+ dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
+ dmi.product.version: ThinkPad T490
+ dmi.sys.vendor: LENOVO

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was 

[Kernel-packages] [Bug 1901406] Lsusb-t.txt

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1901406/+attachment/5426912/+files/PaInfo.txt

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1901406/+attachment/5426915/+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/1901406

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

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

2020-10-25 Thread Henning Kulander
apport information

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901406/+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 1901406] Re: Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

2020-10-25 Thread Jouni Mettala
Could you test if this regression is fixed in mainline kernel?
https://wiki.ubuntu.com/Kernel/MainlineBuilds

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu50
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  hennikul   2402 F pulseaudio
   /dev/snd/pcmC0D0p:   hennikul   2402 F...m pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 20.10
  InstallationDate: Installed on 2019-09-02 (418 days ago)
  InstallationMedia: Ubuntu 19.04 "Disco Dingo" - Release amd64 (20190416)
  MachineType: LENOVO 20N2CTO1WW
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.8.0-25-generic 
root=UUID=a36f1344-fd6c-40ef-a397-57f5a57594df ro intel_pstate=active quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.8.0-25.26-generic 5.8.14
  RelatedPackageVersions:
   linux-restricted-modules-5.8.0-25-generic N/A
   linux-backports-modules-5.8.0-25-generic  N/A
   linux-firmware1.190
  Tags:  groovy wayland-session
  Uname: Linux 5.8.0-25-generic x86_64
  UpgradeStatus: Upgraded to groovy on 2020-10-23 (2 days ago)
  UserGroups: adm cdrom dip docker lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 01/19/2020
  dmi.bios.release: 1.61
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET83W (1.61 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N2CTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.16
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET83W(1.61):bd01/19/2020:br1.61:efr1.16:svnLENOVO:pn20N2CTO1WW:pvrThinkPadT490:rvnLENOVO:rn20N2CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T490
  dmi.product.name: 20N2CTO1WW
  dmi.product.sku: LENOVO_MT_20N2_BU_Think_FM_ThinkPad T490
  dmi.product.version: ThinkPad T490
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901406/+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 1891773] Re: kcompactd0 and btrfs-transaction keep deadlocking with each other

2020-10-25 Thread Bogdan Mart
Have same issue:

[ 2538.464378] INFO: task kcompactd0:27 blocked for more than 120 seconds.
[ 2538.466729]   Not tainted 4.15.0-122-generic #124-Ubuntu
[ 2538.468652] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
[ 2538.471451] kcompactd0  D027  2 0x8000
[ 2538.471453] Call Trace:
[ 2538.471462]  __schedule+0x24e/0x880
[ 2538.471464]  schedule+0x2c/0x80
[ 2538.471466]  io_schedule+0x16/0x40
[ 2538.471468]  __lock_page+0xff/0x140
[ 2538.471472]  ? page_cache_tree_insert+0xe0/0xe0
[ 2538.471476]  migrate_pages+0x91f/0xb80
[ 2538.471479]  ? __ClearPageMovable+0x10/0x10
[ 2538.471482]  ? isolate_freepages_block+0x3b0/0x3b0
[ 2538.471484]  compact_zone+0x681/0x950
[ 2538.471486]  kcompactd_do_work+0xfe/0x2a0
[ 2538.471489]  ? __switch_to_asm+0x35/0x70
[ 2538.471491]  ? __switch_to_asm+0x41/0x70
[ 2538.471494]  kcompactd+0x86/0x1c0
[ 2538.471495]  ? kcompactd+0x86/0x1c0
[ 2538.471499]  ? wait_woken+0x80/0x80
[ 2538.471502]  kthread+0x121/0x140
[ 2538.471504]  ? kcompactd_do_work+0x2a0/0x2a0
[ 2538.471506]  ? kthread_create_worker_on_cpu+0x70/0x70
[ 2538.471508]  ret_from_fork+0x35/0x40

Kernel: 4.15.120

few days before it was hanging inside btrfs:
[12688.280246] INFO: task btrfs-transacti:597 blocked for more than 120 seconds.
[12688.285589]   Not tainted 4.15.0-122-generic #124-Ubuntu
[12688.292217] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
[12688.305038] btrfs-transacti D0   597  2 0x8000
[12688.305042] Call Trace:
[12688.305054]  __schedule+0x24e/0x880
[12688.305058]  ? bit_wait+0x60/0x60
[12688.305059]  schedule+0x2c/0x80
[12688.305061]  io_schedule+0x16/0x40
[12688.305063]  bit_wait_io+0x11/0x60
[12688.305065]  __wait_on_bit+0x4c/0x90
[12688.305067]  ? bit_wait+0x60/0x60
[12688.305068]  out_of_line_wait_on_bit+0x90/0xb0
[12688.305075]  ? bit_waitqueue+0x40/0x40
[12688.305116]  lock_extent_buffer_for_io+0x100/0x2a0 [btrfs]
[12688.305136]  btree_write_cache_pages+0x1b8/0x420 [btrfs]
[12688.305153]  btree_writepages+0x5d/0x70 [btrfs]
[12688.305156]  do_writepages+0x4b/0xe0
[12688.305174]  ? free_extent_state+0x48/0xc0 [btrfs]
[12688.305188]  ? merge_state.part.47+0x44/0x130 [btrfs]
[12688.305191]  __filemap_fdatawrite_range+0xcf/0x100
[12688.305193]  ? __filemap_fdatawrite_range+0xcf/0x100
[12688.305195]  filemap_fdatawrite_range+0x13/0x20
[12688.305211]  btrfs_write_marked_extents+0x68/0x140 [btrfs]
[12688.305226]  btrfs_write_and_wait_marked_extents.constprop.20+0x4f/0x90 
[btrfs]
[12688.305241]  btrfs_commit_transaction+0x696/0x910 [btrfs]
[12688.305255]  ? btrfs_commit_transaction+0x696/0x910 [btrfs]
[12688.305268]  ? start_transaction+0x191/0x430 [btrfs]
[12688.305283]  transaction_kthread+0x18d/0x1b0 [btrfs]
[12688.305286]  kthread+0x121/0x140
[12688.305300]  ? btrfs_cleanup_transaction+0x570/0x570 [btrfs]
[12688.305302]  ? kthread_create_worker_on_cpu+0x70/0x70
[12688.305305]  ret_from_fork+0x35/0x40
[12688.305320] INFO: task postgres:1121 blocked for more than 120 seconds.
[12688.311393]   Not tainted 4.15.0-122-generic #124-Ubuntu
[12688.314307] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this 
message.
[12688.326485] postgresD0  1121   1101 0x
[12688.326490] Call Trace:
[12688.326502]  __schedule+0x24e/0x880
[12688.326509]  ? lookup_fast+0xcc/0x320
[12688.326512]  schedule+0x2c/0x80
[12688.326516]  schedule_preempt_disabled+0xe/0x10
[12688.326518]  __mutex_lock.isra.5+0x276/0x4e0
[12688.326522]  ? find_get_pages_range_tag+0x151/0x270
[12688.326524]  __mutex_lock_slowpath+0x13/0x20
[12688.326526]  ? __mutex_lock_slowpath+0x13/0x20
[12688.326528]  mutex_lock+0x2f/0x40
[12688.326583]  btrfs_log_inode_parent+0x17a/0xa80 [btrfs]
[12688.326585]  ? __filemap_fdatawait_range+0x95/0x170
[12688.326587]  ? __filemap_fdatawrite_range+0x50/0x100
[12688.326606]  ? wait_current_trans+0x33/0x110 [btrfs]
[12688.326608]  ? _cond_resched+0x19/0x40
[12688.326623]  ? join_transaction+0x27/0x420 [btrfs]
[12688.326641]  btrfs_log_dentry_safe+0x60/0x80 [btrfs]
[12688.326659]  btrfs_sync_file+0x375/0x530 [btrfs]
[12688.326667]  vfs_fsync_range+0x51/0xb0
[12688.326670]  do_fsync+0x3d/0x70
[12688.326672]  SyS_fsync+0x10/0x20
[12688.326677]  do_syscall_64+0x73/0x130
[12688.326681]  entry_SYSCALL_64_after_hwframe+0x41/0xa6
[12688.326683] RIP: 0033:0x7f2f790e5af1
[12688.326684] RSP: 002b:7fffb2bbb6f8 EFLAGS: 0246 ORIG_RAX: 
004a
[12688.326686] RAX: ffda RBX: 564356da18f0 RCX: 7f2f790e5af1
[12688.326687] RDX: 7f2f6e9d26a0 RSI: 0a0e RDI: 0044
[12688.326688] RBP: 7fffb2bbb710 R08: 7fffb2bd2000 R09: 0c80c0ae158d
[12688.326689] R10: 7fffb2bbb700 R11: 0246 R12: 0a0e
[12688.326690] R13: 0008 R14: 564356d93db0 R15: 564356d83bb8
[19487.948941] SGI XFS with ACLs, security attributes, realtime, no debug 
enabled

can upload kernel dump. Workload was postgres. It repeasts 

[Kernel-packages] [Bug 1891773] Re: kcompactd0 and btrfs-transaction keep deadlocking with each other

2020-10-25 Thread Bogdan Mart
attch dmesg

** Attachment added: "dmesg.202010251058"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1891773/+attachment/5426902/+files/dmesg.202010251058

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

Title:
  kcompactd0 and btrfs-transaction keep deadlocking with each other

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Example 1:
  [346911.187920] INFO: task kcompactd0:53 blocked for more than 120 seconds.
  [346911.187938]   Not tainted 4.15.0-112-generic #113-Ubuntu
  [346911.187951] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables 
this message.
  [346911.187968] kcompactd0  D053  2 0x8000
  [346911.187969] Call Trace:
  [346911.187973]  __schedule+0x24e/0x880
  [346911.187986]  ? btree_releasepage+0x42/0x50 [btrfs]
  [346911.187987]  schedule+0x2c/0x80
  [346911.187988]  io_schedule+0x16/0x40
  [346911.187989]  __lock_page+0xff/0x140
  [346911.187990]  ? page_cache_tree_insert+0xe0/0xe0
  [346911.187992]  migrate_pages+0x91f/0xb80
  [346911.187993]  ? __ClearPageMovable+0x10/0x10
  [346911.187994]  ? isolate_freepages_block+0x3b0/0x3b0
  [346911.187995]  compact_zone+0x681/0x950
  [346911.187995]  kcompactd_do_work+0xfe/0x2a0
  [346911.187996]  ? __switch_to_asm+0x35/0x70
  [346911.187997]  ? __switch_to_asm+0x41/0x70
  [346911.187998]  kcompactd+0x86/0x1c0
  [346911.187999]  ? kcompactd+0x86/0x1c0
  [346911.188001]  ? wait_woken+0x80/0x80
  [346911.188002]  kthread+0x121/0x140
  [346911.188003]  ? kcompactd_do_work+0x2a0/0x2a0
  [346911.188003]  ? kthread_create_worker_on_cpu+0x70/0x70
  [346911.188004]  ret_from_fork+0x35/0x40

  [346911.188015] INFO: task btrfs-transacti:858 blocked for more than 120 
seconds.
  [346911.188031]   Not tainted 4.15.0-112-generic #113-Ubuntu
  [346911.188043] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables 
this message.
  [346911.188060] btrfs-transacti D0   858  2 0x8000
  [346911.188061] Call Trace:
  [346911.188062]  __schedule+0x24e/0x880
  [346911.188063]  ? bit_wait+0x60/0x60
  [346911.188063]  schedule+0x2c/0x80
  [346911.188064]  io_schedule+0x16/0x40
  [346911.188065]  bit_wait_io+0x11/0x60
  [346911.188066]  __wait_on_bit+0x4c/0x90
  [346911.188066]  ? bit_wait+0x60/0x60
  [346911.188067]  out_of_line_wait_on_bit+0x90/0xb0
  [346911.188068]  ? bit_waitqueue+0x40/0x40
  [346911.188080]  lock_extent_buffer_for_io+0x100/0x2a0 [btrfs]
  [346911.188090]  btree_write_cache_pages+0x1b8/0x420 [btrfs]
  [346911.188092]  ? native_sched_clock_from_tsc+0x30/0x70
  [346911.188092]  ? update_load_avg+0x423/0x780
  [346911.188101]  btree_writepages+0x5d/0x70 [btrfs]
  [346911.188102]  do_writepages+0x4b/0xe0
  [346911.188102]  ? enqueue_task_fair+0xb6/0x300
  [346911.188111]  ? merge_state.part.47+0x44/0x130 [btrfs]
  [346911.188112]  __filemap_fdatawrite_range+0xcf/0x100
  [346911.188113]  ? __filemap_fdatawrite_range+0xcf/0x100
  [346911.188114]  filemap_fdatawrite_range+0x13/0x20
  [346911.188122]  btrfs_write_marked_extents+0x68/0x140 [btrfs]
  [346911.188129]  btrfs_write_and_wait_marked_extents.constprop.20+0x4f/0x90 
[btrfs]
  [346911.188136]  btrfs_commit_transaction+0x696/0x910 [btrfs]
  [346911.188143]  ? btrfs_commit_transaction+0x696/0x910 [btrfs]
  [346911.188144]  ? wait_woken+0x80/0x80
  [346911.188151]  transaction_kthread+0x18d/0x1b0 [btrfs]
  [346911.188152]  kthread+0x121/0x140
  [346911.188158]  ? btrfs_cleanup_transaction+0x570/0x570 [btrfs]
  [346911.188159]  ? kthread_create_worker_on_cpu+0x70/0x70
  [346911.188160]  ret_from_fork+0x35/0x40

  Example 2:
  2020-08-11T20:23:03.533+01:00  kernel: INFO: task kcompactd0:53 blocked 
for more than 120 seconds.
  2020-08-11T20:23:03.533+01:00  kernel:   Not tainted 
4.15.0-112-generic #113-Ubuntu
  2020-08-11T20:23:03.533+01:00  kernel: "echo 0 > 
/proc/sys/kernel/hung_task_timeout_secs" disables this message.
  2020-08-11T20:23:03.533+01:00  kernel: kcompactd0  D053 
 2 0x8000
  2020-08-11T20:23:03.533+01:00  kernel: Call Trace:
  2020-08-11T20:23:03.533+01:00  kernel:  __schedule+0x24e/0x880
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
btree_releasepage+0x42/0x50 [btrfs]
  2020-08-11T20:23:03.533+01:00  kernel:  schedule+0x2c/0x80
  2020-08-11T20:23:03.533+01:00  kernel:  io_schedule+0x16/0x40
  2020-08-11T20:23:03.533+01:00  kernel:  __lock_page+0xff/0x140
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
page_cache_tree_insert+0xe0/0xe0
  2020-08-11T20:23:03.533+01:00  kernel:  migrate_pages+0x91f/0xb80
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
__ClearPageMovable+0x10/0x10
  2020-08-11T20:23:03.533+01:00  kernel:  ? 
isolate_freepages_block+0x3b0/0x3b0
  2020-08-11T20:23:03.533+01:00  kernel:  compact_zone+0x681/0x950
  2020-08-11T20:23:03.533+01:00  kernel:  kcompactd_do_work+0xfe/0x2a0
  2020-08-11T20:23:03.533+01:00  kernel:  ? __switch_to_asm+0x35/0x70
  

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

2020-10-25 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 1901406

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

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901406/+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 1901406] [NEW] Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

2020-10-25 Thread Henning Kulander
Public bug reported:

After upgrading from 20.04 to 20.20 on my laptop, the machine became
extremely slow. After a days work I noticed that it never got any
faster, and the machine was a lot colder than usual. Running cat
/proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
was locked to 400Mhz.

After some googling I found reports of people having trouble with CPU
frequency governors on kernel 5.8. I tried to add intel_pstate=active to
grub, but that didn't help.

My short term workaround is to choose the old 5.4 kernel from 20.04.
With this kernel everything is snappy again! Currently it's running at
3.2 Ghz with little load.

CPU info from /proc/cpuinfo (with kernel 5.4):

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 142
model name  : Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
stepping: 12
microcode   : 0xd6
cpu MHz : 4551.153
cache size  : 8192 KB
physical id : 0
siblings: 8
core id : 0
cpu cores   : 4
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 22
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
bugs: spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
bogomips: 4199.88
clflush size: 64
cache_alignment : 64
address sizes   : 39 bits physical, 48 bits virtual
power management:

** 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/1901406

Title:
  Lenovo T490 extremely show with Ubuntu 20.20 running kernel 5.8

Status in linux package in Ubuntu:
  New

Bug description:
  After upgrading from 20.04 to 20.20 on my laptop, the machine became
  extremely slow. After a days work I noticed that it never got any
  faster, and the machine was a lot colder than usual. Running cat
  /proc/cpuinfo and sudo cpupower frequency-info I noticed that the CPU
  was locked to 400Mhz.

  After some googling I found reports of people having trouble with CPU
  frequency governors on kernel 5.8. I tried to add intel_pstate=active
  to grub, but that didn't help.

  My short term workaround is to choose the old 5.4 kernel from 20.04.
  With this kernel everything is snappy again! Currently it's running at
  3.2 Ghz with little load.

  CPU info from /proc/cpuinfo (with kernel 5.4):

  processor : 0
  vendor_id : GenuineIntel
  cpu family: 6
  model : 142
  model name: Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz
  stepping  : 12
  microcode : 0xd6
  cpu MHz   : 4551.153
  cache size: 8192 KB
  physical id   : 0
  siblings  : 8
  core id   : 0
  cpu cores : 4
  apicid: 0
  initial apicid: 0
  fpu   : yes
  fpu_exception : yes
  cpuid level   : 22
  wp: yes
  flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb 
rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology 
nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est 
tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt 
tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch 
cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow 
vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves 
dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear 
flush_l1d arch_capabilities
  bugs  : spectre_v1 spectre_v2 spec_store_bypass swapgs taa 
itlb_multihit srbds
  bogomips  : 4199.88
  clflush size  : 64
  cache_alignment   : 64
  address sizes : 39 bits physical, 48 bits virtual
  power management:

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

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

[Kernel-packages] [Bug 1901401] Re: SD card does not work on linux, but window (O2Micro)

2020-10-25 Thread DarkTrick
** Attachment added: "PaInfo.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426900/+files/PaInfo.txt

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

Title:
  SD card does not work on linux, but window (O2Micro)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I try to use a micro SD card (256GB, connected via microSD-to-SD
  adapter) on my laptop.

  I could not ... 
   - ...mount my (micro) SD card
   - ...format with gparted
   - ...format with "disks"

  disks error:
  ---
  Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)

  
  gparted error:
  ---
  "Input/output error during read on /dev/mmcblk0"

  
  `lspci -nn` shows:
  ---
  SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)

  
  Output of `journalctl -f` when inserting
  -
  10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
  10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
  10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read 
failed.
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
  10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
  10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine 
failed to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
   

  
  I tried:
  -
  - Another micoSD-SD adapter: No change
  - Rebooting: No change


  I can do:
  ---
  - Use the card under Win 10: Same reader, same adapter, same card
  - Use other SD/microSD cards with the same reader under Linux


  lsb_release -rd
  --
  Description:  Ubuntu 20.04
  Release:  20.04

  and

  Description:  Ubuntu 20.10
  Release:  20.10


  digging in `journalctl -b 0`
  ---
  xhci_hcd :00:14.0: xHCI Host Controller
  xhci_hcd :00:14.0: new USB bus registered, assigned bus number 2
  xhci_hcd :00:14.0: Host supports USB 3.0 SuperSpeed
  usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
  usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  usb usb2: Product: xHCI Host Controller
  usb usb2: Manufacturer: Linux 5.8.0-25-generic xhci-hcd
  usb usb2: SerialNumber: :00:14.0
  hub 

[Kernel-packages] [Bug 1901401] Re: SD card does not work on linux, but window (O2Micro)

2020-10-25 Thread DarkTrick
** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426898/+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/1901401

Title:
  SD card does not work on linux, but window (O2Micro)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I try to use a micro SD card (256GB, connected via microSD-to-SD
  adapter) on my laptop.

  I could not ... 
   - ...mount my (micro) SD card
   - ...format with gparted
   - ...format with "disks"

  disks error:
  ---
  Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)

  
  gparted error:
  ---
  "Input/output error during read on /dev/mmcblk0"

  
  `lspci -nn` shows:
  ---
  SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)

  
  Output of `journalctl -f` when inserting
  -
  10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
  10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
  10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read 
failed.
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
  10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
  10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine 
failed to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
   

  
  I tried:
  -
  - Another micoSD-SD adapter: No change
  - Rebooting: No change


  I can do:
  ---
  - Use the card under Win 10: Same reader, same adapter, same card
  - Use other SD/microSD cards with the same reader under Linux


  lsb_release -rd
  --
  Description:  Ubuntu 20.04
  Release:  20.04

  and

  Description:  Ubuntu 20.10
  Release:  20.10


  digging in `journalctl -b 0`
  ---
  xhci_hcd :00:14.0: xHCI Host Controller
  xhci_hcd :00:14.0: new USB bus registered, assigned bus number 2
  xhci_hcd :00:14.0: Host supports USB 3.0 SuperSpeed
  usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
  usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  usb usb2: Product: xHCI Host Controller
  usb usb2: Manufacturer: Linux 5.8.0-25-generic xhci-hcd
  usb usb2: SerialNumber: :00:14.0
  

[Kernel-packages] [Bug 1901401] Re: SD card does not work on linux, but window (O2Micro)

2020-10-25 Thread DarkTrick
** Attachment added: "PulseList.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426899/+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/1901401

Title:
  SD card does not work on linux, but window (O2Micro)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I try to use a micro SD card (256GB, connected via microSD-to-SD
  adapter) on my laptop.

  I could not ... 
   - ...mount my (micro) SD card
   - ...format with gparted
   - ...format with "disks"

  disks error:
  ---
  Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)

  
  gparted error:
  ---
  "Input/output error during read on /dev/mmcblk0"

  
  `lspci -nn` shows:
  ---
  SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)

  
  Output of `journalctl -f` when inserting
  -
  10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
  10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
  10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read 
failed.
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
  10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
  10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine 
failed to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
   

  
  I tried:
  -
  - Another micoSD-SD adapter: No change
  - Rebooting: No change


  I can do:
  ---
  - Use the card under Win 10: Same reader, same adapter, same card
  - Use other SD/microSD cards with the same reader under Linux


  lsb_release -rd
  --
  Description:  Ubuntu 20.04
  Release:  20.04

  and

  Description:  Ubuntu 20.10
  Release:  20.10


  digging in `journalctl -b 0`
  ---
  xhci_hcd :00:14.0: xHCI Host Controller
  xhci_hcd :00:14.0: new USB bus registered, assigned bus number 2
  xhci_hcd :00:14.0: Host supports USB 3.0 SuperSpeed
  usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
  usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  usb usb2: Product: xHCI Host Controller
  usb usb2: Manufacturer: Linux 5.8.0-25-generic xhci-hcd
  usb usb2: SerialNumber: :00:14.0
  hub 

[Kernel-packages] [Bug 1901401] Re: SD card does not work on linux, but window (O2Micro)

2020-10-25 Thread DarkTrick
** Attachment removed: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426862/+files/CurrentDmesg.txt

** Attachment removed: "PaInfo.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426870/+files/PaInfo.txt

** Attachment removed: "PulseList.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426876/+files/PulseList.txt

** Attachment removed: "WifiSyslog.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426880/+files/WifiSyslog.txt

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1901401/+attachment/5426889/+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/1901401

Title:
  SD card does not work on linux, but window (O2Micro)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I try to use a micro SD card (256GB, connected via microSD-to-SD
  adapter) on my laptop.

  I could not ... 
   - ...mount my (micro) SD card
   - ...format with gparted
   - ...format with "disks"

  disks error:
  ---
  Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)

  
  gparted error:
  ---
  "Input/output error during read on /dev/mmcblk0"

  
  `lspci -nn` shows:
  ---
  SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)

  
  Output of `journalctl -f` when inserting
  -
  10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
  10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
  10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read 
failed.
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
  10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
  10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine 
failed to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
   

  
  I tried:
  -
  - Another micoSD-SD adapter: No change
  - Rebooting: No change


  I can do:
  ---
  - Use the card under Win 10: Same reader, same adapter, same card
  - Use other SD/microSD cards with the same reader under Linux


  lsb_release -rd
  --
  Description:  Ubuntu 20.04
  Release:  20.04

  

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

2020-10-25 Thread Ubuntu Kernel Bot
This change was made by a bot.

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

** 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/1901401

Title:
  SD card does not work on linux, but window (O2Micro)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I try to use a micro SD card (256GB, connected via microSD-to-SD
  adapter) on my laptop.

  I could not ... 
   - ...mount my (micro) SD card
   - ...format with gparted
   - ...format with "disks"

  disks error:
  ---
  Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)

  
  gparted error:
  ---
  "Input/output error during read on /dev/mmcblk0"

  
  `lspci -nn` shows:
  ---
  SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)

  
  Output of `journalctl -f` when inserting
  -
  10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
  10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
  10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read 
failed.
  10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
  10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
  10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
  10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
  10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine 
failed to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
   

  
  I tried:
  -
  - Another micoSD-SD adapter: No change
  - Rebooting: No change


  I can do:
  ---
  - Use the card under Win 10: Same reader, same adapter, same card
  - Use other SD/microSD cards with the same reader under Linux


  lsb_release -rd
  --
  Description:  Ubuntu 20.04
  Release:  20.04

  and

  Description:  Ubuntu 20.10
  Release:  20.10


  digging in `journalctl -b 0`
  ---
  xhci_hcd :00:14.0: xHCI Host Controller
  xhci_hcd :00:14.0: new USB bus registered, assigned bus number 2
  xhci_hcd :00:14.0: Host supports USB 3.0 SuperSpeed
  usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
  usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
  usb usb2: Product: xHCI Host Controller
  usb usb2: Manufacturer: Linux 5.8.0-25-generic xhci-hcd
  usb usb2: SerialNumber: :00:14.0
  hub 2-0:1.0: USB hub found
  

[Kernel-packages] [Bug 1901401] [NEW] SD card does not work on linux, but window (O2Micro)

2020-10-25 Thread DarkTrick
Public bug reported:

I try to use a micro SD card (256GB, connected via microSD-to-SD
adapter) on my laptop.

I could not ... 
 - ...mount my (micro) SD card
 - ...format with gparted
 - ...format with "disks"

disks error:
---
Error wiping device: failed to probe the device "/dev/mmcblk0" (udisks 
error-quark,0)


gparted error:
---
"Input/output error during read on /dev/mmcblk0"


`lspci -nn` shows:
---
SD Host controller [0805]: O2 Micro, Inc. SD/MMC Card Reader Controller 
[1217:8520] (rev 01)


Output of `journalctl -f` when inserting
-
10月 25 20:21:08 myuser kernel: mmc0: new ultra high speed SDR104 SDXC card at 
address 59b4
10月 25 20:21:08 myuser kernel: mmcblk0: mmc0:59b4 EE4S5 239 GiB 
10月 25 20:21:08 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:08 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:09 myuser kernel: ldm_validate_partition_table(): Disk read failed.
10月 25 20:21:09 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:09 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:10 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:10 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:10 myuser kernel: Dev mmcblk0: unable to read RDB block 0
10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
0, async page read
10月 25 20:21:11 myuser kernel: blk_update_request: I/O error, dev mmcblk0, 
sector 24 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
10月 25 20:21:11 myuser kernel: Buffer I/O error on dev mmcblk0, logical block 
3, async page read
10月 25 20:21:12 myuser kernel:  mmcblk0: unable to read partition table
10月 25 20:21:13 myuser fwupd[19538]: 11:21:13:0166 FuEngine failed 
to add udev device 
/sys/devices/pci:00/:00:1d.0/:03:00.0/mmc_host/mmc0/mmc0:59b4/block/mmcblk0:
 failed get ffu_capable for (null)
 


I tried:
-
- Another micoSD-SD adapter: No change
- Rebooting: No change


I can do:
---
- Use the card under Win 10: Same reader, same adapter, same card
- Use other SD/microSD cards with the same reader under Linux


lsb_release -rd
--
Description:Ubuntu 20.04
Release:20.04

and

Description:Ubuntu 20.10
Release:20.10


digging in `journalctl -b 0`
---
xhci_hcd :00:14.0: xHCI Host Controller
xhci_hcd :00:14.0: new USB bus registered, assigned bus number 2
xhci_hcd :00:14.0: Host supports USB 3.0 SuperSpeed
usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb2: Product: xHCI Host Controller
usb usb2: Manufacturer: Linux 5.8.0-25-generic xhci-hcd
usb usb2: SerialNumber: :00:14.0
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
sdhci-pci :03:00.0: SDHCI controller found [1217:8520] (rev 1)
mmc0: SDHCI controller on PCI [:03:00.0] using ADMA
i2c i2c-1: 2/2 memory slots populated (from DMI)
intel-lpss :00:15.3: enabling device ( -> 0002)
idma64 idma64.2: Found Intel integrated DMA 64-bit
e1000e :00:1f.6 :00:1f.6 (uninitialized): registered PHC clock
e1000e :00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) a0:66:10:00:ae:e0
e1000e :00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
mmc0: new 

[Kernel-packages] [Bug 1901386] Lsusb-v.txt

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/1901386/+attachment/5426829/+files/acpidump.txt

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1901386/+attachment/5426823/+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/1901386

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

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

2020-10-25 Thread SA
apport information

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   linux-backports-modules-5.4.0-52-generic  N/A
   linux-firmware1.187.3
  RfKill:
   
  Tags:  focal
  Uname: Linux 5.4.0-52-generic x86_64
  UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
  UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 04/27/2013
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 9505
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P9X79 LE
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: P55265
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: P9X79 LE
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: OEGStone

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1901386/+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 1901386] Re: no sound after resume

2020-10-25 Thread SA
apport information

** Tags added: apport-collected focal

** Description changed:

  Kubuntu 20.04.
  
  Sound via HDMI
  
  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output is
  via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is restored.
  
- According to the GUI tools the sound output is set to HDMI and I can
- restore it by selecting any other device and then reselecting the HDMI
- device or I can issue pulseaudio -k
+ According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.10
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC2:  matt  251446 F pulseaudio
+  /dev/snd/controlC0:  matt  251446 F pulseaudio
+  /dev/snd/controlC1:  matt  251446 F pulseaudio
+ CasperMD5CheckResult: skip
+ CurrentDesktop: KDE
+ DistroRelease: Ubuntu 20.04
+ HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
+ InstallationDate: Installed on 2017-03-26 (1308 days ago)
+ InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
+ IwConfig:
+  eth0  no wireless extensions.
+  
+  lono wireless extensions.
+ MachineType: OEGStone P9X79 LE
+ NonfreeKernelModules: nvidia_modeset nvidia
+ Package: linux (not installed)
+ ProcFB: 0 EFI VGA
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
+ RelatedPackageVersions:
+  linux-restricted-modules-5.4.0-52-generic N/A
+  linux-backports-modules-5.4.0-52-generic  N/A
+  linux-firmware1.187.3
+ RfKill:
+  
+ Tags:  focal
+ Uname: Linux 5.4.0-52-generic x86_64
+ UpgradeStatus: Upgraded to focal on 2020-10-08 (16 days ago)
+ UserGroups: adm cdrom davfs2 dialout dip lpadmin plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 04/27/2013
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 9505
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: P9X79 LE
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: P55265
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Chassis Manufacture
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr9505:bd04/27/2013:svnOEGStone:pnP9X79LE:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP9X79LE:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
+ dmi.product.family: To be filled by O.E.M.
+ dmi.product.name: P9X79 LE
+ dmi.product.sku: SKU
+ dmi.product.version: System Version
+ dmi.sys.vendor: OEGStone

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can restore 
it by selecting any other device and then reselecting the HDMI device or I can 
issue pulseaudio -k
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.10
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  matt  251446 F pulseaudio
   /dev/snd/controlC0:  matt  251446 F pulseaudio
   /dev/snd/controlC1:  matt  251446 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 20.04
  HibernationDevice: RESUME=UUID=62403e23-e81d-4613-8577-1b877e39af15
  InstallationDate: Installed on 2017-03-26 (1308 days ago)
  InstallationMedia: Kubuntu 16.10 "Yakkety Yak" - Release amd64 (20161012.1)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: OEGStone P9X79 LE
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-52-generic 
root=UUID=ff7bec03-4455-407f-bfe3-b81fd24caf87 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.4.0-52.57-generic 5.4.65
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-52-generic N/A
   

[Kernel-packages] [Bug 1887190] Re: MSFT Touchpad not working on Lenovo Legion-5 15ARH05

2020-10-25 Thread Emre Akbulut
Thank you @Coiby Xu (coiby) and Von (straeker) and everyone else for
your work. The standalone patch #217 is working perfectly on a fresh
Ubuntu 20.10, installed with secure boot (5.8.0-25-generic). No suspend
problems.

@PEDRO PORTO BUARQUE DE GUSMAO (pedropgusmao), Piotr Tomaszewski
(nfm886): To make the module work under secure boot, the module needs to
be signed first before inserting. Just skip the signing if you don't use
secure boot but don't want to rebuild the whole kernel:

- Download the standalone module from #217

- Install "build-essential" package (if it is missing) which is needed to build 
the module:
$ sudo apt install build-essential 

- "make" the module as in #211

- Sign the module before inserting:
$ kmodsign sha512 \
/var/lib/shim-signed/mok/MOK.priv \
/var/lib/shim-signed/mok/MOK.der \
i2c-hid.ko

- Insert and copy the module and update grub and initramfs as in #228

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

Title:
  MSFT Touchpad not working on Lenovo Legion-5 15ARH05

Status in Pop!_OS:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in xserver-xorg-input-libinput package in Ubuntu:
  Confirmed
Status in linux package in Arch Linux:
  Fix Committed
Status in linux package in Fedora:
  Confirmed
Status in linux package in openSUSE:
  New

Bug description:
  Hello

  The MSFT touchpad of this Lenovo Legion-5 15ARH05 laptop is not reacting at 
all (pointer and click never move when touchpad is touched). This has been 
reported by other users in various websites, with various linux systems 
including other Ubuntu systems, but I saw no launchpad bug so I post one. 
Example of websites covering the issue :
  - https://askubuntu.com/questions/1253830/lenovo-legion-5-touchpad (exactly 
the same laptop)
  - https://www.linux.org/threads/lenovo-legion-5-touchpad.29536/ (similar 
laptop)

  xinput indentifies it as MSFT0001:00 04F3:3140

  Virtual core pointer  id=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎜   ↳ MSFT0001:00 04F3:3140 Touchpad  id=17   [slave  pointer 
 (2)]
  ⎜   ↳ MSFT0001:00 04F3:3140 Mouse id=16   [slave  pointer 
 (2)]
  ⎜   ↳ ITE Tech. Inc. ITE Device(8910) Consumer Controlid=12   [slave  
pointer  (2)]
  ⎜   ↳ Logitech USB Optical Mouse  id=11   [slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
  ↳ Ideapad extra buttons   id=15   [slave  
keyboard (3)]
  ↳ Power Buttonid=6[slave  
keyboard (3)]
  ↳ Integrated Camera: Integrated C id=10   [slave  
keyboard (3)]
  ↳ Video Bus   id=7[slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Consumer Controlid=19   [slave  
keyboard (3)]
  ↳ Power Buttonid=9[slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Wireless Radio Control  id=13   [slave  
keyboard (3)]
  ↳ ITE Tech. Inc. ITE Device(8910) Keyboardid=14   [slave  
keyboard (3)]
  ↳ AT Translated Set 2 keyboardid=18   [slave  
keyboard (3)]
  ↳ Video Bus   id=8[slave  
keyboard (3)]

  Thanks a lot for your time. It does not help, but I can confirm what
  was reported on askubuntu by another user : the touchpad does work on
  Windows.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-40-generic 5.4.0-40.44
  ProcVersionSignature: Ubuntu 5.4.0-40.44-generic 5.4.44
  Uname: Linux 5.4.0-40-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu27.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nicolas1567 F pulseaudio
   /dev/snd/controlC1:  nicolas1567 F pulseaudio
   /dev/snd/controlC2:  nicolas1567 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Jul 10 20:14:25 2020
  InstallationDate: Installed on 2020-07-02 (8 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 82B5
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.4.0-40-generic 
root=UUID=d8898017-2821-434e-ab52-fec76ac93106 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-40-generic N/A
   linux-backports-modules-5.4.0-40-generic  N/A
   linux-firmware

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

2020-10-25 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 1901386

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

Title:
  no sound after resume

Status in Ubuntu:
  Incomplete
Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can
  restore it by selecting any other device and then reselecting the HDMI
  device or I can issue pulseaudio -k

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1901386/+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 1896578] Re: raid10: Block discard is very slow, causing severe delays for mkfs and fstrim operations

2020-10-25 Thread Matthew Ruffell
** Description changed:

  BugLink: https://bugs.launchpad.net/bugs/1896578
  
  [Impact]
  
  Block discard is very slow on Raid10, which causes common use cases
  which invoke block discard, such as mkfs and fstrim operations, to take
  a very long time.
  
  For example, on a i3.8xlarge instance on AWS, which has 4x 1.9TB NVMe
  devices which support block discard, a mkfs.xfs operation on Raid 10
  takes between 8 to 11 minutes, where the same mkfs.xfs operation on Raid
  0, takes 4 seconds.
  
  The bigger the devices, the longer it takes.
  
  The cause is that Raid10 currently uses a 512k chunk size, and uses this
  for the discard_max_bytes value. If we need to discard 1.9TB, the kernel
  splits the request into millions of 512k bio requests, even if the
  underlying device supports larger requests.
  
  For example, the NVMe devices on i3.8xlarge support 2.2TB of discard at
  once:
  
  $ cat /sys/block/nvme0n1/queue/discard_max_bytes
  2199023255040
  $ cat /sys/block/nvme0n1/queue/discard_max_hw_bytes
  2199023255040
  
  Where the Raid10 md device only supports 512k:
  
  $ cat /sys/block/md0/queue/discard_max_bytes
  524288
  $ cat /sys/block/md0/queue/discard_max_hw_bytes
  524288
  
  If we perform a mkfs.xfs operation on the /dev/md array, it takes over
  11 minutes and if we examine the stack, it is stuck in
  blkdev_issue_discard()
  
  $ sudo cat /proc/1626/stack
  [<0>] wait_barrier+0x14c/0x230 [raid10]
  [<0>] regular_request_wait+0x39/0x150 [raid10]
  [<0>] raid10_write_request+0x11e/0x850 [raid10]
  [<0>] raid10_make_request+0xd7/0x150 [raid10]
  [<0>] md_handle_request+0x123/0x1a0
  [<0>] md_submit_bio+0xda/0x120
  [<0>] __submit_bio_noacct+0xde/0x320
  [<0>] submit_bio_noacct+0x4d/0x90
  [<0>] submit_bio+0x4f/0x1b0
  [<0>] __blkdev_issue_discard+0x154/0x290
  [<0>] blkdev_issue_discard+0x5d/0xc0
  [<0>] blk_ioctl_discard+0xc4/0x110
  [<0>] blkdev_common_ioctl+0x56c/0x840
  [<0>] blkdev_ioctl+0xeb/0x270
  [<0>] block_ioctl+0x3d/0x50
  [<0>] __x64_sys_ioctl+0x91/0xc0
  [<0>] do_syscall_64+0x38/0x90
  [<0>] entry_SYSCALL_64_after_hwframe+0x44/0xa9
  
  [Fix]
  
  Xiao Ni has developed a patchset which resolves the block discard
  performance problems. These commits have now landed in 5.10-rc1.
  
  commit 2628089b74d5a64bd0bcb5d247a18f78d7b6f4d0
  Author: Xiao Ni 
  Date: Tue Aug 25 13:42:59 2020 +0800
  Subject: md: add md_submit_discard_bio() for submitting discard bio
  Link: 
https://github.com/torvalds/linux/commit/2628089b74d5a64bd0bcb5d247a18f78d7b6f4d0
  
  commit 8650a889017cb1f6ea6813ccf83a2e9f6fa49dd3
  Author: Xiao Ni 
  Date: Tue Aug 25 13:43:00 2020 +0800
  Subject: md/raid10: extend r10bio devs to raid disks
  Link: 
https://github.com/torvalds/linux/commit/8650a889017cb1f6ea6813ccf83a2e9f6fa49dd3
  
  commit f046f5d0d79cdb968f219ce249e497fd1accf484
  Author: Xiao Ni 
  Date: Tue Aug 25 13:43:01 2020 +0800
  Subject: md/raid10: pull codes that wait for blocked dev into one function
  Link: 
https://github.com/torvalds/linux/commit/f046f5d0d79cdb968f219ce249e497fd1accf484
  
  commit bcc90d280465ebd51ab8688be86e1f00c62dccf9
  Author: Xiao Ni 
  Date: Wed Sep 2 20:00:22 2020 +0800
  Subject: md/raid10: improve raid10 discard request
  Link: 
https://github.com/torvalds/linux/commit/bcc90d280465ebd51ab8688be86e1f00c62dccf9
  
  commit d3ee2d8415a6256c1c41e1be36e80e640c3e6359
  Author: Xiao Ni 
  Date: Wed Sep 2 20:00:23 2020 +0800
  Subject: md/raid10: improve discard request for far layout
  Link: 
https://github.com/torvalds/linux/commit/d3ee2d8415a6256c1c41e1be36e80e640c3e6359
  
  There is also an additional commit which is required, and was merged
  after "md/raid10: improve raid10 discard request" was merged. The
  following commits enable Radid10 to use large discards, instead of
  splitting into many bios, since the technical hurdles have now been
  removed.
  
  commit e0910c8e4f87bb9f767e61a778b0d9271c4dc512
  Author: Mike Snitzer 
  Date: Thu Sep 24 13:14:52 2020 -0400
  Subject: dm raid: fix discard limits for raid1 and raid10
  Link: 
https://github.com/torvalds/linux/commit/e0910c8e4f87bb9f767e61a778b0d9271c4dc512
  
  commit f0e90b6c663a7e3b4736cb318c6c7c589f152c28
  Author: Mike Snitzer 
  Date:   Thu Sep 24 16:40:12 2020 -0400
  Subject: dm raid: remove unnecessary discard limits for raid10
  Link: 
https://github.com/torvalds/linux/commit/f0e90b6c663a7e3b4736cb318c6c7c589f152c28
  
  All the commits mentioned follow a similar strategy which was
  implemented in Raid0 in the below commit, which was merged in 4.12-rc2,
  which fixed block discard performance issues in Raid0:
  
  commit 29efc390b9462582ae95eb9a0b8cd17ab956afc0
  Author: Shaohua Li 
  Date: Sun May 7 17:36:24 2017 -0700
  Subject: md/md0: optimize raid0 discard handling
  Link: 
https://github.com/torvalds/linux/commit/29efc390b9462582ae95eb9a0b8cd17ab956afc0
  
+ The commits more or less cherry pick to the 5.8, 5.4 and 4.15 kernels,
+ with the following minor fixups:
+ 
+ 1) 

[Kernel-packages] [Bug 1901386] Re: no sound after resume

2020-10-25 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please execute the following command only once, as it
will automatically gather debugging information, in a terminal:

apport-collect 1901386

When reporting bugs in the future please use apport by using 'ubuntu-
bug' and the name of the package affected. You can learn more about this
functionality at https://wiki.ubuntu.com/ReportingBugs.

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

** Changed in: 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/1901386

Title:
  no sound after resume

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

Bug description:
  Kubuntu 20.04.

  Sound via HDMI

  Sometimes after resume sound output is disabled.  I cannot determine
  what causes it but it occurs about 20% of the time.  My sound output
  is via HDMI and it's usual for the HDMI device to be asleep when the
  computer resumes.  Normally as the monitor wakes the sound is
  restored.

  According to the GUI tools the sound output is set to HDMI and I can
  restore it by selecting any other device and then reselecting the HDMI
  device or I can issue pulseaudio -k

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+bug/1901386/+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 1900728] Re: Ubuntu boot failure after upgrade to kernel 5.4.0-52

2020-10-25 Thread Jouni Mettala
Richard please file a new bug. It looks different.

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

Title:
  Ubuntu boot failure after upgrade to kernel 5.4.0-52

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I'm on Ubuntu 20.04 LTS. After upgrading from linux 5.4.0-51 to
  5.4.0-52 today, the computer boots into initramfs (Busybox) every time
  I reboot.  No disk errors found there.  If I use the grub menu to
  switch back to 5.4.0-51, the system boots and runs normally.

  This is on a Lenovo P53s laptop running Ubuntu only (no dual boot).

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.4.0-51-generic 5.4.0-51.56
  ProcVersionSignature: Ubuntu 5.4.0-51.56-generic 5.4.65
  Uname: Linux 5.4.0-51-generic x86_64
  ApportVersion: 2.20.11-0ubuntu27.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  scott  1624 F pulseaudio
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Oct 20 09:03:33 2020
  InstallationDate: Installed on 2020-06-26 (115 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: LENOVO 20N6S00B00
  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=/vmlinuz-5.4.0-51-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash
  RelatedPackageVersions:
   linux-restricted-modules-5.4.0-51-generic N/A
   linux-backports-modules-5.4.0-51-generic  N/A
   linux-firmware1.187
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/12/2020
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2IET91W (1.69 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20N6S00B00
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0J40697 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2IET91W(1.69):bd08/12/2020:svnLENOVO:pn20N6S00B00:pvrThinkPadP53s:rvnLENOVO:rn20N6S00B00:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad P53s
  dmi.product.name: 20N6S00B00
  dmi.product.sku: LENOVO_MT_20N6_BU_Think_FM_ThinkPad P53s
  dmi.product.version: ThinkPad P53s
  dmi.sys.vendor: LENOVO

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


  1   2   >