[Kernel-packages] [Bug 2062534] Re: GDM3 autologin might be racy on GCP resulting in inconsistent state of the wayland setup of seat0

2024-04-19 Thread Pirouette Cacahuète
Current kernel is: Linux gecko-t-t-linux-2204-wayland-exp-a2-mld-
sg4dt5wcf-acfajsmq 6.5.0-1017-gcp #17~22.04.1-Ubuntu SMP Thu Mar 14
20:30:38 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  GDM3 autologin might be racy on GCP resulting in inconsistent state of
  the wayland setup of seat0

Status in linux-gcp package in Ubuntu:
  New

Bug description:
  This might not be a bug really about linux-gcp, but this is following
  the work on bug 2039732 and so far I could not reproduce that locally.

  Setup is 22.04 uptodate on GCP n2-standard instances, without GPU
  attached thus relying on vkms. I have reproduced locally a similar
  setup but on a KVM host.

  We rely on 
https://github.com/taskcluster/taskcluster/tree/main/workers/generic-worker#readme
 to run tasks on CI, and especially generic-worker will:
   - create a new task_XXX user
   - make it autologin in gdm3 config
   - generic-worker has code to probe for existence of the GNOME Wayland 
session before launching the task

  We relied on wl-clipboard package installed for verifying the status
  of wayland

  On top of that setup, here is the issue.

  We issue a TC task with payload:
  > export WAYLAND_DISPLAY=wayland-0
  > export XDG_RUNTIME_DIR=/run/user/$(id -u)
  > wl-paste -l -p

  We expect that payload to report "No selection", but on GCP instances
  we mostly always end up with "This seat has no keyboard". There were
  also cases were the session would not be Wayland at all but rather
  X11. I think this suggests something around the availability of
  /dev/dri/card0, but forcing the gdm3 service to wait for its
  availability and adding extra waiting time after card0 is present
  would still not get us somewhere.

  We enabled gdm3 as well as mutter debugging but never found anything
  that would be a good lead on why it was not yet ready.

  At some point, the seat0 session of our user was shown as inactive and
  the active one was tied to gdm so we suspected this was the reason,
  but both forcing the session to be active and terminating the gdm
  session would still not unblock us.

  We also suspected the desktop to be locking itself so we disabled locking 
with the following, but iit did not help much:
  > cat > /etc/dconf/profile/user << EOF
  > user-db:user
  > system-db:local
  > EOF
  > 
  > mkdir /etc/dconf/db/local.d/
  > # dconf user settings
  > cat > /etc/dconf/db/local.d/00-tc-gnome-settings << EOF
  > # /org/gnome/desktop/session/idle-delay
  > [org/gnome/desktop/session]
  > idle-delay=uint32 0
  > # /org/gnome/desktop/lockdown/disable-lock-screen
  > [org/gnome/desktop/lockdown]
  > disable-lock-screen=true
  > EOF
  > 
  > sudo dconf update

  
  In the end, the only viable and reliable (verified over hundreds of runs now) 
fix that lasted was to add a "/bin/sleep 30" all to the gdm3 startup:
  > mkdir -p /etc/systemd/system/gdm.service.d/
  > cat > /etc/systemd/system/gdm.service.d/gdm-wait.conf << EOF
  > [Unit]
  > Description=Extra 30s wait
  > [Service]
  > ExecStartPre=/bin/sleep 30
  > EOF

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-gcp/+bug/2062534/+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 2062534] [NEW] GDM3 autologin might be racy on GCP resulting in inconsistent state of the wayland setup of seat0

2024-04-19 Thread Pirouette Cacahuète
Public bug reported:

This might not be a bug really about linux-gcp, but this is following
the work on bug 2039732 and so far I could not reproduce that locally.

Setup is 22.04 uptodate on GCP n2-standard instances, without GPU
attached thus relying on vkms. I have reproduced locally a similar setup
but on a KVM host.

We rely on 
https://github.com/taskcluster/taskcluster/tree/main/workers/generic-worker#readme
 to run tasks on CI, and especially generic-worker will:
 - create a new task_XXX user
 - make it autologin in gdm3 config
 - generic-worker has code to probe for existence of the GNOME Wayland session 
before launching the task

We relied on wl-clipboard package installed for verifying the status of
wayland

On top of that setup, here is the issue.

We issue a TC task with payload:
> export WAYLAND_DISPLAY=wayland-0
> export XDG_RUNTIME_DIR=/run/user/$(id -u)
> wl-paste -l -p

We expect that payload to report "No selection", but on GCP instances we
mostly always end up with "This seat has no keyboard". There were also
cases were the session would not be Wayland at all but rather X11. I
think this suggests something around the availability of /dev/dri/card0,
but forcing the gdm3 service to wait for its availability and adding
extra waiting time after card0 is present would still not get us
somewhere.

We enabled gdm3 as well as mutter debugging but never found anything
that would be a good lead on why it was not yet ready.

At some point, the seat0 session of our user was shown as inactive and
the active one was tied to gdm so we suspected this was the reason, but
both forcing the session to be active and terminating the gdm session
would still not unblock us.

We also suspected the desktop to be locking itself so we disabled locking with 
the following, but iit did not help much:
> cat > /etc/dconf/profile/user << EOF
> user-db:user
> system-db:local
> EOF
> 
> mkdir /etc/dconf/db/local.d/
> # dconf user settings
> cat > /etc/dconf/db/local.d/00-tc-gnome-settings << EOF
> # /org/gnome/desktop/session/idle-delay
> [org/gnome/desktop/session]
> idle-delay=uint32 0
> # /org/gnome/desktop/lockdown/disable-lock-screen
> [org/gnome/desktop/lockdown]
> disable-lock-screen=true
> EOF
> 
> sudo dconf update


In the end, the only viable and reliable (verified over hundreds of runs now) 
fix that lasted was to add a "/bin/sleep 30" all to the gdm3 startup:
> mkdir -p /etc/systemd/system/gdm.service.d/
> cat > /etc/systemd/system/gdm.service.d/gdm-wait.conf << EOF
> [Unit]
> Description=Extra 30s wait
> [Service]
> ExecStartPre=/bin/sleep 30
> EOF

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

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

Title:
  GDM3 autologin might be racy on GCP resulting in inconsistent state of
  the wayland setup of seat0

Status in linux-gcp package in Ubuntu:
  New

Bug description:
  This might not be a bug really about linux-gcp, but this is following
  the work on bug 2039732 and so far I could not reproduce that locally.

  Setup is 22.04 uptodate on GCP n2-standard instances, without GPU
  attached thus relying on vkms. I have reproduced locally a similar
  setup but on a KVM host.

  We rely on 
https://github.com/taskcluster/taskcluster/tree/main/workers/generic-worker#readme
 to run tasks on CI, and especially generic-worker will:
   - create a new task_XXX user
   - make it autologin in gdm3 config
   - generic-worker has code to probe for existence of the GNOME Wayland 
session before launching the task

  We relied on wl-clipboard package installed for verifying the status
  of wayland

  On top of that setup, here is the issue.

  We issue a TC task with payload:
  > export WAYLAND_DISPLAY=wayland-0
  > export XDG_RUNTIME_DIR=/run/user/$(id -u)
  > wl-paste -l -p

  We expect that payload to report "No selection", but on GCP instances
  we mostly always end up with "This seat has no keyboard". There were
  also cases were the session would not be Wayland at all but rather
  X11. I think this suggests something around the availability of
  /dev/dri/card0, but forcing the gdm3 service to wait for its
  availability and adding extra waiting time after card0 is present
  would still not get us somewhere.

  We enabled gdm3 as well as mutter debugging but never found anything
  that would be a good lead on why it was not yet ready.

  At some point, the seat0 session of our user was shown as inactive and
  the active one was tied to gdm so we suspected this was the reason,
  but both forcing the session to be active and terminating the gdm
  session would still not unblock us.

  We also suspected the desktop to be locking itself so we disabled locking 
with the following, but iit did not help much:
  > cat > /etc/dconf/profile/user << EOF
  > user-db:user
  > system-db:local
  > EOF
  > 
  > mkdir 

[Kernel-packages] [Bug 2051298] Re: GPU not available in snap

2024-01-31 Thread Pirouette Cacahuète
** Bug watch added: Mozilla Bugzilla #1876614
   https://bugzilla.mozilla.org/show_bug.cgi?id=1876614

** Also affects: firefox via
   https://bugzilla.mozilla.org/show_bug.cgi?id=1876614
   Importance: Unknown
   Status: Unknown

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

Title:
  GPU not available in snap

Status in Mozilla Firefox:
  Unknown
Status in nvidia-graphics-drivers-545 package in Ubuntu:
  Confirmed

Bug description:
  with 545 the GPU is no longer available to snaps. Try e.g. launching
  firefox and look at about:support.

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/2051298/+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 2039868] Re: amdgpu reset during usage of firefox

2024-01-24 Thread Pirouette Cacahuète
There's 6.5.0-15 package incoming on mantic-update, does it contains the
fix?

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

Title:
  amdgpu reset during usage of firefox

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

Bug description:
  Running nightly on 23.10 (since monday), I have been experiencing a
  few amdgpu resets in the past hours

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: linux-image-6.5.0-9-generic 6.5.0-9.9
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  Uname: Linux 6.5.0-9-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 19 18:26:43 2023
  HibernationDevice: RESUME=/dev/mapper/vg--ubuntu-lv--ubuntu--swap
  InstallationDate: Installed on 2022-07-04 (472 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
  ProcEnviron:
   LANG=fr_FR.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vg--ubuntu-lv--ubuntu--root ro rootflags=subvol=@ quiet splash 
resume=/dev/mapper/vg--ubuntu-lv--ubuntu--swap vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20230919.git3672ccab-0ubuntu2.1
  SourcePackage: linux
  UpgradeStatus: Upgraded to mantic on 2023-10-16 (3 days ago)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 1.24
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET54W (1.24 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.24
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET54W(1.24):bd05/15/2023:br1.24:efr1.24:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/2039868/+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 2034619] Re: [amdgpu] gnome-shell gets SIGKILL'd when lock screen or under heavy load in Wayland

2023-10-27 Thread Pirouette Cacahuète
** Tags removed: verification-needed verification-needed-mantic
** Tags added: verification-done-mantic

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

Title:
  [amdgpu] gnome-shell gets SIGKILL'd when lock screen or under heavy
  load in Wayland

Status in Linux:
  New
Status in Mutter:
  Fix Released
Status in X.Org X server:
  Fix Released
Status in linux package in Ubuntu:
  Triaged
Status in mutter package in Ubuntu:
  Fix Committed
Status in linux source package in Mantic:
  Triaged
Status in mutter source package in Mantic:
  Fix Committed

Bug description:
  [ Impact ]

  gnome-shell gets unceremoniously SIGKILLed on some Ryzen systems,
  sometimes when the screen locks, sometimes when launching particular
  apps.

  [ Workaround ]

  Add this to /etc/environment:

    MUTTER_DEBUG_KMS_THREAD_TYPE=user

  and then reboot.

  [ Test Plan ]

  Not all Ryzen systems (including one I just purchased) are able to
  reproduce the bug. We have no choice but to leave final verification
  to the community. Anyone affected should try locking their screen and
  verify they are not instantly returned to the login screen.

  [ Where problems could occur ]

  Anywhere in frame scheduling and particularly for mouse cursor
  movement since that's what the real-time thread exists to optimize.

  [ Original Description ]

  I have this issue on Ubuntu 23.10. Lock screen works only with an external 
monitor connected. Otherwise the session is ended and the user is logged out 
and brought to the gdm screen.
  All works in xorg.

  ProblemType: Crash
  DistroRelease: Ubuntu 23.10
  Package: gnome-shell 45~beta.1-0ubuntu2
  ProcVersionSignature: Ubuntu 6.3.0-7.7-generic 6.3.5
  Uname: Linux 6.3.0-7-generic x86_64
  ApportVersion: 2.27.0-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Sep  6 22:32:22 2023
  DisplayManager: gdm3
  ExecutablePath: /usr/bin/gnome-shell
  InstallationDate: Installed on 2023-09-03 (3 days ago)
  InstallationMedia: Ubuntu 23.10 "Mantic Minotaur" - Daily amd64 (20230901.1)
  ProcCmdline: /usr/bin/gnome-shell
  RelatedPackageVersions: mutter-common 45~beta.1-1ubuntu2
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sudo users
  separator:

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/2034619/+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 2034619] Re: [amdgpu] gnome-shell gets SIGKILL'd when lock screen or under heavy load in Wayland

2023-10-27 Thread Pirouette Cacahuète
Enabled proposed repo on 23.10

```
$ $ sudo apt install -t mantic-proposed mutter  



Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
  libjs-jquery-ui-theme-base
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
Les paquets supplémentaires suivants seront installés :
  gir1.2-mutter-13 libmutter-13-0 mutter-common mutter-common-bin
Les NOUVEAUX paquets suivants seront installés :
  mutter
Les paquets suivants seront mis à jour :
  gir1.2-mutter-13 libmutter-13-0 mutter-common mutter-common-bin
4 mis à jour, 1 nouvellement installés, 0 à enlever et 26 non mis à jour.
Il est nécessaire de prendre 1 727 ko dans les archives.
Après cette opération, 205 ko d'espace disque supplémentaires seront utilisés.
Souhaitez-vous continuer ? [O/n]
Réception de :1 http://fr.archive.ubuntu.com/ubuntu mantic-proposed/main amd64 
mutter-common all 45.0-3ubuntu3.1 [45,5 kB]
Réception de :2 http://fr.archive.ubuntu.com/ubuntu mantic-proposed/main amd64 
gir1.2-mutter-13 amd64 45.0-3ubuntu3.1 [130 kB]
Réception de :3 http://fr.archive.ubuntu.com/ubuntu mantic-proposed/main amd64 
libmutter-13-0 amd64 45.0-3ubuntu3.1 [1 391 kB]
Réception de :4 http://fr.archive.ubuntu.com/ubuntu mantic-proposed/main amd64 
mutter-common-bin amd64 45.0-3ubuntu3.1 [49,3 kB]
Réception de :5 http://fr.archive.ubuntu.com/ubuntu mantic-proposed/universe 
amd64 mutter amd64 45.0-3ubuntu3.1 [111 kB]
1 727 ko réceptionnés en 0s (7 132 ko/s)
(Lecture de la base de données... 313559 fichiers et répertoires déjà 
installés.)
Préparation du dépaquetage de .../mutter-common_45.0-3ubuntu3.1_all.deb ...
Dépaquetage de mutter-common (45.0-3ubuntu3.1) sur (45.0-3ubuntu3) ...
Préparation du dépaquetage de .../gir1.2-mutter-13_45.0-3ubuntu3.1_amd64.deb ...
Dépaquetage de gir1.2-mutter-13:amd64 (45.0-3ubuntu3.1) sur (45.0-3ubuntu3) ...
Préparation du dépaquetage de .../libmutter-13-0_45.0-3ubuntu3.1_amd64.deb ...
Dépaquetage de libmutter-13-0:amd64 (45.0-3ubuntu3.1) sur (45.0-3ubuntu3) ...
Préparation du dépaquetage de .../mutter-common-bin_45.0-3ubuntu3.1_amd64.deb 
...
Dépaquetage de mutter-common-bin (45.0-3ubuntu3.1) sur (45.0-3ubuntu3) ...
Sélection du paquet mutter précédemment désélectionné.
Préparation du dépaquetage de .../mutter_45.0-3ubuntu3.1_amd64.deb ...
Dépaquetage de mutter (45.0-3ubuntu3.1) ...
Paramétrage de mutter-common (45.0-3ubuntu3.1) ...
Paramétrage de mutter-common-bin (45.0-3ubuntu3.1) ...
Traitement des actions différées (« triggers ») pour libglib2.0-0:amd64 
(2.78.0-2) ...
Traitement des actions différées (« triggers ») pour libglib2.0-0:i386 
(2.78.0-2) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.38-1ubuntu6) 
...
Traitement des actions différées (« triggers ») pour man-db (2.11.2-3) ...
Paramétrage de libmutter-13-0:amd64 (45.0-3ubuntu3.1) ...
Paramétrage de mutter (45.0-3ubuntu3.1) ...
update-alternatives: utilisation de « /usr/bin/mutter » pour fournir « 
/usr/bin/x-window-manager » (x-window-manager) en mode automatique
Paramétrage de gir1.2-mutter-13:amd64 (45.0-3ubuntu3.1) ...
Traitement des actions différées (« triggers ») pour libc-bin (2.38-1ubuntu6) 
...
```

Closed GNOME session, reopened it, unplugged from dock, force lock
screen, and I cannot reproduce the problem anymore.

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

Title:
  [amdgpu] gnome-shell gets SIGKILL'd when lock screen or under heavy
  load in Wayland

Status in Linux:
  New
Status in Mutter:
  Fix Released
Status in X.Org X server:
  Fix Released
Status in linux package in Ubuntu:
  Triaged
Status in mutter package in Ubuntu:
  Fix Committed
Status in linux source package in Mantic:
  Triaged
Status in mutter source package in Mantic:
  Fix Committed

Bug description:
  [ Impact ]

  gnome-shell gets unceremoniously SIGKILLed on some Ryzen systems,
  sometimes when the screen locks, sometimes when launching particular
  apps.

  [ Workaround ]

  Add this to /etc/environment:

    MUTTER_DEBUG_KMS_THREAD_TYPE=user

  and then reboot.

  [ Test Plan ]

  Not all Ryzen systems (including one I just purchased) are able to
  reproduce the bug. We have no choice but to leave final verification
  to the community. Anyone affected should try locking their screen and
  verify they are not instantly returned to the login screen.

  [ Where problems could occur ]

  Anywhere in frame scheduling and particularly for mouse cursor
  movement since that's what the real-time thread exists to optimize.

  [ Original 

[Kernel-packages] [Bug 2039868] Re: amdgpu reset during usage of firefox

2023-10-20 Thread Pirouette Cacahuète
Thanks, I'll try and keep you updated, however I am also facing bug
2039958 (probably a dupe of bug 2034619), so I might still need GNOME
45.1 to be 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/2039868

Title:
  amdgpu reset during usage of firefox

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

Bug description:
  Running nightly on 23.10 (since monday), I have been experiencing a
  few amdgpu resets in the past hours

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: linux-image-6.5.0-9-generic 6.5.0-9.9
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  Uname: Linux 6.5.0-9-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 19 18:26:43 2023
  HibernationDevice: RESUME=/dev/mapper/vg--ubuntu-lv--ubuntu--swap
  InstallationDate: Installed on 2022-07-04 (472 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
  ProcEnviron:
   LANG=fr_FR.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vg--ubuntu-lv--ubuntu--root ro rootflags=subvol=@ quiet splash 
resume=/dev/mapper/vg--ubuntu-lv--ubuntu--swap vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20230919.git3672ccab-0ubuntu2.1
  SourcePackage: linux
  UpgradeStatus: Upgraded to mantic on 2023-10-16 (3 days ago)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 1.24
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET54W (1.24 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.24
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET54W(1.24):bd05/15/2023:br1.24:efr1.24:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/2039868/+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 2039868] Re: amdgpu reset during usage of firefox

2023-10-19 Thread Pirouette Cacahuète
https://gitlab.freedesktop.org/drm/amd/-/issues/2848#note_2108686

** Bug watch added: Linux Kernel Bug Tracker #201957
   https://bugzilla.kernel.org/show_bug.cgi?id=201957

** Also affects: linux via
   https://bugzilla.kernel.org/show_bug.cgi?id=201957
   Importance: Unknown
   Status: Unknown

** Bug watch added: gitlab.freedesktop.org/drm/amd/-/issues #2848
   https://gitlab.freedesktop.org/drm/amd/-/issues/2848

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

Title:
  amdgpu reset during usage of firefox

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

Bug description:
  Running nightly on 23.10 (since monday), I have been experiencing a
  few amdgpu resets in the past hours

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: linux-image-6.5.0-9-generic 6.5.0-9.9
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  Uname: Linux 6.5.0-9-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 19 18:26:43 2023
  HibernationDevice: RESUME=/dev/mapper/vg--ubuntu-lv--ubuntu--swap
  InstallationDate: Installed on 2022-07-04 (472 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
  ProcEnviron:
   LANG=fr_FR.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vg--ubuntu-lv--ubuntu--root ro rootflags=subvol=@ quiet splash 
resume=/dev/mapper/vg--ubuntu-lv--ubuntu--swap vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20230919.git3672ccab-0ubuntu2.1
  SourcePackage: linux
  UpgradeStatus: Upgraded to mantic on 2023-10-16 (3 days ago)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 1.24
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET54W (1.24 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.24
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET54W(1.24):bd05/15/2023:br1.24:efr1.24:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/2039868/+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 2039868] [NEW] amdgpu reset during usage of firefox

2023-10-19 Thread Pirouette Cacahuète
Public bug reported:

Running nightly on 23.10 (since monday), I have been experiencing a few
amdgpu resets in the past hours

ProblemType: Bug
DistroRelease: Ubuntu 23.10
Package: linux-image-6.5.0-9-generic 6.5.0-9.9
ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
Uname: Linux 6.5.0-9-generic x86_64
ApportVersion: 2.27.0-0ubuntu5
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Thu Oct 19 18:26:43 2023
HibernationDevice: RESUME=/dev/mapper/vg--ubuntu-lv--ubuntu--swap
InstallationDate: Installed on 2022-07-04 (472 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
ProcEnviron:
 LANG=fr_FR.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
ProcFB: 0 amdgpudrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vg--ubuntu-lv--ubuntu--root ro rootflags=subvol=@ quiet splash 
resume=/dev/mapper/vg--ubuntu-lv--ubuntu--swap vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-6.5.0-9-generic N/A
 linux-backports-modules-6.5.0-9-generic  N/A
 linux-firmware   20230919.git3672ccab-0ubuntu2.1
SourcePackage: linux
UpgradeStatus: Upgraded to mantic on 2023-10-16 (3 days ago)
dmi.bios.date: 05/15/2023
dmi.bios.release: 1.24
dmi.bios.vendor: LENOVO
dmi.bios.version: R1MET54W (1.24 )
dmi.board.asset.tag: Not Available
dmi.board.name: 21A0CTO1WW
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.24
dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET54W(1.24):bd05/15/2023:br1.24:efr1.24:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
dmi.product.family: ThinkPad P14s Gen 2a
dmi.product.name: 21A0CTO1WW
dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
dmi.product.version: ThinkPad P14s Gen 2a
dmi.sys.vendor: LENOVO

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


** Tags: amd64 apport-bug mantic

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

Title:
  amdgpu reset during usage of firefox

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Running nightly on 23.10 (since monday), I have been experiencing a
  few amdgpu resets in the past hours

  ProblemType: Bug
  DistroRelease: Ubuntu 23.10
  Package: linux-image-6.5.0-9-generic 6.5.0-9.9
  ProcVersionSignature: Ubuntu 6.5.0-9.9-generic 6.5.3
  Uname: Linux 6.5.0-9-generic x86_64
  ApportVersion: 2.27.0-0ubuntu5
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Thu Oct 19 18:26:43 2023
  HibernationDevice: RESUME=/dev/mapper/vg--ubuntu-lv--ubuntu--swap
  InstallationDate: Installed on 2022-07-04 (472 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: {report['dmi.sys.vendor']} {report['dmi.product.name']}
  ProcEnviron:
   LANG=fr_FR.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.5.0-9-generic 
root=/dev/mapper/vg--ubuntu-lv--ubuntu--root ro rootflags=subvol=@ quiet splash 
resume=/dev/mapper/vg--ubuntu-lv--ubuntu--swap vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-6.5.0-9-generic N/A
   linux-backports-modules-6.5.0-9-generic  N/A
   linux-firmware   20230919.git3672ccab-0ubuntu2.1
  SourcePackage: linux
  UpgradeStatus: Upgraded to mantic on 2023-10-16 (3 days ago)
  dmi.bios.date: 05/15/2023
  dmi.bios.release: 1.24
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET54W (1.24 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.24
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET54W(1.24):bd05/15/2023:br1.24:efr1.24:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2039868/+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 1971656] Re: rtw89_pci failure on Lenovo P14s with Ubuntu 22.04

2022-05-05 Thread Pirouette Cacahuète
I have been running into the same on my P14s, and I did upgrade to Jammy
early march, but it only started to happen very very much only around
the 11th of april (I have been updating mostly daily). Since that date,
any intensive use of the wifi started to trigger the same behavior,
whatever the version of rtw89 driver I was using (bundled in the 5.15
kernel or the one on github).

This made my life mostly impossible to work, I switched my laptop to an
Intel AC9260 WiFi chip and no more problem since.

Over the course of my debugging, I tested older versions of rtw89 repo
(that were known to be fine from my earlier use) as well as different
rtw89 firmwares versions, to no help.

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

Title:
  rtw89_pci failure on Lenovo P14s with Ubuntu 22.04

Status in linux-firmware package in Ubuntu:
  Confirmed

Bug description:
  On a Lenovo P14s (RTL8111/8168/8411), the WiFi connection gets stuck
  at times. When this happens, there is no way to use `sudo`, the WiFi
  GNOME UI says NetworkManager is not running (which it is), and `dmesg
  -w` continuously outputs:

  ```
  [90296.470925] rtw89_pci :03:00.0: failed to get available addr cam
  [90296.470935] rtw89_pci :03:00.0: failed to init addr cam
  [90296.586817] rtw89_pci :03:00.0: failed to get available addr cam
  [90296.586828] rtw89_pci :03:00.0: failed to init addr cam
  [90296.698790] rtw89_pci :03:00.0: failed to get available addr cam
  [90296.698797] rtw89_pci :03:00.0: failed to init addr cam
  [90296.810783] rtw89_pci :03:00.0: failed to get available addr cam
  [90296.810790] rtw89_pci :03:00.0: failed to init addr cam
  ```

  
  The only solution I've found is to reboot the machine. However, turning off 
needs to be forced (magic keys still work for rebooting).

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-firmware 20220329.git681281e4-0ubuntu1
  ProcVersionSignature: Ubuntu 5.15.0-27.28-generic 5.15.30
  Uname: Linux 5.15.0-27-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May  5 07:49:18 2022
  Dependencies: firmware-sof-signed 2.0-1ubuntu2
  InstallationDate: Installed on 2022-02-25 (68 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Release amd64 (20211012)
  MachineType: LENOVO 21A3MZ
  PackageArchitecture: all
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-27-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  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.15.0-27-generic N/A
   linux-backports-modules-5.15.0-27-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu1
  SourcePackage: linux-firmware
  UpgradeStatus: Upgraded to jammy on 2022-04-21 (13 days ago)
  dmi.bios.date: 11/05/2021
  dmi.bios.release: 1.13
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET43W (1.13 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A3MZ
  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.13
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET43W(1.13):bd11/05/2021:br1.13:efr1.13:svnLENOVO:pn21A3MZ:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A3MZ:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A3MZ
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-firmware/+bug/1971656/+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 1954438] Re: rtw89 driver lack pre/post suspend handling

2022-04-01 Thread Pirouette Cacahuète
Also, Jammy's 5.15.0-23-generic and its bundled driver seems to properly
perform suspend / resume

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438/+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 1954438] Re: rtw89 driver lack pre/post suspend handling

2022-03-30 Thread Pirouette Cacahuète
With latest rtw89 from github and current Jammy beta, I can suspend /
resume without a hack.

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

** Attachment added: "AudioDevicesInUse.txt"
   
https://bugs.launchpad.net/bugs/1954438/+attachment/5546836/+files/AudioDevicesInUse.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/1954438

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1954438/+attachment/5546845/+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/1954438

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438/+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 1954438] Re: rtw89 driver lack pre/post suspend handling

2021-12-10 Thread Pirouette Cacahuète
apport information

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

** Description changed:

  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.
  
  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.
  
  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.
  
  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89
  
  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12
  
  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu71
+ Architecture: amd64
+ CasperMD5CheckResult: pass
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 21.10
+ HibernationDevice: RESUME=auto
+ InstallationDate: Installed on 2012-11-03 (3324 days ago)
+ InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
+ MachineType: LENOVO 21A0CTO1WW
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
+ RelatedPackageVersions:
+  linux-restricted-modules-5.13.0-23-generic N/A
+  linux-backports-modules-5.13.0-23-generic  N/A
+  linux-firmware 1.201.3
+ Tags:  impish wayland-session
+ Uname: Linux 5.13.0-23-generic x86_64
+ UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
+ UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
+ _MarkForUpload: True
+ dmi.bios.date: 09/29/2021
+ dmi.bios.release: 1.12
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: R1MET42W (1.12 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 21A0CTO1WW
+ 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.12
+ dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
+ dmi.product.family: ThinkPad P14s Gen 2a
+ dmi.product.name: 21A0CTO1WW
+ dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
+ dmi.product.version: ThinkPad P14s Gen 2a
+ dmi.sys.vendor: LENOVO

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  

[Kernel-packages] [Bug 1954439] ProcInterrupts.txt

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

** Attachment added: "PaInfo.txt"
   https://bugs.launchpad.net/bugs/1954439/+attachment/5546866/+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/1954439

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

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

2021-12-10 Thread Pirouette Cacahuète
apport information

** Attachment added: "AudioDevicesInUse.txt"
   
https://bugs.launchpad.net/bugs/1954439/+attachment/5546857/+files/AudioDevicesInUse.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/1954439

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu71
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 21.10
  HibernationDevice: RESUME=auto
  InstallationDate: Installed on 2012-11-03 (3324 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 21A0CTO1WW
  Package: linux (not installed)
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
  RelatedPackageVersions:
   linux-restricted-modules-5.13.0-23-generic N/A
   linux-backports-modules-5.13.0-23-generic  N/A
   linux-firmware 1.201.3
  Tags:  impish wayland-session
  Uname: Linux 5.13.0-23-generic x86_64
  UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
  UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
  _MarkForUpload: True
  dmi.bios.date: 09/29/2021
  dmi.bios.release: 1.12
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET42W (1.12 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21A0CTO1WW
  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.12
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21A0CTO1WW
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954439/+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 1954439] Re: rtw89 shows bad latency afer a suspend/resume

2021-12-10 Thread Pirouette Cacahuète
apport information

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

** Description changed:

  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.
  
  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.
  
  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.
  
  After a suspend/resume (and the required unloading/reloading of modules
  for rtw89), I have been suffering from very poor latency, mostly on
  IPv6, either on battery or not:
  
  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5
  
  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.
  
- It's likely to be an upstream issue, but I am wondering if some of the
- mode recent changes on v7 of the rtw89 driver might not help and fix
- that.
+ It's likely to be an upstream issue, but I am wondering if some of the mode 
recent changes on v7 of the rtw89 driver might not help and fix that.
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu71
+ Architecture: amd64
+ CasperMD5CheckResult: pass
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 21.10
+ HibernationDevice: RESUME=auto
+ InstallationDate: Installed on 2012-11-03 (3324 days ago)
+ InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
+ MachineType: LENOVO 21A0CTO1WW
+ Package: linux (not installed)
+ ProcFB: 0 amdgpudrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.13.0-23-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.13.0-23.23-generic 5.13.19
+ RelatedPackageVersions:
+  linux-restricted-modules-5.13.0-23-generic N/A
+  linux-backports-modules-5.13.0-23-generic  N/A
+  linux-firmware 1.201.3
+ Tags:  impish wayland-session
+ Uname: Linux 5.13.0-23-generic x86_64
+ UpgradeStatus: Upgraded to impish on 2021-10-08 (63 days ago)
+ UserGroups: adm cdrom dialout dip disk docker libvirt libvirtd lpadmin 
plugdev sambashare sudo video
+ _MarkForUpload: True
+ dmi.bios.date: 09/29/2021
+ dmi.bios.release: 1.12
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: R1MET42W (1.12 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 21A0CTO1WW
+ 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.12
+ dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET42W(1.12):bd09/29/2021:br1.12:efr1.12:svnLENOVO:pn21A0CTO1WW:pvrThinkPadP14sGen2a:rvnLENOVO:rn21A0CTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
+ dmi.product.family: ThinkPad P14s Gen 2a
+ dmi.product.name: 21A0CTO1WW
+ dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
+ dmi.product.version: ThinkPad P14s Gen 2a
+ dmi.sys.vendor: LENOVO

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  

[Kernel-packages] [Bug 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-12-10 Thread Pirouette Cacahuète
FTR, I've had a few hiccups related to the driver filed in
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954439 and
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Released
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Confirmed

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1954439] [NEW] rtw89 shows bad latency afer a suspend/resume

2021-12-10 Thread Pirouette Cacahuète
Public bug reported:

I have been running the rtw89-integrated driver for a few weeks now,
since it has been available in impish-proposed, to no problem.

As mentionned on
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
to use suspend/resume and (immediately) after that I started to notice
poor latency over my local network.

It was a behavior I suffered from a while ago, without the use of
suspend/resume, as mentionned on
https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
that was avoided by setting rtw89core module's parameter
disable_ps_mode=Y to disable low power mode. I have been able to run
without that parameter fine for several weeks, the latency being
correct, even when running on battery.

After a suspend/resume (and the required unloading/reloading of modules
for rtw89), I have been suffering from very poor latency, mostly on
IPv6, either on battery or not:

$ mtr --report -4 -n serveur.home
Start: 2021-12-10T13:24:39+0100
HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
$ mtr --report -6 -n serveur.home
Start: 2021-12-10T13:24:58+0100
HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
  1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

This is 100% not related to my network or anything else. Rebooting the
system makes it working well again, and issuing a suspend/resume cycle
it comes back.

It's likely to be an upstream issue, but I am wondering if some of the
mode recent changes on v7 of the rtw89 driver might not help and fix
that.

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

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

Title:
  rtw89 shows bad latency afer a suspend/resume

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I have been running the rtw89-integrated driver for a few weeks now,
  since it has been available in impish-proposed, to no problem.

  As mentionned on
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438 I did had
  to use suspend/resume and (immediately) after that I started to notice
  poor latency over my local network.

  It was a behavior I suffered from a while ago, without the use of
  suspend/resume, as mentionned on
  https://github.com/lwfinger/rtw89/issues/36#issuecomment-990913111 and
  that was avoided by setting rtw89core module's parameter
  disable_ps_mode=Y to disable low power mode. I have been able to run
  without that parameter fine for several weeks, the latency being
  correct, even when running on battery.

  After a suspend/resume (and the required unloading/reloading of
  modules for rtw89), I have been suffering from very poor latency,
  mostly on IPv6, either on battery or not:

  $ mtr --report -4 -n serveur.home
  Start: 2021-12-10T13:24:39+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 192.168.1.98   0.0%105.5   3.7   1.1   5.5   2.0
  $ mtr --report -6 -n serveur.home
  Start: 2021-12-10T13:24:58+0100
  HOST: portable-alex   Loss%   Snt   Last   Avg  Best  Wrst StDev
1.|-- 2a01::::bdf9: 0.0%104.8  82.4   4.8 253.4  81.5

  This is 100% not related to my network or anything else. Rebooting the
  system makes it working well again, and issuing a suspend/resume cycle
  it comes back.

  It's likely to be an upstream issue, but I am wondering if some of the
  mode recent changes on v7 of the rtw89 driver might not help and fix
  that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954439/+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 1954438] [NEW] rtw89 driver lack pre/post suspend handling

2021-12-10 Thread Pirouette Cacahuète
Public bug reported:

Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

Because of lockdowns, I have not had the need to far to move away my
laptop since I received it and make use of suspend/resume, until
yesterday.

On my system it turns out suspend/resume fails unless you unload both
rtw89_pci and rtw89_core modules.

Upstream documents and provides a systemd integration script to take
care of that:
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

BIOS Information
Vendor: LENOVO
Version: R1MET42W (1.12 )
Release Date: 09/29/2021
Address: 0xE
Runtime Size: 128 kB
ROM Size: 32 MB
Characteristics:
PCI is supported
PNP is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
3.5"/720 kB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 1.12
Firmware Revision: 1.12

System Information
Manufacturer: LENOVO
Product Name: 21A0CTO1WW
Version: ThinkPad P14s Gen 2a
Wake-up Type: Power Switch
SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
Family: ThinkPad P14s Gen 2a

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

Title:
  rtw89 driver lack pre/post suspend handling

Status in linux package in Ubuntu:
  New

Bug description:
  Thanks to https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967
  we now have rtw89 in the 5.13.0-22+ kernels on 21.10.

  Because of lockdowns, I have not had the need to far to move away my
  laptop since I received it and make use of suspend/resume, until
  yesterday.

  On my system it turns out suspend/resume fails unless you unload both
  rtw89_pci and rtw89_core modules.

  Upstream documents and provides a systemd integration script to take
  care of that:
  
https://github.com/lwfinger/rtw89/blob/ff7e9c5655b139b7436cc91c6371b9687326c623/suspend_rtw89

  BIOS Information
  Vendor: LENOVO
  Version: R1MET42W (1.12 )
  Release Date: 09/29/2021
  Address: 0xE
  Runtime Size: 128 kB
  ROM Size: 32 MB
  Characteristics:
  PCI is supported
  PNP is supported
  BIOS is upgradeable
  BIOS shadowing is allowed
  Boot from CD is supported
  Selectable boot is supported
  EDD is supported
  3.5"/720 kB floppy services are supported (int 13h)
  Print screen service is supported (int 5h)
  8042 keyboard services are supported (int 9h)
  Serial services are supported (int 14h)
  Printer services are supported (int 17h)
  CGA/mono video services are supported (int 10h)
  ACPI is supported
  USB legacy is supported
  BIOS boot specification is supported
  Targeted content distribution is supported
  UEFI is supported
  BIOS Revision: 1.12
  Firmware Revision: 1.12

  System Information
  Manufacturer: LENOVO
  Product Name: 21A0CTO1WW
  Version: ThinkPad P14s Gen 2a
  Wake-up Type: Power Switch
  SKU Number: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  Family: ThinkPad P14s Gen 2a

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1954438/+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 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-11-30 Thread Pirouette Cacahuète
I have had no instance of a crash such as reported earlier since
november 19, so I can't really be sure of the status, but it might not
be as bad as I was worrying.

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Released
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Confirmed

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-11-22 Thread Pirouette Cacahuète
I'm on the 5.13.0-22, maybe the 5.15 has a few different commits ?

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Committed
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Confirmed

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-11-19 Thread Pirouette Cacahuète
Specifically,
https://github.com/lwfinger/rtw89/commit/14be64e6e0f6541efee8a39f3f115b5e0343
mention system crash :)

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Committed
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Confirmed

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-11-19 Thread Pirouette Cacahuète
For what it is worth, at some point, using
https://github.com/lwfinger/rtw89 branch's v7 was making my laptop
crashing, only symptom was me going away and coming back the laptop is
rebooted. It was happening after ~24-48h of uptime, regularly enough for
it to be painful.

I think my latest build was with
https://github.com/lwfinger/rtw89/commit/a3f3f39908872fe9edc887d857836d9cb4cb598c
and this was much rather stable.

@kaihengfeng Can we hope you cherry pick all the new fixes coming on v7
branch?

Without stability, I'll have to blacklist the kernel-bundled driver and
go back to the dkms one self-built :/

Thanks!

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Committed
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Confirmed

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1945967] Re: rtw89 kernel module for Realtek 8852 wifi is missing

2021-11-17 Thread Pirouette Cacahuète
Just enabled impish-proposed, applied upgrades, and 5.13.0-22 is there,
rtw89 working well. No more requirement for extra dkms out-of-tree,
that's quite cool.

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

Title:
  rtw89 kernel module for Realtek 8852 wifi is missing

Status in linux package in Ubuntu:
  Confirmed
Status in linux-oem-5.10 package in Ubuntu:
  Invalid
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Won't Fix
Status in linux-oem-5.10 source package in Focal:
  Fix Released
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Fix Committed
Status in linux-oem-5.10 source package in Impish:
  Invalid
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Invalid

Bug description:
  == SRU Justification ==
  [Impact]
  Realtek 8852AE, which is used by many new laptops, doesn't have a
  driver.

  [Fix]
  Add rtw89 driver to support Realtek 8852AE.

  [Test]
  After applying the patch, 8852AE can scan, connect and do TX/RX.

  [Where problems could occur]
  This is a brand new driver, unless the driver hits some subtle PCI or
  IOMMU bugs, there isn't much chance to introduce any regression.

  == Original Bug Report ==
  Hi,

  Resulting: no wifi adapter detected.
  Currently WIP: 
https://patchwork.kernel.org/project/linux-wireless/list/?series=534633=*

  Workaround: use https://github.com/lwfinger/rtw89
  that allows to build a dkms deb package.

  Ubuntu Impish
  kernel 5.13 (or 5.15 from unstable ppa)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu69
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  fthx   4574 F pulseaudio
   /dev/snd/controlC2:  fthx   4574 F pulseaudio
   /dev/snd/controlC0:  fthx   4574 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (20 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-4-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-4.4-generic 5.15.0-rc4
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-4-generic N/A
   linux-backports-modules-5.15.0-4-generic  N/A
   linux-firmware1.201
  Tags:  wayland-session impish
  Uname: Linux 5.15.0-4-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1945967/+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 1943817] Re: Realtek 8852 wifi kernel module is missing

2021-10-20 Thread Pirouette Cacahuète
According to the series in https://patchwork.kernel.org/project/linux-
wireless/list/?series=559649=*, this has been accepted. rtw89 repo
now seems to have this v7 of the driver, and mentions it should be in
the next 5.16 kernel.

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

Title:
  Realtek 8852 wifi kernel module is missing

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  Just got a Thinkpad with Realtek 8852a wifi card. I installed Impish daily 
(kernel 5.13).
  Not recognized.
  The firmware is natively present in firmware folder, /rtw89/rtw8852a_fw.bin .

  But the kernel module is not loaded and in fact no module is loadable!
  sudo modprobe rtw8[completion] does not return this wifi card's module.

  So I did run for:
  https://github.com/lwfinger/rtw89
  and it does work but needs to be done for each kernel upgrade...

  Note that Bluetooth was natively ok.

  I tried 5.14 Ubuntu kernel from unstable ppa but same issue.

  lspci
  03:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8852
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu68
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  fthx   2333 F pulseaudio
   /dev/snd/controlC1:  fthx   2333 F pulseaudio
   /dev/snd/controlC0:  fthx   2333 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (0 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.14.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-9.9-generic 5.14.1
  RelatedPackageVersions:
   linux-restricted-modules-5.14.0-9-generic N/A
   linux-backports-modules-5.14.0-9-generic  N/A
   linux-firmware1.199
  Tags:  impish
  Uname: Linux 5.14.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943817/+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 1943817] Re: Realtek 8852 wifi kernel module is missing

2021-10-07 Thread Pirouette Cacahuète
Can we hope that the rtw89 dkms package be at least available in the
repos for 21.10 ?

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

Title:
  Realtek 8852 wifi kernel module is missing

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  Just got a Thinkpad with Realtek 8852a wifi card. I installed Impish daily 
(kernel 5.13).
  Not recognized.
  The firmware is natively present in firmware folder, /rtw89/rtw8852a_fw.bin .

  But the kernel module is not loaded and in fact no module is loadable!
  sudo modprobe rtw8[completion] does not return this wifi card's module.

  So I did run for:
  https://github.com/lwfinger/rtw89
  and it does work but needs to be done for each kernel upgrade...

  Note that Bluetooth was natively ok.

  I tried 5.14 Ubuntu kernel from unstable ppa but same issue.

  lspci
  03:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8852
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu68
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  fthx   2333 F pulseaudio
   /dev/snd/controlC1:  fthx   2333 F pulseaudio
   /dev/snd/controlC0:  fthx   2333 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (0 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.14.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-9.9-generic 5.14.1
  RelatedPackageVersions:
   linux-restricted-modules-5.14.0-9-generic N/A
   linux-backports-modules-5.14.0-9-generic  N/A
   linux-firmware1.199
  Tags:  impish
  Uname: Linux 5.14.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943817/+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 1943817] Re: Realtek 8852 wifi kernel module is missing

2021-09-16 Thread Pirouette Cacahuète
Hello,

I can relate there, same situation: brand new ThinkPad P14s Gen2 AMD
with this WiFi chip. The driver provided on GitHub
(https://github.com/lwfinger/rtw89) is mostly the same as the one being
pushed to upstream, e.g? v6 is
https://patchwork.kernel.org/project/linux-
wireless/list/?series=534633=*

I can confirm that it is solid enough to provide a stable link.

I don't know if the kernel freeze can impact third-parties modules, but
for what is is worth, there is a debian packaging provided in the github
project, building with debuild produces a dkms-ready package.

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

Title:
  Realtek 8852 wifi kernel module is missing

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  Just got a Thinkpad with Realtek 8852a wifi card. I installed Impish daily 
(kernel 5.13).
  Not recognized.
  The driver is natively present in firmware folder, /rtw89/rtw8852a_fw.bin .

  But the kernel module is not loaded and in fact no module is loadable!
  sudo modprobe rtw8[completion] does not return this wifi card's module.

  So I did run for:
  https://github.com/lwfinger/rtw89
  and it does work but needs to be done for each kernel upgrade...

  Note that Bluetooth was natively ok.

  I tried 5.14 Ubuntu kernel from unstable ppa but same issue.

  lspci
  03:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8852
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu68
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC2:  fthx   2333 F pulseaudio
   /dev/snd/controlC1:  fthx   2333 F pulseaudio
   /dev/snd/controlC0:  fthx   2333 F pulseaudio
  CasperMD5CheckResult: pass
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 21.10
  InstallationDate: Installed on 2021-09-15 (0 days ago)
  InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210910)
  MachineType: LENOVO 21AVFR
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 amdgpu
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.14.0-9-generic 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-9.9-generic 5.14.1
  RelatedPackageVersions:
   linux-restricted-modules-5.14.0-9-generic N/A
   linux-backports-modules-5.14.0-9-generic  N/A
   linux-firmware1.199
  Tags:  impish
  Uname: Linux 5.14.0-9-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 06/21/2021
  dmi.bios.release: 1.9
  dmi.bios.vendor: LENOVO
  dmi.bios.version: R1MET39W (1.09 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21AVFR
  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.9
  dmi.modalias: 
dmi:bvnLENOVO:bvrR1MET39W(1.09):bd06/21/2021:br1.9:efr1.9:svnLENOVO:pn21AVFR:pvrThinkPadP14sGen2a:skuLENOVO_MT_21A0_BU_Think_FM_ThinkPadP14sGen2a:rvnLENOVO:rn21AVFR:rvrNotDefined:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad P14s Gen 2a
  dmi.product.name: 21AVFR
  dmi.product.sku: LENOVO_MT_21A0_BU_Think_FM_ThinkPad P14s Gen 2a
  dmi.product.version: ThinkPad P14s Gen 2a
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1943817/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2019-09-19 Thread Pirouette Cacahuète
I could not reproduce in the Mozilla Paris office, both on the old
network as well as the new one deployed after the move. So it looks like
this got fixed.

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Expired

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2019-05-08 Thread Pirouette Cacahuète
FTR, I cannot seem to reproduce anymore the issue on latest Disco
release, at least on my home network. I'll keep posted wrt the Mozilla
office network.

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Expired

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2019-04-19 Thread Pirouette Cacahuète
Just came accross this:
https://bugzilla.kernel.org/show_bug.cgi?id=199251

** Bug watch added: Linux Kernel Bug Tracker #199251
   https://bugzilla.kernel.org/show_bug.cgi?id=199251

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Expired

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2019-04-18 Thread Pirouette Cacahuète
Okay, after a few minutes under Disco, I'm still experiencing strange
delays on WiFi on my home router, Netgear R7000, very very similar to
the latencies on Mozilla's network. Revering to v34 firmware seems to
workaround the issue.

> [6.367375] iwlwifi :3d:00.0: loaded firmware version 36.9f0a2d68.0 
> op_mode iwlmvm
> [6.406151] iwlwifi :3d:00.0: Detected Intel(R) Dual Band Wireless AC 
> 8265, REV=0x230

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Expired

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-04-18 Thread Pirouette Cacahuète
Just upgraded to Disco, it seems okay, not checked if it's really fixed
or just a workaround in place.

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in libinput:
  Fix Released
Status in Linux:
  Unknown
Status in libinput package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Triaged

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/libinput/+bug/1802168/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2019-04-18 Thread Pirouette Cacahuète
None of the kernel upgrade for Cosmic would improve the situation. I've
upgraded to Disco and keeping an eye on 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/1802306

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Expired

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-03-19 Thread Pirouette Cacahuète
Can we backport to Cosmic?

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in Linux:
  Unknown
Status in libinput package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Triaged

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1802168/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-02-22 Thread Pirouette Cacahuète
> Affected by LP: #1802135?

Reading the description, it's a little bit different: in my case,
touchpad works but weirdly. Now, maybe this is the same root cause, but
the workaround is kinda different, and the upstream bug report also
documents different status / cause.

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

Title:
  Unable to get right-click working on ThinkPad T480s

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

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1802168/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-02-05 Thread Pirouette Cacahuète
I should have mentionned that it's still affecting with uptodate 18.10,
latest kernel etc.

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

Title:
  Unable to get right-click working on ThinkPad T480s

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

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1802168/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-02-05 Thread Pirouette Cacahuète
This is still affecting my system.

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

Title:
  Unable to get right-click working on ThinkPad T480s

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

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1802168/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2019-01-07 Thread Pirouette Cacahuète
Can we get any news on that?

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

Title:
  Unable to get right-click working on ThinkPad T480s

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

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1802168/+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 1802306] Re: Network connectivity lost after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

2018-11-16 Thread Pirouette Cacahuète
It started right after my upgrade to 18.10 fron 18.04, and took me a few
days to realize: at home the behavior was just that sometimes dns
lookups were slower. I first blamed systemd-resolved until I got into
the office and could debug more.

I got reports from colleagues om different distros / kernel and Wi-Fi
chips, but all iwlwifi, and firmware v36.

I'm not sure I can find time soon to play with kernels from upstream.
There was a 4.18-11 update recently, have not yet tried it. I'd need to
check the changelog to see if there's any hope.

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] Re: Network connectivity dropping after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s

2018-11-09 Thread Pirouette Cacahuète
Aruba AP225 on ArubaOS v6.5.3.3

** Summary changed:

- Network connectivity dropping after a few minutes on Intel Corporation 
Wireless 8265 / 8275 (rev 78), ThinkPad T480s
+ Network connectivity lost after a few minutes on Intel Corporation Wireless 
8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

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

Title:
  Network connectivity lost after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s, firmware v36

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] Re: Network connectivity dropping after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s

2018-11-08 Thread Pirouette Cacahuète
After extensive playing with iwlwifi, I could stop the issue by doing either:
 - modprobe iwlwifi 11n_disable=1
 - blacklist the v36 firmware /lib/firmware/iwlwifi-8265-36.ucode, driver picks 
v34 which seems to be stable

I tested the two releases of v36: 36.7596afd4.0 and 36.e91976c0.0, both
expose the same issue.

Given the impact on speed, I've chose the second solution as a
workaround.

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-08 Thread Pirouette Cacahuète
apport information

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

Title:
  Network connectivity dropping after a few minutes on Intel Corporation
  Wireless 8265 / 8275 (rev 78), ThinkPad T480s

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  STR:
   - connect to Mozilla or Mozilla Guest wifi networks

  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.

  To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2196 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802306/+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 1802306] [NEW] Network connectivity dropping after a few minutes on Intel Corporation Wireless 8265 / 8275 (rev 78), ThinkPad T480s

2018-11-08 Thread Pirouette Cacahuète
Public bug reported:

STR:
 - connect to Mozilla or Mozilla Guest wifi networks

After a few seconds / minutes (less than three in general), no more
network connectivity, but no error reported in dmesg. Only solution is
to disconnect / reconnect network.

To date, it does not happen at home, connected on a Netgear R7000 AP, the issue 
is somehow triggered by the infra at Mozilla (Paris office).
--- 
ProblemType: Bug
ApportVersion: 2.20.10-0ubuntu13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  alex   2871 F pulseaudio
CurrentDesktop: GNOME
DistroRelease: Ubuntu 18.10
HibernationDevice: RESUME=LABEL="Swap"
InstallationDate: Installed on 2012-11-03 (2196 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
MachineType: LENOVO 20L7CTO1WW
Package: linux (not installed)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
RelatedPackageVersions:
 linux-restricted-modules-4.18.0-10-generic N/A
 linux-backports-modules-4.18.0-10-generic  N/A
 linux-firmware 1.175
Tags:  cosmic
Uname: Linux 4.18.0-10-generic x86_64
UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
_MarkForUpload: True
dmi.bios.date: 09/13/2018
dmi.bios.vendor: LENOVO
dmi.bios.version: N22ET49W (1.26 )
dmi.board.asset.tag: Not Available
dmi.board.name: 20L7CTO1WW
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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
dmi.product.family: ThinkPad T480s
dmi.product.name: 20L7CTO1WW
dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
dmi.product.version: ThinkPad T480s
dmi.sys.vendor: LENOVO

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


** Tags: apport-collected cosmic

** Tags added: apport-collected cosmic

** Description changed:

  STR:
   - connect to Mozilla or Mozilla Guest wifi networks
  
  After a few seconds / minutes (less than three in general), no more
  network connectivity, but no error reported in dmesg. Only solution is
  to disconnect / reconnect network.
  
- To date, it does not happen at home, connected on a Netgear R7000 AP,
- the issue is somehow triggered by the infra at Mozilla (Paris office).
+ To date, it does not happen at home, connected on a Netgear R7000 AP, the 
issue is somehow triggered by the infra at Mozilla (Paris office).
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.10-0ubuntu13
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  alex   2871 F pulseaudio
+ CurrentDesktop: GNOME
+ DistroRelease: Ubuntu 18.10
+ HibernationDevice: RESUME=LABEL="Swap"
+ InstallationDate: Installed on 2012-11-03 (2196 days ago)
+ InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
+ MachineType: LENOVO 20L7CTO1WW
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
+ ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
+ RelatedPackageVersions:
+  linux-restricted-modules-4.18.0-10-generic N/A
+  linux-backports-modules-4.18.0-10-generic  N/A
+  linux-firmware 1.175
+ Tags:  cosmic
+ Uname: Linux 4.18.0-10-generic x86_64
+ UpgradeStatus: Upgraded to cosmic on 2018-10-22 (17 days ago)
+ UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
+ _MarkForUpload: True
+ dmi.bios.date: 09/13/2018
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: N22ET49W (1.26 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20L7CTO1WW
+ 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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
+ dmi.product.family: ThinkPad T480s
+ dmi.product.name: 20L7CTO1WW
+ dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
+ dmi.product.version: ThinkPad T480s
+ dmi.sys.vendor: LENOVO

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

Title:
  Network connectivity dropping after a few minutes on 

[Kernel-packages] [Bug 1802168] Re: Unable to get right-click working on ThinkPad T480s

2018-11-08 Thread Pirouette Cacahuète
Yes, as much as I can tell, it started after the upgrade. I did share a
link to RedHat bugzilla that describe the exact same issue, documented
to start with 4.18, provides a patch that has been confirmed on the very
same laptop that I use: I don't see the point of testing mainline 4.19.
I'd be happy to test a ubuntu 4.18 built with their patch.

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

Title:
  Unable to get right-click working on ThinkPad T480s

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

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-07 Thread Pirouette Cacahuète
apport information

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-07 Thread Pirouette Cacahuète
apport information

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

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

2018-11-07 Thread Pirouette Cacahuète
apport information

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  dmi.product.name: 20L7CTO1WW
  dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
  dmi.product.version: ThinkPad T480s
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1802168/+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 1802168] Re: Unable to get right-click working on ThinkPad T480s

2018-11-07 Thread Pirouette Cacahuète
apport information

** Tags added: apport-collected cosmic

** Description changed:

  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try within
  gnome-tweaks, whether relying on multi-finger tapping or not.
  
- Found a very very close report from RedHat, on the same model of laptop,
- around kernel 4.18, with a fix:
- https://bugzilla.redhat.com/show_bug.cgi?id=1628715
+ Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.10-0ubuntu13
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  alex   2871 F pulseaudio
+ CurrentDesktop: GNOME
+ DistroRelease: Ubuntu 18.10
+ HibernationDevice: RESUME=LABEL="Swap"
+ InstallationDate: Installed on 2012-11-03 (2195 days ago)
+ InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
+ MachineType: LENOVO 20L7CTO1WW
+ Package: linux (not installed)
+ ProcFB: 0 inteldrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
+ ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
+ RelatedPackageVersions:
+  linux-restricted-modules-4.18.0-10-generic N/A
+  linux-backports-modules-4.18.0-10-generic  N/A
+  linux-firmware 1.175
+ Tags:  cosmic
+ Uname: Linux 4.18.0-10-generic x86_64
+ UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
+ UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
+ _MarkForUpload: True
+ dmi.bios.date: 09/13/2018
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: N22ET49W (1.26 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20L7CTO1WW
+ 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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
+ dmi.product.family: ThinkPad T480s
+ dmi.product.name: 20L7CTO1WW
+ dmi.product.sku: LENOVO_MT_20L7_BU_Think_FM_ThinkPad T480s
+ dmi.product.version: ThinkPad T480s
+ dmi.sys.vendor: LENOVO

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

Title:
  Unable to get right-click working on ThinkPad T480s

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Updated to Ubuntu 18.10, I've been fighting some weird behavior of the
  touchpad. Now, right-click does not work, whatever solution I try
  within gnome-tweaks, whether relying on multi-finger tapping or not.

  Found a very very close report from RedHat, on the same model of laptop, 
around kernel 4.18, with a fix: 
https://bugzilla.redhat.com/show_bug.cgi?id=1628715
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.10-0ubuntu13
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   2871 F pulseaudio
  CurrentDesktop: GNOME
  DistroRelease: Ubuntu 18.10
  HibernationDevice: RESUME=LABEL="Swap"
  InstallationDate: Installed on 2012-11-03 (2195 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: LENOVO 20L7CTO1WW
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-10-generic 
root=UUID=45c5d738-161a-4a73-9614-c529fdf655be ro quiet splash vt.handoff=1
  ProcVersionSignature: Ubuntu 4.18.0-10.11-generic 4.18.12
  RelatedPackageVersions:
   linux-restricted-modules-4.18.0-10-generic N/A
   linux-backports-modules-4.18.0-10-generic  N/A
   linux-firmware 1.175
  Tags:  cosmic
  Uname: Linux 4.18.0-10-generic x86_64
  UpgradeStatus: Upgraded to cosmic on 2018-10-22 (16 days ago)
  UserGroups: adm cdrom dialout dip disk docker kismet libvirt libvirtd lpadmin 
plugdev sambashare sudo vboxusers video
  _MarkForUpload: True
  dmi.bios.date: 09/13/2018
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N22ET49W (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20L7CTO1WW
  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:bvrN22ET49W(1.26):bd09/13/2018:svnLENOVO:pn20L7CTO1WW:pvrThinkPadT480s:rvnLENOVO:rn20L7CTO1WW:rvrSDK0J40697WIN:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad T480s
  

  1   2   >