[Kernel-packages] [Bug 1842320] Re: Can't boot: "error: out of memory." immediately after the grub menu

2022-10-31 Thread jeremyszu
I don't think "MODULES=dep" is the proper workaround for this.

If an user somehow met this issue, then the system is not able to boot.
Users need to do many extra works to find out this workaround and do apply 
unless we make "MODULES=dep" as default setting in initramfs configs (but I 
don't think it's doable).

Based on #117, we also confirm the stock ubuntu not able to boot on some 
machines.
The fix needs to be included in the packages from ubuntu-archive as common 
solution.

Julian,

Can we go back to consider #105, #106 to try to land it in Lunar or
Kinetic first?

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

Title:
  Can't boot: "error: out of memory." immediately after the grub menu

Status in grub:
  Unknown
Status in OEM Priority Project:
  Triaged
Status in grub2-signed package in Ubuntu:
  Triaged
Status in grub2-unsigned package in Ubuntu:
  Triaged
Status in initramfs-tools package in Ubuntu:
  Won't Fix
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  [Impact]

   * In some cases, if the users’ initramfs grow bigger, then it’ll
  likely not be able to be loaded by grub2.

   * Some real cases from OEM projects:

  In many built-in 4k monitor laptops with nvidia drivers, the u-d-c
  puts the nvidia*.ko to initramfs which grows the initramfs to ~120M.
  Also the gfxpayload=auto will remain to use 4K resolution since it’s
  what EFI POST passed.

  In this case, the grub isn't able to load initramfs because the
  grub_memalign() won't be able to get suitable memory for the larger
  file:

  ```
  #0 grub_memalign (align=1, size=592214020) at ../../../grub-core/kern/mm.c:376
  #1 0x7dd7b074 in grub_malloc (size=592214020) at 
../../../grub-core/kern/mm.c:408
  #2 0x7dd7a2c8 in grub_verifiers_open (io=0x7bc02d80, type=131076)
  at ../../../grub-core/kern/verifiers.c:150
  #3 0x7dd801d4 in grub_file_open (name=0x7bc02f00 
"/boot/initrd.img-5.17.0-1011-oem",
  type=131076) at ../../../grub-core/kern/file.c:121
  #4 0x7bcd5a30 in ?? ()
  #5 0x7fe21247 in ?? ()
  #6 0x7bc030c8 in ?? ()
  #7 0x00017fe21238 in ?? ()
  #8 0x7bcd5320 in ?? ()
  #9 0x7fe21250 in ?? ()
  #10 0x in ?? ()
  ```

  Based on grub_mm_dump, we can see the memory fragment (some parts seem
  likely be used because of 4K resolution?) and doesn’t have available
  contiguous memory for larger file as:

  ```
  grub_real_malloc(...)
  ...
  if (cur->size >= n + extra)
  ```

  Based on UEFI Specification Section 7.2[1] and UEFI driver writers’
  guide 4.2.3[2], we can ask 32bits+ on AllocatePages().

  As most X86_64 platforms should support 64 bits addressing, we should
  extend GRUB_EFI_MAX_USABLE_ADDRESS to 64 bits to get more available
  memory.

   * When users grown the initramfs, then probably will get initramfs
  not found which really annoyed and impact the user experience (system
  not able to boot).

  [Test Plan]

   * detailed instructions how to reproduce the bug:

  1. Any method to grow the initramfs, such as install nvidia-driver.

  2. If developers would like to reproduce, then could dd if=/dev/random
  of=... bs=1M count=500, something like:

  ```
  $ cat /usr/share/initramfs-tools/hooks/zzz-touch-a-file
  #!/bin/sh

  PREREQ=""

  prereqs()
  {
  echo "$PREREQ"
  }

  case $1 in
  # get pre-requisites
  prereqs)
  prereqs
  exit 0
  ;;
  esac

  . /usr/share/initramfs-tools/hook-functions
  dd if=/dev/random of=${DESTDIR}/test-500M bs=1M count=500
  ```

  And then update-initramfs

   * After applying my patches, the issue is gone.

   * I did also test my test grubx64.efi in:

  1. X86_64 qemu with
  1.1. 60M initramfs + 5.15.0-37-generic kernel
  1.2. 565M initramfs + 5.17.0-1011-oem kernel

  2. Amd64 HP mobile workstation with
  2.1. 65M initramfs + 5.15.0-39-generic kernel
  2.2. 771M initramfs + 5.17.0-1011-oem kernel

  All working well.

  [Where problems could occur]

  * The changes almost in i386/efi, thus the impact will be in the i386 / 
x86_64 EFI system.
  The other change is to modify the “grub-core/kern/efi/mm.c” but I use the 
original addressing for “arm/arm64/ia64/riscv32/riscv64”.
  Thus it should not impact them.

  * There is a “#if defined(__x86_64__)” which intent to limit the >
  32bits code in i386 system and also

  ```
   #if defined (__code_model_large__)
  -#define GRUB_EFI_MAX_USABLE_ADDRESS 0x
  +#define GRUB_EFI_MAX_USABLE_ADDRESS __UINTPTR_MAX__
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x7fff
   #else
   #define GRUB_EFI_MAX_USABLE_ADDRESS 0x7fff
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x3fff
   #endif
  ```

  If everything works as expected, then i386 should working good.

  If not lucky, based on “UEFI writers’ guide”[2], the i386 will get >
  4GB memory region and never be able to access.


[Kernel-packages] [Bug 1842320] Re: Can't boot: "error: out of memory." immediately after the grub menu

2022-10-31 Thread iMac
My XPS 13 9380 (no luks) also triggers this on 5.19 after the 22.10
upgrade; I can see the initrd is about 7% bigger in 22.10 over 22.04.

 -rw-r--r--  1 root root 111203941 Oct 30 18:16 initrd.img-5.15.0-52-generic
 -rw-r--r--  1 root root 120222346 Oct 31 21:39 initrd.img-5.19.0-23-generic

#103 lays out some interesting blockers for grub2, so as of right now
there is no simple way to get upstream through ubuntu repositories as
grub2 2.06-2ubuntu12 does not have a fix.

I think it is interesting that in
https://lists.gnu.org/archive/html/grub-devel/2017-03/msg00037.html
there was pushback on autodetection to fix this, citing "that machine
that nobody heard of that will fail" however it ended up being a bunch
of not-yet-built systems that failed

Looking at initramfs-tools in Jammy, the very last changelog entry was
the change to lower compression, that is triggering this issue:

 http://changelogs.ubuntu.com/changelogs/pool/main/i/initramfs-
tools/initramfs-tools_0.140ubuntu13/changelog

 initramfs-tools (0.140ubuntu13) jammy; urgency=medium 
 
  * Lower the compression levels for zstd and lz4 (LP: #1958148)
Following the discussion on the mailing list, we have reached
a conclusion to lower the default compression levels:
- For lz4, the compression level is lowered to 2 from 9
- For zstd, the compression level is lowered to 1 from 19

Simple fix IMHO is to just go back one version.  Ubuntu main archive
doesn't include all old versions, but other mirrors do. Here are some
quick steps that let you run official binaries from Jammy under Kinetic
to work around this issue until grub2 catches up and/or they tweak
compression, or make compression more easily tunable.


wget 
https://ubuntu.repo.cure.edu.uy/mirror/pool/main/i/initramfs-tools/initramfs-tools-bin_0.140ubuntu12_amd64.deb
wget 
https://ubuntu.repo.cure.edu.uy/mirror/pool/main/i/initramfs-tools/initramfs-tools-core_0.140ubuntu12_all.deb
wget 
https://ubuntu.repo.cure.edu.uy/mirror/pool/main/i/initramfs-tools/initramfs-tools_0.140ubuntu12_all.deb
dpkg -i initramfs-tools-bin_0.140ubuntu12_amd64.deb
dpkg -i initramfs-tools-core_0.140ubuntu12_all.deb
dpkg -i initramfs-tools_0.140ubuntu12_all.deb
apt-mark hold initramfs-tools-bin
apt-mark hold initramfs-tools-core
apt-mark hold initramfs-tools
update-initramfs -u

Afterwards, big drop in initrd size. 
-rw-r--r--  1 root root 111203941 Oct 30 18:16 initrd.img-5.15.0-52-generic
-rw-r--r--  1 root root  79034965 Oct 31 22:50 initrd.img-5.19.0-23-generic

Sometime down the road, when this bug is closed, you will want to un-
hold these to restore the lastest packages

 apt-mark unhold initramfs-tools-bin
 apt-mark unhold initramfs-tools-core
 apt-mark unhold initramfs-tools

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

Title:
  Can't boot: "error: out of memory." immediately after the grub menu

Status in grub:
  Unknown
Status in OEM Priority Project:
  Triaged
Status in grub2-signed package in Ubuntu:
  Triaged
Status in grub2-unsigned package in Ubuntu:
  Triaged
Status in initramfs-tools package in Ubuntu:
  Won't Fix
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  [Impact]

   * In some cases, if the users’ initramfs grow bigger, then it’ll
  likely not be able to be loaded by grub2.

   * Some real cases from OEM projects:

  In many built-in 4k monitor laptops with nvidia drivers, the u-d-c
  puts the nvidia*.ko to initramfs which grows the initramfs to ~120M.
  Also the gfxpayload=auto will remain to use 4K resolution since it’s
  what EFI POST passed.

  In this case, the grub isn't able to load initramfs because the
  grub_memalign() won't be able to get suitable memory for the larger
  file:

  ```
  #0 grub_memalign (align=1, size=592214020) at ../../../grub-core/kern/mm.c:376
  #1 0x7dd7b074 in grub_malloc (size=592214020) at 
../../../grub-core/kern/mm.c:408
  #2 0x7dd7a2c8 in grub_verifiers_open (io=0x7bc02d80, type=131076)
  at ../../../grub-core/kern/verifiers.c:150
  #3 0x7dd801d4 in grub_file_open (name=0x7bc02f00 
"/boot/initrd.img-5.17.0-1011-oem",
  type=131076) at ../../../grub-core/kern/file.c:121
  #4 0x7bcd5a30 in ?? ()
  #5 0x7fe21247 in ?? ()
  #6 0x7bc030c8 in ?? ()
  #7 0x00017fe21238 in ?? ()
  #8 0x7bcd5320 in ?? ()
  #9 0x7fe21250 in ?? ()
  #10 0x in ?? ()
  ```

  Based on grub_mm_dump, we can see the memory fragment (some parts seem
  likely be used because of 4K resolution?) and doesn’t have available
  contiguous memory for larger file as:

  ```
  grub_real_malloc(...)
  ...
  if (cur->size >= n + extra)
  ```

  Based on UEFI Specification Section 7.2[1] and UEFI driver writers’
  guide 4.2.3[2], we can ask 32bits+ on AllocatePages().

  As most X86_64 platforms should support 64 bits addressing, we should
  extend 

[Kernel-packages] [Bug 1842320] Re: Can't boot: "error: out of memory." immediately after the grub menu

2022-10-31 Thread Andy Chi
Download ubuntu-20.04.5-desktop-amd64.iso and try to install on a HP
laptop, I can't boot into installation menu. If initrd.img lower than
100MB then everything is fine.

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

Title:
  Can't boot: "error: out of memory." immediately after the grub menu

Status in grub:
  Unknown
Status in OEM Priority Project:
  Triaged
Status in grub2-signed package in Ubuntu:
  Triaged
Status in grub2-unsigned package in Ubuntu:
  Triaged
Status in initramfs-tools package in Ubuntu:
  Won't Fix
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  [Impact]

   * In some cases, if the users’ initramfs grow bigger, then it’ll
  likely not be able to be loaded by grub2.

   * Some real cases from OEM projects:

  In many built-in 4k monitor laptops with nvidia drivers, the u-d-c
  puts the nvidia*.ko to initramfs which grows the initramfs to ~120M.
  Also the gfxpayload=auto will remain to use 4K resolution since it’s
  what EFI POST passed.

  In this case, the grub isn't able to load initramfs because the
  grub_memalign() won't be able to get suitable memory for the larger
  file:

  ```
  #0 grub_memalign (align=1, size=592214020) at ../../../grub-core/kern/mm.c:376
  #1 0x7dd7b074 in grub_malloc (size=592214020) at 
../../../grub-core/kern/mm.c:408
  #2 0x7dd7a2c8 in grub_verifiers_open (io=0x7bc02d80, type=131076)
  at ../../../grub-core/kern/verifiers.c:150
  #3 0x7dd801d4 in grub_file_open (name=0x7bc02f00 
"/boot/initrd.img-5.17.0-1011-oem",
  type=131076) at ../../../grub-core/kern/file.c:121
  #4 0x7bcd5a30 in ?? ()
  #5 0x7fe21247 in ?? ()
  #6 0x7bc030c8 in ?? ()
  #7 0x00017fe21238 in ?? ()
  #8 0x7bcd5320 in ?? ()
  #9 0x7fe21250 in ?? ()
  #10 0x in ?? ()
  ```

  Based on grub_mm_dump, we can see the memory fragment (some parts seem
  likely be used because of 4K resolution?) and doesn’t have available
  contiguous memory for larger file as:

  ```
  grub_real_malloc(...)
  ...
  if (cur->size >= n + extra)
  ```

  Based on UEFI Specification Section 7.2[1] and UEFI driver writers’
  guide 4.2.3[2], we can ask 32bits+ on AllocatePages().

  As most X86_64 platforms should support 64 bits addressing, we should
  extend GRUB_EFI_MAX_USABLE_ADDRESS to 64 bits to get more available
  memory.

   * When users grown the initramfs, then probably will get initramfs
  not found which really annoyed and impact the user experience (system
  not able to boot).

  [Test Plan]

   * detailed instructions how to reproduce the bug:

  1. Any method to grow the initramfs, such as install nvidia-driver.

  2. If developers would like to reproduce, then could dd if=/dev/random
  of=... bs=1M count=500, something like:

  ```
  $ cat /usr/share/initramfs-tools/hooks/zzz-touch-a-file
  #!/bin/sh

  PREREQ=""

  prereqs()
  {
  echo "$PREREQ"
  }

  case $1 in
  # get pre-requisites
  prereqs)
  prereqs
  exit 0
  ;;
  esac

  . /usr/share/initramfs-tools/hook-functions
  dd if=/dev/random of=${DESTDIR}/test-500M bs=1M count=500
  ```

  And then update-initramfs

   * After applying my patches, the issue is gone.

   * I did also test my test grubx64.efi in:

  1. X86_64 qemu with
  1.1. 60M initramfs + 5.15.0-37-generic kernel
  1.2. 565M initramfs + 5.17.0-1011-oem kernel

  2. Amd64 HP mobile workstation with
  2.1. 65M initramfs + 5.15.0-39-generic kernel
  2.2. 771M initramfs + 5.17.0-1011-oem kernel

  All working well.

  [Where problems could occur]

  * The changes almost in i386/efi, thus the impact will be in the i386 / 
x86_64 EFI system.
  The other change is to modify the “grub-core/kern/efi/mm.c” but I use the 
original addressing for “arm/arm64/ia64/riscv32/riscv64”.
  Thus it should not impact them.

  * There is a “#if defined(__x86_64__)” which intent to limit the >
  32bits code in i386 system and also

  ```
   #if defined (__code_model_large__)
  -#define GRUB_EFI_MAX_USABLE_ADDRESS 0x
  +#define GRUB_EFI_MAX_USABLE_ADDRESS __UINTPTR_MAX__
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x7fff
   #else
   #define GRUB_EFI_MAX_USABLE_ADDRESS 0x7fff
  +#define GRUB_EFI_MAX_ALLOCATION_ADDRESS 0x3fff
   #endif
  ```

  If everything works as expected, then i386 should working good.

  If not lucky, based on “UEFI writers’ guide”[2], the i386 will get >
  4GB memory region and never be able to access.

  [Other Info]

   * Upstream grub2 bug #61058
  https://savannah.gnu.org/bugs/index.php?61058

   * Test PPA: https://launchpad.net/~os369510/+archive/ubuntu/lp1842320

   * Test grubx64.efi:
  https://people.canonical.com/~jeremysu/lp1842320/grubx64.efi.lp1842320

   * Test source code: https://github.com/os369510/grub2/tree/lp1842320

   * If you built the package, then test grubx64.efi is under
  

[Kernel-packages] [Bug 1995238] Re: snaps randomly crash after some time

2022-10-31 Thread robin
I think it's likely that firefox crashing on bumble/whatsapp is a red
herring, a coincidence. As Donald reports, his setup crashes on any new
tabs.

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

Title:
  snaps randomly crash after some time

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

Bug description:
  This is https://forum.snapcraft.io/t/unsupported-version-0-of-verneed-
  record-linux-6-0/32160.

  When I load the web interfaces to these two services, firefox will 
immediately crash. Attempting to run from the command-line produces an error 
message as follows:
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: 
/snap/firefox/2015/usr/lib/firefox/firefox: error while loading shared 
libraries: /lib/x86_64-linux-gnu/libdl.so.2: unsupported version 0 of Verneed 
record
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: message repeated 2 times: [ 
/snap/firefox/2015/usr/lib/firefox/firefox: /lib/x86_64-linux-gnu/libdl.so.2: 
unsupported version 0 of Verdef record]

  The only way to restart firefox is to restart the computer! Logging
  out and in again, then running firefox, produces the same errors.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: firefox 1:1snap1-0ubuntu2
  Uname: Linux 6.0.6-060006-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 31 19:41:21 2022
  InstallationDate: Installed on 2019-05-26 (1253 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  SourcePackage: firefox
  UpgradeStatus: Upgraded to jammy on 2022-04-29 (184 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1995238/+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 1994079]

2022-10-31 Thread brauner
Hey Colin,

This looks to be intentional? Afaict, the -EFBIG might ceome directly
from vfs_fallocate():

/* Check for wrap through zero too */
if (((offset + len) > inode->i_sb->s_maxbytes) || ((offset + len) < 0))
return -EFBIG;

and you should see the same behavior for 64bit if you pass in -1 as
offset:

brauner@wittgenstein|~/Downloads
> sudo ./fallocate
got signal SIGXFSZ
offset: 65536 (0x1), fallocate returned: -1
got signal SIGXFSZ
offset: 4294966271 (0xfbff), fallocate returned: -1
offset: 18446744073709551615 (0x), fallocate returned: -1

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

Title:
  fallocate on 32 bit boundary on 32 bit systems with setrlimit fails to
  generate SIGXFSZ signal

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

Bug description:
  This is a corner case on 32 bit systems when using large file offsets,
  fallocate and setrlimit.

  Setting the RLIMIT_FSIZE with setrlimit to 0x and then
  fallocating 1 or more bytes at the offset of 0x should make
  the fallocate fail with EFBIG and generate a SIGXFSZ signal. On 64 bit
  platforms this works, on 32 bit platforms such as i386 Ubuntu bionic
  with 4.15 kernels it fails to generate EFBIG errors and SIGXFSZ.

  Attached is a test program to illustrate the problem. It sets the file
  size limit and allocates 1024 bytes at the boundary file size limit
  for 3 offsets:

  On 64 bit systems we get the expected results:
  got signal SIGXFSZ
  offset: 65536 (0x1), fallocate returned: -1
  got signal SIGXFSZ
  offset: 4294966271 (0xfbff), fallocate returned: -1
  got signal SIGXFSZ
  offset: 4294967295 (0x), fallocate returned: -1

  On 32 bit systems the code fails on the 0x offset:

  got signal SIGXFSZ
  offset: 65536 (0x1), fallocate returned: -1
  got signal SIGXFSZ
  offset: 4294966271 (0xfbff), fallocate returned: -1
  offset: 4294967295 (0x), fallocate returned: 0

  Attached is the reproducer.

  I found this while developing a file limit boundary test case in
  stress-ng and discovered it breaks on all 32 bit kernels (armhf, i386,
  etc), even with recent 5.15 kernels.

  This could be seen as a security issue; the sysadmin can set the file
  size limit and yet a 32 bit system can use a corner case like this to
  fallocate a much larger file by using the 0x offset and a huge
  fallocate size.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1994079/+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 1788928] Re: psmouse: after sleep/suspend thinkpad touchpad not functional

2022-10-31 Thread Gian Luca
*** This bug is a duplicate of bug 1786574 ***
https://bugs.launchpad.net/bugs/1786574

Same issue with my Thinkpad X240 with Ubuntu 22.04.1

Workaround `sudo modprobe -r psmouse; sudo modprobe psmouse` still work

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

Title:
  psmouse: after sleep/suspend thinkpad touchpad not functional

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

Bug description:
  Summary:
  The touchpad after sleep/suspend of my ThinkPad X1 will not function 
correctly.

  Expected Behavior:
  After sleep/suspend scroll works correctly.

  Actual Behavior:
  Unable to scroll or correctly click on a window and move it without reloading 
the driver

  Steps to reproduce:
  1. Install Bionic on Thinkpad X1 (4.15.0-32-generic)
  2. Open something to scroll (e.g. browser, terminal, etc.)
  3. Close lid
  4. Re-open lid once sleeping/suspended
  5. Try to scroll and note that it does not work

  Workaround:
  Run the following after re-opening the lid
  $ sudo modprobe psmouse -r; sudo modprobe psmouse

  dmesg on reload:
  [12753.847050] psmouse serio1: synaptics: queried max coordinates: x 
[..5676], y [..4758]
  [12753.879362] psmouse serio1: synaptics: queried min coordinates: x 
[1266..], y [1096..]
  [12753.879375] psmouse serio1: synaptics: Trying to set up SMBus access
  [12753.882246] psmouse serio1: synaptics: SMbus companion is not ready yet
  [12753.944774] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 
0x1e2b1, caps: 0xf003a3/0x943300/0x12e800/0x1, board id: 3072, fw id: 
1795685
  [12753.944791] psmouse serio1: synaptics: serio: Synaptics pass-through port 
at isa0060/serio1/input0
  [12753.985102] input: SynPS/2 Synaptics TouchPad as 
/devices/platform/i8042/serio1/input/input24
  [12754.619594] psmouse serio5: trackpoint: IBM TrackPoint firmware: 0x0e, 
buttons: 3/3
  [12754.823238] input: TPPS/2 IBM TrackPoint as 
/devices/platform/i8042/serio1/serio5/input/input25
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.9-0ubuntu7.2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  powersj2506 F pulseaudio
   /dev/snd/controlC0:  powersj2506 F pulseaudio
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 18.04
  HibernationDevice: RESUME=UUID=40a4eb28-4454-44f0-a377-ea611ce685bb
  InstallationDate: Installed on 2018-02-19 (185 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Alpha amd64 (20180214)
  Lsusb:
   Bus 001 Device 002: ID 8087:8001 Intel Corp. 
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 002 Device 002: ID 04f2:b45d Chicony Electronics Co., Ltd 
   Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 20BSCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.15.0-32-generic 
root=/dev/mapper/ubuntu--vg-root ro
  ProcVersionSignature: Ubuntu 4.15.0-32.35-generic 4.15.18
  RelatedPackageVersions:
   linux-restricted-modules-4.15.0-32-generic N/A
   linux-backports-modules-4.15.0-32-generic  N/A
   linux-firmware 1.173.1
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  bionic
  Uname: Linux 4.15.0-32-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip docker kvm libvirt lpadmin lxd plugdev sambashare 
sudo
  _MarkForUpload: True
  dmi.bios.date: 09/13/2017
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N14ET42W (1.20 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20BSCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0E50512 STD
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.modalias: 
dmi:bvnLENOVO:bvrN14ET42W(1.20):bd09/13/2017:svnLENOVO:pn20BSCTO1WW:pvrThinkPadX1Carbon3rd:rvnLENOVO:rn20BSCTO1WW:rvrSDK0E50512STD:cvnLENOVO:ct10:cvrNone:
  dmi.product.family: ThinkPad X1 Carbon 3rd
  dmi.product.name: 20BSCTO1WW
  dmi.product.version: ThinkPad X1 Carbon 3rd
  dmi.sys.vendor: LENOVO

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

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

2022-10-31 Thread Alex Torkelson
apport information

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  alex   1773 F pulseaudio
   /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
   /dev/snd/controlC1:  alex   1773 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  MachineType: To be filled by O.E.M. To be filled by O.E.M.
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-52-generic N/A
   linux-backports-modules-5.15.0-52-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.6
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  Tags:  wayland-session jammy
  Uname: Linux 5.15.0-52-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: 04/07/2014
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 2501
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: M5A99FX PRO R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev 1.xx
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: To be filled by O.E.M.
  dmi.product.sku: SKU
  dmi.product.version: To be filled by O.E.M.
  dmi.sys.vendor: To be filled by O.E.M.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1995228] Re: Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Alex Torkelson
apport information

** Tags added: apport-collected

** Description changed:

  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.
  
  I also perform updates every week, and depend on a wireless connection,
  so this is currently a huge issue in terms of actually functioning on
  Ubuntu.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu82.1
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  alex   1773 F pulseaudio
+  /dev/snd/pcmC0D0p:   alex   1773 F...m pulseaudio
+  /dev/snd/controlC1:  alex   1773 F pulseaudio
+ CRDA: N/A
+ CasperMD5CheckResult: pass
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 22.04
+ InstallationDate: Installed on 2022-06-22 (131 days ago)
+ InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
+ MachineType: To be filled by O.E.M. To be filled by O.E.M.
+ Package: linux (not installed)
+ ProcEnviron:
+  TERM=xterm-256color
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
+ ProcFB: 0 radeondrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-52-generic 
root=UUID=e66ca7f7-f3f6-487c-967c-4293c9c2df1d ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
+ RelatedPackageVersions:
+  linux-restricted-modules-5.15.0-52-generic N/A
+  linux-backports-modules-5.15.0-52-generic  N/A
+  linux-firmware 20220329.git681281e4-0ubuntu3.6
+ RfKill:
+  0: phy0: Wireless LAN
+   Soft blocked: no
+   Hard blocked: no
+ Tags:  wayland-session jammy
+ Uname: Linux 5.15.0-52-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: 04/07/2014
+ dmi.bios.release: 4.6
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 2501
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: M5A99FX PRO R2.0
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: Rev 1.xx
+ dmi.chassis.asset.tag: To Be Filled By O.E.M.
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: To Be Filled By O.E.M.
+ dmi.chassis.version: To Be Filled By O.E.M.
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2501:bd04/07/2014:br4.6:svnTobefilledbyO.E.M.:pnTobefilledbyO.E.M.:pvrTobefilledbyO.E.M.:rvnASUSTeKCOMPUTERINC.:rnM5A99FXPROR2.0:rvrRev1.xx:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:skuSKU:
+ dmi.product.family: To be filled by O.E.M.
+ dmi.product.name: To be filled by O.E.M.
+ dmi.product.sku: SKU
+ dmi.product.version: To be filled by O.E.M.
+ dmi.sys.vendor: To be filled by O.E.M.

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   

[Kernel-packages] [Bug 1995228] Re: Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Alex Torkelson
Correction, random drop just happened again. Two hours uninterrupted,
then it happened. Connected right back up.

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1995228] Re: Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Alex Torkelson
Feel free to close this request - I have discovered that the wireless
connectivity drops disappeared so I suspect something may have taken
place in the background.

Further info: I have Ubuntu/Windows 10 on separate drives, on the same
device. Windows 10 didn't have any issue with wireless connectivity
dropping, but neither is Ubuntu as of today.

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1992679] Re: Can not login after new kernel installed (nvidia driver crashed)

2022-10-31 Thread vodopad27
+ added xserver-xorg-video-intel to related packages. Probably related
with isse. As far as i know xserver-xorg-video-intel package contain
intel driver package.

** Also affects: xserver-xorg-video-intel (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Can not login after new kernel installed (nvidia driver crashed)

Status in linux package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-510 package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-515 package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  New
Status in linux source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-510 source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-515 source package in Jammy:
  Confirmed
Status in xserver-xorg-video-intel source package in Jammy:
  New

Bug description:
  Hello. Today i have installed new kernel from. I installed 5.15.0-50
  and after that i can not login to system... I see boot text, but after
  booting i see black log screen and can not login. I able boot and
  login with old kernel  (5.15.0-48).

  I updated these packages:
  Install: linux-headers-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-extra-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-headers-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-image-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic)
  Upgrade: linux-headers-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), 
google-chrome-stable:amd64 (106.0.5249.103-1, 106.0.5249.119-1), 
linux-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), linux-image-generic:amd64 
(5.15.0.48.48, 5.15.0.50.50), linux-tools-generic:amd64 (5.15.0.48.48, 
5.15.0.50.50), linux-cloud-tools-generic:amd64 (5.15.0.48.48, 5.15.0.50.50)

  Updated logs see in attachement.

  Logs from journalctl see in attachements.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-50-generic 5.15.0-50.56
  ProcVersionSignature: Ubuntu 5.15.0-48.54-generic 5.15.53
  Uname: Linux 5.15.0-48-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  vodka  1819 F pulseaudio
   /dev/snd/controlC1:  vodka  1819 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Wed Oct 12 19:56:43 2022
  InstallationDate: Installed on 2018-05-02 (1623 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 003: ID 09da:fa18 A4Tech Co., Ltd. USB Device
   Bus 001 Device 002: ID 046d:c084 Logitech, Inc. G203 Gaming Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Gigabyte Technology Co., Ltd. H610M S2H DDR4
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-48-generic 
root=UUID=b27e8e45-cedd-4ab6-b2e6-ab6bef5e9336 ro
  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-48-generic N/A
   linux-backports-modules-5.15.0-48-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.5
  RfKill:

  SourcePackage: linux
  UpgradeStatus: Upgraded to jammy on 2022-04-27 (167 days ago)
  dmi.bios.date: 03/28/2022
  dmi.bios.release: 5.24
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: F7a
  dmi.board.asset.tag: Default string
  dmi.board.name: H610M S2H DDR4
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrF7a:bd03/28/2022:br5.24:svnGigabyteTechnologyCo.,Ltd.:pnH610MS2HDDR4:pvr-CF:rvnGigabyteTechnologyCo.,Ltd.:rnH610MS2HDDR4:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:skuDefaultstring:
  dmi.product.family: H610 MB
  dmi.product.name: H610M S2H DDR4
  dmi.product.sku: Default string
  dmi.product.version: -CF
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


-- 
Mailing list: 

[Kernel-packages] [Bug 1992679] Re: Can not login after new kernel installed (nvidia driver crashed)

2022-10-31 Thread vodopad27
I found the solution!

On logs i saw this:
окт 31 19:45:11 vodka-PC kernel: i915 :00:02.0: [drm] *ERROR* Unclaimed 
access detected prior to suspending

And just for test i decided to disable internal videocard (HD 730) and
problem has gone! Now i have fast boot and no issue! I rebooted two
times and all fine.

I disabled internal videocard on motherboard bios. Please, try and
confirm solution.

Probably there is no only nvidia issue, the issue related to intel
drivers + nvidia drivers together?

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

Title:
  Can not login after new kernel installed (nvidia driver crashed)

Status in linux package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-510 package in Ubuntu:
  Confirmed
Status in nvidia-graphics-drivers-515 package in Ubuntu:
  Confirmed
Status in xserver-xorg-video-intel package in Ubuntu:
  New
Status in linux source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-510 source package in Jammy:
  Confirmed
Status in nvidia-graphics-drivers-515 source package in Jammy:
  Confirmed
Status in xserver-xorg-video-intel source package in Jammy:
  New

Bug description:
  Hello. Today i have installed new kernel from. I installed 5.15.0-50
  and after that i can not login to system... I see boot text, but after
  booting i see black log screen and can not login. I able boot and
  login with old kernel  (5.15.0-48).

  I updated these packages:
  Install: linux-headers-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-modules-extra-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-cloud-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-headers-5.15.0-50:amd64 (5.15.0-50.56, automatic), 
linux-image-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic), 
linux-tools-5.15.0-50-generic:amd64 (5.15.0-50.56, automatic)
  Upgrade: linux-headers-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), 
google-chrome-stable:amd64 (106.0.5249.103-1, 106.0.5249.119-1), 
linux-generic:amd64 (5.15.0.48.48, 5.15.0.50.50), linux-image-generic:amd64 
(5.15.0.48.48, 5.15.0.50.50), linux-tools-generic:amd64 (5.15.0.48.48, 
5.15.0.50.50), linux-cloud-tools-generic:amd64 (5.15.0.48.48, 5.15.0.50.50)

  Updated logs see in attachement.

  Logs from journalctl see in attachements.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-50-generic 5.15.0-50.56
  ProcVersionSignature: Ubuntu 5.15.0-48.54-generic 5.15.53
  Uname: Linux 5.15.0-48-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  vodka  1819 F pulseaudio
   /dev/snd/controlC1:  vodka  1819 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Wed Oct 12 19:56:43 2022
  InstallationDate: Installed on 2018-05-02 (1623 days ago)
  InstallationMedia: Ubuntu 18.04 LTS "Bionic Beaver" - Release amd64 (20180426)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. Hub
   Bus 001 Device 003: ID 09da:fa18 A4Tech Co., Ltd. USB Device
   Bus 001 Device 002: ID 046d:c084 Logitech, Inc. G203 Gaming Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: Gigabyte Technology Co., Ltd. H610M S2H DDR4
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-48-generic 
root=UUID=b27e8e45-cedd-4ab6-b2e6-ab6bef5e9336 ro
  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-48-generic N/A
   linux-backports-modules-5.15.0-48-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.5
  RfKill:

  SourcePackage: linux
  UpgradeStatus: Upgraded to jammy on 2022-04-27 (167 days ago)
  dmi.bios.date: 03/28/2022
  dmi.bios.release: 5.24
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: F7a
  dmi.board.asset.tag: Default string
  dmi.board.name: H610M S2H DDR4
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.board.version: x.x
  dmi.chassis.asset.tag: Default string
  dmi.chassis.type: 3
  dmi.chassis.vendor: Default string
  dmi.chassis.version: Default string
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvrF7a:bd03/28/2022:br5.24:svnGigabyteTechnologyCo.,Ltd.:pnH610MS2HDDR4:pvr-CF:rvnGigabyteTechnologyCo.,Ltd.:rnH610MS2HDDR4:rvrx.x:cvnDefaultstring:ct3:cvrDefaultstring:skuDefaultstring:
  dmi.product.family: H610 MB
  dmi.product.name: H610M S2H DDR4
  dmi.product.sku: Default 

[Kernel-packages] [Bug 1995228] Re: Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Alex Torkelson
Hi Chris,

This is actually my very first time using launchpad.net or reporting a
Ubuntu issue after using it for a year now, so I'll admit ignorance on
bug reporting.

But yes, at the moment I am currently on 22.04.1 LTS (Settings > About)
and a recent update would cause random connectivity drops, followed by
re-connection - and would happen every several minutes.

Is it possible that I used the wrong method for reporting this kind of
issue?

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1982833] Re: Bump (kernel) '-mtune' to z16 / arch14 with 23.04

2022-10-31 Thread Frank Heimes
** Changed in: ubuntu-z-systems
   Status: New => Confirmed

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

Title:
  Bump (kernel) '-mtune' to z16 / arch14 with 23.04

Status in Ubuntu on IBM z Systems:
  Confirmed
Status in gcc-12 package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Consider to bump the kernel '-mtune' to z16 (equals arch14), starting
  with 23.04.

  Discuss with IBM Z team.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1982833/+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 1982833] Re: Bump (kernel) '-mtune' to z16 / arch14 with 23.04

2022-10-31 Thread Dimitri John Ledkov
https://lists.ubuntu.com/archives/kernel-team/2022-October/134417.html

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

Title:
  Bump (kernel) '-mtune' to z16 / arch14 with 23.04

Status in Ubuntu on IBM z Systems:
  New
Status in gcc-12 package in Ubuntu:
  New
Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Consider to bump the kernel '-mtune' to z16 (equals arch14), starting
  with 23.04.

  Discuss with IBM Z team.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1982833/+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 1995296] [NEW] mlx-bootctl: support icm carveout eeprom region read/write

2022-10-31 Thread Asmaa Mnebhi
Public bug reported:

SRU Justification:

[Impact]

The BlueField-3 ICM carveout feature will enable NIC FW to bypass the SMMU 
block to access DRAM memory.
The amount of memory accessible by FW will be controlled by ARM. This patch 
enables setting the size of the large ICM carveout from userspace. The max size 
is 1TB, has a granularity of 128MB and will be passed
and printed in hex. The size unit is MB.

[Fix]

* Support SMC calls to control the large ICM carveout size.

[Test Case]

* Only valid testing on BlueField-3 real hardware.
* set the region size from sysfs and NIC FW will test that it has access to the 
entire region requested.

[Regression Potential]

* This code doesn't really have a negative impact on the functionality of the 
mlxbf-bootctl driver itself but could be a risk for the overall boot if not 
used/tested properly.
* memory region requested is too large, adn linux cannot boot as a result. The 
memory allocated for the ICM carveout cannot be accessed by linux.
* the icmc size is not passed properly to NIC FW

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

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

Title:
  mlx-bootctl: support icm carveout eeprom region read/write

Status in linux-bluefield package in Ubuntu:
  New

Bug description:
  SRU Justification:

  [Impact]

  The BlueField-3 ICM carveout feature will enable NIC FW to bypass the SMMU 
block to access DRAM memory.
  The amount of memory accessible by FW will be controlled by ARM. This patch 
enables setting the size of the large ICM carveout from userspace. The max size 
is 1TB, has a granularity of 128MB and will be passed
  and printed in hex. The size unit is MB.

  [Fix]

  * Support SMC calls to control the large ICM carveout size.

  [Test Case]

  * Only valid testing on BlueField-3 real hardware.
  * set the region size from sysfs and NIC FW will test that it has access to 
the entire region requested.

  [Regression Potential]

  * This code doesn't really have a negative impact on the functionality of the 
mlxbf-bootctl driver itself but could be a risk for the overall boot if not 
used/tested properly.
  * memory region requested is too large, adn linux cannot boot as a result. 
The memory allocated for the ICM carveout cannot be accessed by linux.
  * the icmc size is not passed properly to NIC FW

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "RfKill.txt"
   https://bugs.launchpad.net/bugs/1966793/+attachment/5628046/+files/RfKill.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] ProcModules.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628045/+files/ProcModules.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

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

2022-10-31 Thread Jonathan Hayes
apport information

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

** Description changed:

  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04
  
  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324
  
  错误信息:
- [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu 
- [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021 
- [ 60.882514] Call Trace: 
- [ 60.882517]  
- [ 60.882521] show_stack+ 0x52/0x58 
- [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f 
- [ 60.882541] dump_stack+ 0x10/0x12 
- [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi] 
- [ 60.882582] ?wait_woken+ 0x70/0x70 
+ [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
+ [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
+ [ 60.882514] Call Trace:
+ [ 60.882517] 
+ [ 60.882521] show_stack+ 0x52/0x58
+ [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
+ [ 60.882541] dump_stack+ 0x10/0x12
+ [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
+ [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
- [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi] 
- [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm] 
- [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm] 
- [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm] 
- [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi] 
- [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm] 
- [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm] 
- [ 60.882799] drv_start+0x4f/0xe0 [mac80211] 
+ [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
+ [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
+ [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
+ [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
+ [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
+ [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
+ [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
+ [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
- [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211] 
- [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211] 
- [ 60.883048] __dev_open+ 0xf0/0x1c0 
- [ 60.883054] __dev_change_ flags+0x1a3/ 0x220 
- [ 60.883058] dev_change_ flags+0x26/ 0x60 
- [ 60.883061] devinet_ ioctl+0x598/ 0x6f0 
- [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075 
- ]?_copy_from_用户+0x2e/ 0x60 
- [60.883082] inet_ioctl+ 0x165/0x190 
- [60.883088] sock_do_ioctl+0x42/ 0x100 
- [60.883093]?do_readlinkat+ 0x10f/0x120 
- [60.883099] sock_ioctl+ 0xef/0x310 
- [60.883103]?do_syscall_ 64+0x69/ 0xc0 
- [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0 
- [ 60.883116] do_syscall_ 64+0x59/ 0xc0 
- [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0 
- [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0 
- [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133 
- ]?__x64_sys_ readlink+ 0x1e/0x30 
+ [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
+ [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
+ [ 60.883048] __dev_open+ 0xf0/0x1c0
+ [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
+ [ 60.883058] dev_change_ flags+0x26/ 0x60
+ [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
+ [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
+ ]?_copy_from_用户+0x2e/ 0x60
+ [60.883082] inet_ioctl+ 0x165/0x190
+ [60.883088] sock_do_ioctl+0x42/ 0x100
+ [60.883093]?do_readlinkat+ 0x10f/0x120
+ [60.883099] sock_ioctl+ 0xef/0x310
+ [60.883103]?do_syscall_ 64+0x69/ 0xc0
+ [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
+ [ 60.883116] do_syscall_ 64+0x59/ 0xc0
+ [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
+ [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
+ [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
+ ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
- [60.883142]?do_syscall_ 64+0x69/ 0xc0 
- [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae 
- [ 60.883152] RIP: 0033:0x7f66c7592aff 
- [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04 
- 252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010 
- [ 60.883168] RAX: ffda RBX: 0001 RCX: 
7f66c7592aff 
+ [60.883142]?do_syscall_ 64+0x69/ 0xc0
+ [ 60.883147] entry_SYSCALL_ 

[Kernel-packages] [Bug 1966793] WifiSyslog.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "WifiSyslog.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628048/+files/WifiSyslog.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] UdevDb.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1966793/+attachment/5628047/+files/UdevDb.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] PaInfo.txt

2022-10-31 Thread Jonathan Hayes
apport information

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

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] ProcEnviron.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628043/+files/ProcEnviron.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628044/+files/ProcInterrupts.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] ProcCpuinfoMinimal.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628042/+files/ProcCpuinfoMinimal.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] 

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1966793/+attachment/5628037/+files/Lsusb.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628041/+files/ProcCpuinfo.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] Lspci.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1966793/+attachment/5628035/+files/Lspci.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] Lspci-vt.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628036/+files/Lspci-vt.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628039/+files/Lsusb-v.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

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

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628038/+files/Lsusb-t.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] IwConfig.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "IwConfig.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628034/+files/IwConfig.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] CurrentDmesg.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628033/+files/CurrentDmesg.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] AlsaInfo.txt

2022-10-31 Thread Jonathan Hayes
apport information

** Attachment added: "AlsaInfo.txt"
   
https://bugs.launchpad.net/bugs/1966793/+attachment/5628032/+files/AlsaInfo.txt

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] ?do_syscall_ 64+0x69/ 0xc0
  [ 60.883129] ?syscall_exit_to_user_mode + 0x27/0x50 [ 60.883133
  ]?__x64_sys_ readlink+ 0x1e/0x30
  [60.883137]?do_syscall_ 64+0x69/ 0xc0
  [60.883142]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883147] entry_SYSCALL_ 64_after_ hwframe+ 0x44 /0xae
  [ 60.883152] RIP: 0033:0x7f66c7592aff
  [ 60.883158] Code: 00 48 89 44 24 18 31 c0 48 8d 44 24 60 c7 04 24 10 00 00 
00 48 89 44 24 08 48 8d 44 24 20 48 89 44 24 10 b8 10 00 00 00 0f 05 <41> 89 c0 
3d 00 f0 ff ff 77 1f 48 8b 44 24 18 64 48 2b 04
  252316 00 [0SP:0] 0.0 :7ffc16 8507c0 EFLAGS: 0246 ORIG_RAX: 
0010
  [ 60.883168] RAX: ffda RBX: 0001 RCX: 7f66c7592aff
  [ 60.883171] RDX: 7ffc16850820 RSI: 8914 RDI: 0009
  [ 60.883174] RBP: 0009 R08:  R09: 55e021909e90
  [ 60.883176] R10: 0007 R11: 0246 R12: 55e02190e028
  [ 60.883178] R13:  R14: 7ffc16850820 R15: 0005
  [ 60.883182] 
  [ 60.883206] iwlwifi :00 :14.3: 未能发送PER_PLATFORM_ANT_GAIN_ CMD (-5)
  [60.894910] iwlwifi :00:14.3: mac start retry 1
  [61.068762] iwlwifi :00:14.3: 检测到微码软件错误。重新启动 0x0。
  [61.068863] iwlwifi :00:14.3:启动 IWL 错误日志转储:
  [61.068866] iwlwifi :00:14.3:传输状态:0x004B,有效:6
  [61.068871] iwlwifi :00:14.3:加载的固件版本:66.f1c864e0.0 QuZ-a0- jf-b0-66。ucode
  [61.068874] iwlwifi :00:14.3:0x0071 | NMI_INTERRUPT_ UMAC_FATAL
  [61.068878] iwlwifi :00:14.3:0x22F0 | trm_hw_status0
  [61.068881] iwlwifi :00:14.3:0x | trm_hw_status1
  [61.068883] iwlwifi :00:14.3:0x004C2726 | branchlink2
  [61.068886] iwlwifi :00:14.3:0x004B974E | 中断
  链接1 [61.068889] iwlwifi :00:14.3:0x004B974E | 中断
  链接2 [61.068891] iwlwifi :00:14.3:0x004BD86E | 数据1
  [61.068893] iwlwifi :00:14.3:0x1000 | 数据2 [ 61.068896
  ] iwlwifi :00:14.3:0x | 数据3
  [61.068898]iwlwifi :00:14.3:0x | 信标时间
  [61.068901] iwlwifi :00:14.3:0x000215F2 | tsf 低
  [61.068903] iwlwifi :00:14.3:0x | tsf 嗨
  [61.068906] iwlwifi 

[Kernel-packages] [Bug 1966793] Re: Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar 11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

2022-10-31 Thread Jonathan Hayes
ProblemType: Bug
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/hwC0D2', 
'/dev/snd/pcmC0D5p', '/dev/snd/pcmC0D4p', '/dev/snd/pcmC0D3p', 
'/dev/snd/pcmC0D1c', '/dev/snd/pcmC0D1p', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D7c', '/dev/snd/pcmC0D6c', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
CRDA: N/A
CasperMD5CheckResult: unknown
CurrentDesktop: LXQt
Dependencies: firmware-sof-signed 2.0-1ubuntu3
DistroRelease: Ubuntu 22.04
InstallationDate: Installed on 2022-04-26 (187 days ago)
InstallationMedia: Lubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
MachineType: HP HP ProBook 440 G8 Notebook PC
Package: linux-firmware 20220329.git681281e4-0ubuntu3.3
PackageArchitecture: all
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-41-generic 
root=UUID=7e1db316-a53e-4323-852f-d184357ad5f0 ro quiet splash vt.handoff=7
ProcVersionSignature: Ubuntu 5.15.0-41.44-generic 5.15.39
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-41-generic N/A
 linux-backports-modules-5.15.0-41-generic  N/A
 linux-firmware 20220329.git681281e4-0ubuntu3.3
Tags:  jammy package-from-proposed
Uname: Linux 5.15.0-41-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
_MarkForUpload: True
dmi.bios.date: 03/12/2022
dmi.bios.release: 8.20
dmi.bios.vendor: HP
dmi.bios.version: T70 Ver. 01.08.20
dmi.board.name: 87E0
dmi.board.vendor: HP
dmi.board.version: KBC Version 33.19.00
dmi.chassis.type: 10
dmi.chassis.vendor: HP
dmi.ec.firmware.release: 51.25
dmi.modalias: 
dmi:bvnHP:bvrT70Ver.01.08.20:bd03/12/2022:br8.20:efr51.25:svnHP:pnHPProBook440G8NotebookPC:pvr:rvnHP:rn87E0:rvrKBCVersion33.19.00:cvnHP:ct10:cvr:sku28K85UTR:
dmi.product.family: 103C_5336AN HP ProBook
dmi.product.name: HP ProBook 440 G8 Notebook PC
dmi.product.sku: 28K85UTR
dmi.sys.vendor: HP


** Tags added: apport-collected jammy package-from-proposed

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

Title:
  Wi-Fi 6 AX201 not working on 5.15.0-23-generic #23-Ubuntu SMP Fri Mar
  11 14:54:05 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

Status in linux-firmware package in Ubuntu:
  Invalid
Status in linux-firmware source package in Jammy:
  Incomplete

Bug description:
  此问题存在于 HP ProBook 440 G8
  描述:Ubuntu Jammy Jellyfish(开发分支)
  版本:22.04

  Wifi 适配器信息:
     描述:无线接口
     产品:Wi-Fi 6 AX201
     供应商:Intel Corporation
     物理 ID:14.3
     总线信息:pci@:00:14.3
     逻辑名称:wlp0s20f3
     版本:20
     序列号:28:d0:ea:21: 6a:a1
     宽度:64 位
     时钟:33MHz
     功能:bus_master cap_list 以太网物理无线
     配置:广播=yes driver=iwlwifi driverversion= 5.15.0- 23-generic firmware= 
66.f1c864e0。0 QuZ-a0-jf-b0-66.u 延迟=0 链接=无组播=是无线=IEEE 802.11
     资源:iomemory:600-5ff irq:16 内存:600324c000-600324

  错误信息:
  [60.882505] CPU:6 PID:630 通讯:wpa_supplicant 未污染 5.15.0-23-generic #23-Ubuntu
  [60.882512] 硬件名称:HP HP ProBook 440 G8 Notebook PC/8807,BIOS T85 Ver. 01.06.03 
08/26/2021
  [ 60.882514] Call Trace:
  [ 60.882517] 
  [ 60.882521] show_stack+ 0x52/0x58
  [ 60.882532] dump_stack_ lvl+0x4a/ 0x5f
  [ 60.882541] dump_stack+ 0x10/0x12
  [ 60.882545] iwl_trans_ txq_send_ hcmd_sync+ 0x345 /0x350 [iwlwifi]
  [ 60.882582] ?wait_woken+ 0x70/0x70
  [60.882589] iwl_trans_txq_send_hcmd + 0xaa/ 0x140 [iwlwifi]
  [ 60.882619] iwl_trans_ send_cmd+ 0x84/0x110 [iwlwifi]
  [ 60.882646] iwl_mvm_ send_cmd_ pdu+0x6d/ 0xc0 [iwlmvm]
  [ 60.882675] iwl_mvm_ ppag_send_ cmd+0x1b5/ 0x270 [iwlmvm]
  [ 60.882695] iwl_mvm_ up+0x656/ 0xa80 [iwlmvm]
  [ 60.882716] ? __iwl_err。cold+0x25/ 0x2a [iwlwifi]
  [ 60.882755] __iwl_mvm_ mac_start+ 0x2b/0x1a0 [iwlmvm]
  [ 60.882777] iwl_mvm_ mac_start+ 0x5f/0xc0 [iwlmvm]
  [ 60.882799] drv_start+0x4f/0xe0 [mac80211]
  [ 60.882858] ieee80211_ do_open + 0x488/0x9c0 [ mac80211]
  [60.882926]?ieee80211_ check_concurren t_iface+ 0x158/0x1c0 [mac80211]
  [ 60.882987] ieee80211_ open+0x6c/ 0x90 [mac80211]
  [ 60.883048] __dev_open+ 0xf0/0x1c0
  [ 60.883054] __dev_change_ flags+0x1a3/ 0x220
  [ 60.883058] dev_change_ flags+0x26/ 0x60
  [ 60.883061] devinet_ ioctl+0x598/ 0x6f0
  [60.883068]?netdev_name_node_lookup_rcu + 0x6b / 0x80 [ 60.883075
  ]?_copy_from_用户+0x2e/ 0x60
  [60.883082] inet_ioctl+ 0x165/0x190
  [60.883088] sock_do_ioctl+0x42/ 0x100
  [60.883093]?do_readlinkat+ 0x10f/0x120
  [60.883099] sock_ioctl+ 0xef/0x310
  [60.883103]?do_syscall_ 64+0x69/ 0xc0
  [ 60.883110] __x64_sys_ ioctl+0x91/ 0xc0
  [ 60.883116] do_syscall_ 64+0x59/ 0xc0
  [ 60.883120] ? do_syscall_ 64+0x69/ 0xc0
  [ 60.883125] 

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

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

apport-collect 1982833

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

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

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

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

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

Title:
  Bump (kernel) '-mtune' to z16 / arch14 with 23.04

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

Bug description:
  Consider to bump the kernel '-mtune' to z16 (equals arch14), starting
  with 23.04.

  Discuss with IBM Z team.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1982833/+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 1973098] Re: Intermittent freezing and LSPCON init failed kernel messages

2022-10-31 Thread Albert Schotschneider
I am having the same problem here.

5.15.0-52-generic #58~20.04.1-Ubuntu

I do have the same system as @Brandon W. King, also same BIOS version.

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

Title:
  Intermittent freezing and LSPCON init failed kernel messages

Status in linux package in Ubuntu:
  Confirmed
Status in linux-signed-oem-5.14 package in Ubuntu:
  Confirmed

Bug description:
  Hardware: Lenovo ThinkPad model 20ST0055AU

  Boot messages show:
  [6.397804] [drm:lspcon_init [i915]] *ERROR* Failed to probe lspcon
  [6.397901] [drm] Initialized i915 1.6.0 20201103 for :00:02.0 on 
minor 0

  During normal operation there will intermittently be a freeze for a
  second or two and then more of these messages display in the kernel
  logs:

  [  505.487006] [drm:lspcon_init [i915]] *ERROR* Failed to probe lspcon
  [  505.487072] [drm:lspcon_resume [i915]] *ERROR* LSPCON init failed on port D
  [  506.747930] [drm:lspcon_init [i915]] *ERROR* Failed to probe lspcon
  [  506.748018] [drm:lspcon_resume [i915]] *ERROR* LSPCON init failed on port D

  The system will then become operational again.

  The system is still usable, but it is annoying.

  I've switched onto this OEM kernel from the generic kernel (5.13), as
  I had other problems with 5.13 regarding external displays not coming
  back after idle timeouts.

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: linux-image-5.14.0-1036-oem 5.14.0-1036.40
  ProcVersionSignature: Ubuntu 5.14.0-1036.40-oem 5.14.21
  Uname: Linux 5.14.0-1036-oem x86_64
  ApportVersion: 2.20.11-0ubuntu27.23
  Architecture: amd64
  CasperMD5CheckResult: skip
  CurrentDesktop: ubuntu:GNOME
  Date: Thu May 12 10:29:31 2022
  InstallationDate: Installed on 2021-05-05 (371 days ago)
  InstallationMedia: Ubuntu 20.04.2.0 LTS "Focal Fossa" - Release amd64 
(20210209.1)
  SourcePackage: linux-signed-oem-5.14
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1973098/+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 1982833] Re: Bump (kernel) '-mtune' to z16 / arch14 with 23.04

2022-10-31 Thread Frank Heimes
** Changed in: linux (Ubuntu)
   Status: Incomplete => 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/1982833

Title:
  Bump (kernel) '-mtune' to z16 / arch14 with 23.04

Status in Ubuntu on IBM z Systems:
  New
Status in gcc-12 package in Ubuntu:
  New
Status in linux package in Ubuntu:
  New

Bug description:
  Consider to bump the kernel '-mtune' to z16 (equals arch14), starting
  with 23.04.

  Discuss with IBM Z team.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-z-systems/+bug/1982833/+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 1991725] Re: fails to sign kernel modules

2022-10-31 Thread Aaron Rainbolt
** Description changed:

+ [Impact]
+ 
+ With the current state of the DKMS package, if a user attempts to
+ install any package that includes a third-party driver (Broadcom WiFi,
+ VirtualBox, v4l2loobpack, etc.), the process of signing the newly built
+ driver with a MOK key will fail silently. This means that any packages
+ and hardware that require third-party drivers are currently unusable on
+ a system with Secure Boot. This bug has been tested and verified to
+ occur with the bcmwl-kernel-source package, but also is very likely to
+ affect any other packages that use DKMS modules.
+ 
+ This fix for this is in the -proposed pocket at the moment, and has been
+ tested to work.
+ 
+ [Test plan]
+ 
+ 1: Obtain a system with UEFI, Secure Boot, and Broadcom WiFi. (If Broadcom 
WiFi is not an option, install VirtualBox in Step 9 rather than 
bcmwl-kernel-source.)
+ 2. Install Ubuntu on the system, but do not enable the installation of 
third-party drivers.
+ 3. When installation finishes, reboot.
+ 4. When the system boots into the Ubuntu desktop, connect to the Internet 
without WiFi, and update all packages on the system.
+ 5. Enable -proposed.
+ 6. Update *just* the DKMS package with "sudo apt install dkms".
+ 7. Disable -proposed.
+ 8. Reboot.
+ 9. Run "sudo apt install bcmwl-kernel-source". The WiFi module should 
immediately begin working properly.
+ 
+ [Where problems could occur]
+ 
+ Theoretically, a bug in the code could result in DKMS drivers still not
+ being signed in some instances (though there are no known instances
+ where this happens). But as Secure Boot + DKMS is already entirely
+ broken, even this kind of breakage would be an improvement beyond what
+ we already have. Given the rather obvious nature of such breakage,
+ thorough testing should be able to detect it with ease.
+ 
+ ---
+ 
+ Original bug reports:
+ 
  Expected on kinetic:  dkms will sign built modules with MOK key if
  requested.
  
  What happens:
  dkms outputs "Binary kmod-sign not found, modules won't be signed"
  
  Fix:
  update dkms to 3.0.7:  https://github.com/dell/dkms/pull/242
  
  ---
  
  dkms 3.0.6-2ubuntu2 is being tested in kinetic-proposed to resolve this
  issue

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

Title:
  fails to sign kernel modules

Status in Release Notes for Ubuntu:
  Fix Released
Status in dkms package in Ubuntu:
  Fix Committed

Bug description:
  [Impact]

  With the current state of the DKMS package, if a user attempts to
  install any package that includes a third-party driver (Broadcom WiFi,
  VirtualBox, v4l2loobpack, etc.), the process of signing the newly
  built driver with a MOK key will fail silently. This means that any
  packages and hardware that require third-party drivers are currently
  unusable on a system with Secure Boot. This bug has been tested and
  verified to occur with the bcmwl-kernel-source package, but also is
  very likely to affect any other packages that use DKMS modules.

  This fix for this is in the -proposed pocket at the moment, and has
  been tested to work.

  [Test plan]

  1: Obtain a system with UEFI, Secure Boot, and Broadcom WiFi. (If Broadcom 
WiFi is not an option, install VirtualBox in Step 9 rather than 
bcmwl-kernel-source.)
  2. Install Ubuntu on the system, but do not enable the installation of 
third-party drivers.
  3. When installation finishes, reboot.
  4. When the system boots into the Ubuntu desktop, connect to the Internet 
without WiFi, and update all packages on the system.
  5. Enable -proposed.
  6. Update *just* the DKMS package with "sudo apt install dkms".
  7. Disable -proposed.
  8. Reboot.
  9. Run "sudo apt install bcmwl-kernel-source". The WiFi module should 
immediately begin working properly.

  [Where problems could occur]

  Theoretically, a bug in the code could result in DKMS drivers still
  not being signed in some instances (though there are no known
  instances where this happens). But as Secure Boot + DKMS is already
  entirely broken, even this kind of breakage would be an improvement
  beyond what we already have. Given the rather obvious nature of such
  breakage, thorough testing should be able to detect it with ease.

  ---

  Original bug reports:

  Expected on kinetic:  dkms will sign built modules with MOK key if
  requested.

  What happens:
  dkms outputs "Binary kmod-sign not found, modules won't be signed"

  Fix:
  update dkms to 3.0.7:  https://github.com/dell/dkms/pull/242

  ---

  dkms 3.0.6-2ubuntu2 is being tested in kinetic-proposed to resolve
  this issue

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1991725/+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 1995238] Re: repeatedly crashes on attempting to load "bumble.com" or "web.whatsapp.com"

2022-10-31 Thread Olivier Tilloy
** Package changed: firefox (Ubuntu) => linux (Ubuntu)

** Also affects: snapd
   Importance: Undecided
   Status: New

** Summary changed:

- repeatedly crashes on attempting to load "bumble.com" or "web.whatsapp.com"
+ snaps randomly crash after some time

** Description changed:

+ This is https://forum.snapcraft.io/t/unsupported-version-0-of-verneed-
+ record-linux-6-0/32160.
+ 
  When I load the web interfaces to these two services, firefox will 
immediately crash. Attempting to run from the command-line produces an error 
message as follows:
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: 
/snap/firefox/2015/usr/lib/firefox/firefox: error while loading shared 
libraries: /lib/x86_64-linux-gnu/libdl.so.2: unsupported version 0 of Verneed 
record
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: message repeated 2 times: [ 
/snap/firefox/2015/usr/lib/firefox/firefox: /lib/x86_64-linux-gnu/libdl.so.2: 
unsupported version 0 of Verdef record]
  
  The only way to restart firefox is to restart the computer! Logging out
  and in again, then running firefox, produces the same errors.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: firefox 1:1snap1-0ubuntu2
  Uname: Linux 6.0.6-060006-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 31 19:41:21 2022
  InstallationDate: Installed on 2019-05-26 (1253 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  SourcePackage: firefox
  UpgradeStatus: Upgraded to jammy on 2022-04-29 (184 days ago)

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

Title:
  snaps randomly crash after some time

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

Bug description:
  This is https://forum.snapcraft.io/t/unsupported-version-0-of-verneed-
  record-linux-6-0/32160.

  When I load the web interfaces to these two services, firefox will 
immediately crash. Attempting to run from the command-line produces an error 
message as follows:
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: 
/snap/firefox/2015/usr/lib/firefox/firefox: error while loading shared 
libraries: /lib/x86_64-linux-gnu/libdl.so.2: unsupported version 0 of Verneed 
record
  Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: message repeated 2 times: [ 
/snap/firefox/2015/usr/lib/firefox/firefox: /lib/x86_64-linux-gnu/libdl.so.2: 
unsupported version 0 of Verdef record]

  The only way to restart firefox is to restart the computer! Logging
  out and in again, then running firefox, produces the same errors.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: firefox 1:1snap1-0ubuntu2
  Uname: Linux 6.0.6-060006-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: GNOME-Flashback:GNOME
  Date: Mon Oct 31 19:41:21 2022
  InstallationDate: Installed on 2019-05-26 (1253 days ago)
  InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 
(20190210)
  SourcePackage: firefox
  UpgradeStatus: Upgraded to jammy on 2022-04-29 (184 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapd/+bug/1995238/+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 1995238] [NEW] repeatedly crashes on attempting to load "bumble.com" or "web.whatsapp.com"

2022-10-31 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

When I load the web interfaces to these two services, firefox will immediately 
crash. Attempting to run from the command-line produces an error message as 
follows:
Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: 
/snap/firefox/2015/usr/lib/firefox/firefox: error while loading shared 
libraries: /lib/x86_64-linux-gnu/libdl.so.2: unsupported version 0 of Verneed 
record
Oct 31 18:15:47 darwin gnome-panel.desktop[6771]: message repeated 2 times: [ 
/snap/firefox/2015/usr/lib/firefox/firefox: /lib/x86_64-linux-gnu/libdl.so.2: 
unsupported version 0 of Verdef record]

The only way to restart firefox is to restart the computer! Logging out
and in again, then running firefox, produces the same errors.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: firefox 1:1snap1-0ubuntu2
Uname: Linux 6.0.6-060006-generic x86_64
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: GNOME-Flashback:GNOME
Date: Mon Oct 31 19:41:21 2022
InstallationDate: Installed on 2019-05-26 (1253 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: firefox
UpgradeStatus: Upgraded to jammy on 2022-04-29 (184 days ago)

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


** Tags: amd64 apport-bug jammy third-party-packages
-- 
repeatedly crashes on attempting to load "bumble.com" or "web.whatsapp.com"
https://bugs.launchpad.net/bugs/1995238
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

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


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

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

apport-collect 1995228

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

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

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

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

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1995228] Re: Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Chris Guiver
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

The ubuntu-release-upgrader tool upgrades your system from one release
to another; your installation media was Ubuntu 22.04, where the tool
would upgrade your release to Ubuntu 22.10 (the only upgrade it
provides). You appear not to have used this tool at all.

As such you likely mean the Linux kernel package; I've amended the
package to reflect that.  Alas you initial report against the ubuntu-
release-upgrade tool means details were not gathered on your wireless
device, but on the 22.04->22.10 upgrade you appear not to have
performed.

** Package changed: ubuntu-release-upgrader (Ubuntu) => linux (Ubuntu)

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

Title:
  Wireless adapter (USB) randomly loses WiFi

Status in linux package in Ubuntu:
  New

Bug description:
  Just after updating the OS/Ubuntu, I am noticing that my wireless
  adapter now randomly drops every couple of minutes - and only started
  happening after installing the Ubuntu base update.

  I also perform updates every week, and depend on a wireless
  connection, so this is currently a huge issue in terms of actually
  functioning on Ubuntu.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: ubuntu-release-upgrader-core 1:22.04.14
  ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
  Uname: Linux 5.15.0-52-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  Architecture: amd64
  CasperMD5CheckResult: pass
  CrashDB: ubuntu
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Oct 30 20:22:12 2022
  InstallationDate: Installed on 2022-06-22 (131 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: ubuntu-release-upgrader
  Symptom: ubuntu-release-upgrader
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1995228/+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 1995228] [NEW] Wireless adapter (USB) randomly loses WiFi

2022-10-31 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Just after updating the OS/Ubuntu, I am noticing that my wireless
adapter now randomly drops every couple of minutes - and only started
happening after installing the Ubuntu base update.

I also perform updates every week, and depend on a wireless connection,
so this is currently a huge issue in terms of actually functioning on
Ubuntu.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: ubuntu-release-upgrader-core 1:22.04.14
ProcVersionSignature: Ubuntu 5.15.0-52.58-generic 5.15.60
Uname: Linux 5.15.0-52-generic x86_64
ApportVersion: 2.20.11-0ubuntu82.1
Architecture: amd64
CasperMD5CheckResult: pass
CrashDB: ubuntu
CurrentDesktop: ubuntu:GNOME
Date: Sun Oct 30 20:22:12 2022
InstallationDate: Installed on 2022-06-22 (131 days ago)
InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
PackageArchitecture: all
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
Symptom: ubuntu-release-upgrader
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug dist-upgrade jammy wayland-session
-- 
Wireless adapter (USB) randomly loses WiFi
https://bugs.launchpad.net/bugs/1995228
You received this bug notification because you are a member of Kernel Packages, 
which is subscribed to linux in Ubuntu.

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


[Kernel-packages] [Bug 1992118] Update Released

2022-10-31 Thread Timo Aaltonen
The verification of the Stable Release Update for linux-firmware has
completed successfully and the package is now being released to
-updates.  Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  AX210 (8086:e024) WLAN init failed ucode -5 after upgrading to 5.15
  intel IoTG kernel

Status in HWE Next:
  New
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-intel-iotg-5.15 package in Ubuntu:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released

Bug description:
  [Summary]
  AX210 (8086:e024) WLAN init failed ucode -5  after upgrading to 5.15 Intel 
IoTG kernel.

  [Steps to reproduce]
  $ sudo apt update
  $ sudo apt upgrade
  $ reboot

  [Expected result]
  WLAN works with no problem.

  [Actual result]
  Can't detect WLAN.

  [Failure rate]
  100%

  [Other Info]
  [4.485407] iwlwifi :02:00.0: enabling device ( -> 0002)
  [4.512442] iwlwifi :02:00.0: api flags index 2 larger than supported 
by driver
  [4.512500] iwlwifi :02:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 
0.63.2.2
  [4.514725] iwlwifi :02:00.0: loaded firmware version 66.f1c864e0.0 
ty-a0-gf-a0-66.ucode op_mode iwlmvm
  [4.636133] iwlwifi :02:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, 
REV=0x420
  [4.811565] iwlwifi :02:00.0: Detected RF GF, rfid=0x10d000
  [4.812366] iwlwifi :02:00.0: Microcode SW error detected. Restarting 
0x0.
  [4.812478] iwlwifi :02:00.0: Start IWL Error Log Dump:
  [4.812484] iwlwifi :02:00.0: Transport status: 0x004A, valid: 6
  [4.812489] iwlwifi :02:00.0: Loaded firmware version: 66.f1c864e0.0 
ty-a0-gf-a0-66.ucode
  [4.812494] iwlwifi :02:00.0: 0x0071 | NMI_INTERRUPT_UMAC_FATAL
  [4.812499] iwlwifi :02:00.0: 0x002002F0 | trm_hw_status0
  [4.812503] iwlwifi :02:00.0: 0x | trm_hw_status1
  [4.812507] iwlwifi :02:00.0: 0x004DA722 | branchlink2
  [4.812510] iwlwifi :02:00.0: 0x004D0CCE | interruptlink1
  [4.812514] iwlwifi :02:00.0: 0x004D0CCE | interruptlink2
  [4.812517] iwlwifi :02:00.0: 0x004D94DA | data1
  [4.812520] iwlwifi :02:00.0: 0x0010 | data2
  [4.812523] iwlwifi :02:00.0: 0x | data3
  [4.812527] iwlwifi :02:00.0: 0x | beacon time
  [4.812530] iwlwifi :02:00.0: 0x0001324E | tsf low
  [4.812533] iwlwifi :02:00.0: 0x | tsf hi
  [4.812536] iwlwifi :02:00.0: 0x | time gp1
  [4.812540] iwlwifi :02:00.0: 0x000244E1 | time gp2
  [4.812543] iwlwifi :02:00.0: 0x0001 | uCode revision type
  [4.812546] iwlwifi :02:00.0: 0x0042 | uCode version major
  [4.812550] iwlwifi :02:00.0: 0xF1C864E0 | uCode version minor
  [4.812553] iwlwifi :02:00.0: 0x0420 | hw version
  [4.812557] iwlwifi :02:00.0: 0x18C89002 | board version
  [4.812560] iwlwifi :02:00.0: 0x8008FF05 | hcmd
  [4.812563] iwlwifi :02:00.0: 0x0002 | isr0
  [4.812566] iwlwifi :02:00.0: 0x6000 | isr1
  [4.812569] iwlwifi :02:00.0: 0x48F2 | isr2
  [4.812572] iwlwifi :02:00.0: 0x00C0001C | isr3
  [4.812575] iwlwifi :02:00.0: 0x | isr4
  [4.812578] iwlwifi :02:00.0: 0x | last cmd Id
  [4.812581] iwlwifi :02:00.0: 0x004D94DA | wait_event
  [4.812584] iwlwifi :02:00.0: 0x | l2p_control
  [4.812588] iwlwifi :02:00.0: 0x | l2p_duration
  [4.812591] iwlwifi :02:00.0: 0x | l2p_mhvalid
  [4.812594] iwlwifi :02:00.0: 0x | l2p_addr_match
  [4.812597] iwlwifi :02:00.0: 0x0009 | lmpm_pmg_sel
  [4.812600] iwlwifi :02:00.0: 0x | timestamp
  [4.812603] iwlwifi :02:00.0: 0x0024 | flow_handler
  [4.812640] iwlwifi :02:00.0: Start IWL Error Log Dump:
  [4.812643] iwlwifi :02:00.0: Transport status: 0x004A, valid: 7
  [4.812647] iwlwifi :02:00.0: 0x2010070D | ADVANCED_SYSASSERT
  [4.812651] iwlwifi :02:00.0: 0x | umac branchlink1
  [4.812654] iwlwifi :02:00.0: 0x8045DFC6 | umac branchlink2
  [4.812658] iwlwifi :02:00.0: 0x010910FE | umac interruptlink1
  [4.812661] iwlwifi :02:00.0: 0x | umac interruptlink2
  [4.812664] iwlwifi :02:00.0: 0x0005 | umac data1
  [4.812667] iwlwifi :02:00.0: 0xDEADBEEF | umac data2
  [4.812670] iwlwifi :02:00.0: 0xDEADBEEF | umac data3
  [4.812673] 

[Kernel-packages] [Bug 1992118] Re: AX210 (8086:e024) WLAN init failed ucode -5 after upgrading to 5.15 intel IoTG kernel

2022-10-31 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-firmware - 1.187.34

---
linux-firmware (1.187.34) focal; urgency=medium

  * AX210 (8086:e024) WLAN init failed ucode -5 after upgrading to 5.15 intel 
IoTG kernel (LP: #1992118)
- iwlwifi: add new FWs from core64-96 release
- iwlwifi: add new FWs from core66-88 release
- iwlwifi: add new FWs from core68-60 release

 -- Juerg Haefliger   Wed, 19 Oct 2022
10:23:15 +0200

** Changed in: linux-firmware (Ubuntu Focal)
   Status: Fix Committed => Fix Released

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

Title:
  AX210 (8086:e024) WLAN init failed ucode -5 after upgrading to 5.15
  intel IoTG kernel

Status in HWE Next:
  New
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-intel-iotg-5.15 package in Ubuntu:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released

Bug description:
  [Summary]
  AX210 (8086:e024) WLAN init failed ucode -5  after upgrading to 5.15 Intel 
IoTG kernel.

  [Steps to reproduce]
  $ sudo apt update
  $ sudo apt upgrade
  $ reboot

  [Expected result]
  WLAN works with no problem.

  [Actual result]
  Can't detect WLAN.

  [Failure rate]
  100%

  [Other Info]
  [4.485407] iwlwifi :02:00.0: enabling device ( -> 0002)
  [4.512442] iwlwifi :02:00.0: api flags index 2 larger than supported 
by driver
  [4.512500] iwlwifi :02:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 
0.63.2.2
  [4.514725] iwlwifi :02:00.0: loaded firmware version 66.f1c864e0.0 
ty-a0-gf-a0-66.ucode op_mode iwlmvm
  [4.636133] iwlwifi :02:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, 
REV=0x420
  [4.811565] iwlwifi :02:00.0: Detected RF GF, rfid=0x10d000
  [4.812366] iwlwifi :02:00.0: Microcode SW error detected. Restarting 
0x0.
  [4.812478] iwlwifi :02:00.0: Start IWL Error Log Dump:
  [4.812484] iwlwifi :02:00.0: Transport status: 0x004A, valid: 6
  [4.812489] iwlwifi :02:00.0: Loaded firmware version: 66.f1c864e0.0 
ty-a0-gf-a0-66.ucode
  [4.812494] iwlwifi :02:00.0: 0x0071 | NMI_INTERRUPT_UMAC_FATAL
  [4.812499] iwlwifi :02:00.0: 0x002002F0 | trm_hw_status0
  [4.812503] iwlwifi :02:00.0: 0x | trm_hw_status1
  [4.812507] iwlwifi :02:00.0: 0x004DA722 | branchlink2
  [4.812510] iwlwifi :02:00.0: 0x004D0CCE | interruptlink1
  [4.812514] iwlwifi :02:00.0: 0x004D0CCE | interruptlink2
  [4.812517] iwlwifi :02:00.0: 0x004D94DA | data1
  [4.812520] iwlwifi :02:00.0: 0x0010 | data2
  [4.812523] iwlwifi :02:00.0: 0x | data3
  [4.812527] iwlwifi :02:00.0: 0x | beacon time
  [4.812530] iwlwifi :02:00.0: 0x0001324E | tsf low
  [4.812533] iwlwifi :02:00.0: 0x | tsf hi
  [4.812536] iwlwifi :02:00.0: 0x | time gp1
  [4.812540] iwlwifi :02:00.0: 0x000244E1 | time gp2
  [4.812543] iwlwifi :02:00.0: 0x0001 | uCode revision type
  [4.812546] iwlwifi :02:00.0: 0x0042 | uCode version major
  [4.812550] iwlwifi :02:00.0: 0xF1C864E0 | uCode version minor
  [4.812553] iwlwifi :02:00.0: 0x0420 | hw version
  [4.812557] iwlwifi :02:00.0: 0x18C89002 | board version
  [4.812560] iwlwifi :02:00.0: 0x8008FF05 | hcmd
  [4.812563] iwlwifi :02:00.0: 0x0002 | isr0
  [4.812566] iwlwifi :02:00.0: 0x6000 | isr1
  [4.812569] iwlwifi :02:00.0: 0x48F2 | isr2
  [4.812572] iwlwifi :02:00.0: 0x00C0001C | isr3
  [4.812575] iwlwifi :02:00.0: 0x | isr4
  [4.812578] iwlwifi :02:00.0: 0x | last cmd Id
  [4.812581] iwlwifi :02:00.0: 0x004D94DA | wait_event
  [4.812584] iwlwifi :02:00.0: 0x | l2p_control
  [4.812588] iwlwifi :02:00.0: 0x | l2p_duration
  [4.812591] iwlwifi :02:00.0: 0x | l2p_mhvalid
  [4.812594] iwlwifi :02:00.0: 0x | l2p_addr_match
  [4.812597] iwlwifi :02:00.0: 0x0009 | lmpm_pmg_sel
  [4.812600] iwlwifi :02:00.0: 0x | timestamp
  [4.812603] iwlwifi :02:00.0: 0x0024 | flow_handler
  [4.812640] iwlwifi :02:00.0: Start IWL Error Log Dump:
  [4.812643] iwlwifi :02:00.0: Transport status: 0x004A, valid: 7
  [4.812647] iwlwifi :02:00.0: 0x2010070D | ADVANCED_SYSASSERT
  [4.812651] iwlwifi :02:00.0: 0x | umac branchlink1
  [4.812654] iwlwifi :02:00.0: 0x8045DFC6 | umac branchlink2
  [4.812658] iwlwifi :02:00.0: 0x010910FE | umac interruptlink1
  [4.812661] iwlwifi :02:00.0: 0x | umac interruptlink2
  [4.812664] iwlwifi :02:00.0: 0x0005 | umac data1
  [4.812667] iwlwifi :02:00.0: 0xDEADBEEF | umac data2
  [4.812670] iwlwifi 

[Kernel-packages] [Bug 1955383] Re: Support Intel IPU6 MIPI camera on Alder Lake platforms

2022-10-31 Thread Kai-Chuan Hsieh
reply #101,

The package oem-somerville-tentacool-meta will install another source
list /etc/apt/sources.list.d/oem-somerville-tantacool-meta.list. when
you do the $ sudo apt update, it should update packages in
dell.archive.canonical.com. after $ sudo apt install oem-somerville-
tentacool-meta, it will update to a new oem-somerville-tentacool-meta
here [1].

Did you disable other source list in you environment?

[1] http://dell.archive.canonical.com/dists/jammy-somerville-jellyfish-
tentacool/public/binary-amd64/Packages

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

Title:
  Support Intel IPU6 MIPI camera on Alder Lake platforms

Status in HWE Next:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Released
Status in linux-firmware source package in Jammy:
  Fix Released
Status in linux-oem-5.14 source package in Jammy:
  Invalid

Bug description:
  == kernel driver SRU ==

  [SRU Justification]

  [Impact]

  To support Intel IPU6 MIPI camera on Alder Lake platforms.

  [Fix]

  Initial support for Intel IPU6 MIPI camera on Tiger Lake platforms has
  been addressed by bug 1921345 and 1939539. They are backported from
  https://github.com/intel/ipu6-drivers.

  Further works to enable IPU6 camera on Alder Lake platforms depend on a
  few more fixes from same ipu6-drivers repository, as well as an extra
  https://github.com/intel/ivsc-driver for Intel Vision Sensing
  Controller(IVSC).

  [Test Case]

  This depends on an integral of enablement components inclusive of the
  kernel drivers that are being proposed, firmware, updates for the
  userspace camera hardware abstration layer library and a gstreamer
  element as what we have for Tiger Lake platforms.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  [Other Info]

  Jammy is planned, but yet the support for 5.15 kernel is not yet started
  from Intel side.

  == linux-firmware SRU ==

  [SRU Justification]

  [Impact]

  Intel IPU6 MIPI camera on Alder Lake platform takes a different fw
  blob.

  [Fix]

  While Intel has no intention to upstream IPU6 driver before kernel
  camera is out, it's available in
  https://github.com/intel/ipu6-camera-bins commit e60fae2b5128 from its
  main branch.

  [Test Case]

  This would take both kernel and firmware fixes, as well as updates for
  the userspace middleware, gstreamer element plugin, to enable the device.
  With all of them in position, one should be able to browse camera with
  legacy camera apps like cheese.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  == original bug report ==

  This depends on following componenets:
  * ipu6ep firmware in 
https://github.com/intel/ipu6-camera-bins/commit/e60fae2b5128cf5b8b948b234dab28e58c93877d
  * Intel VSC fw version 1.2.3.439 (not yet available publicly)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.21
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CasperMD5CheckResult: skip
  Dependencies:

  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85+fossa-tentacool+X188
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-12-20 (7 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  MachineType: Dell Inc. XPS 9320
  Package: linux-firmware 1.187.23+staging.38 [origin: unknown]
  PackageArchitecture: all
  ProcFB: 0 i915
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.14.0-2013-oem 
root=UUID=f4ad7114-fc86-47d7-b750-86bd1560a5f6 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-2013.13+lp1955383.1-oem 5.14.20
  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.14.0-2013-oem N/A
   linux-backports-modules-5.14.0-2013-oem  N/A
   linux-firmware   1.187.23+staging.38
  Tags: third-party-packages focal
  Uname: Linux 5.14.0-2013-oem x86_64
  UnreportableReason: This is not an official Ubuntu package. Please remove any 
third party package and try again.
  

[Kernel-packages] [Bug 1955383] Re: Support Intel IPU6 MIPI camera on Alder Lake platforms

2022-10-31 Thread Stuart Pook
hello @andch

If I look at https://packages.ubuntu.com/search?keywords=oem-somerville-
tentacool-meta=names=all=all I see 22.04~ubuntu1.
Where can I find the 22.04ubuntu5 you mention?  thanks

stuart@xps9320:/$ sudo apt update
Hit:1 http://fr.archive.ubuntu.com/ubuntu jammy InRelease
Hit:2 http://fr.archive.ubuntu.com/ubuntu jammy-updates InRelease
Hit:3 http://fr.archive.ubuntu.com/ubuntu jammy-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu jammy-security InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
2 packages can be upgraded. Run 'apt list --upgradable' to see them.
stuart@xps9320:/$ sudo apt install oem-somerville-tentacool-meta
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
oem-somerville-tentacool-meta is already the newest version (22.04~ubuntu1).
0 to upgrade, 0 to newly install, 0 to remove and 2 not to upgrade.

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

Title:
  Support Intel IPU6 MIPI camera on Alder Lake platforms

Status in HWE Next:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Released
Status in linux-firmware source package in Jammy:
  Fix Released
Status in linux-oem-5.14 source package in Jammy:
  Invalid

Bug description:
  == kernel driver SRU ==

  [SRU Justification]

  [Impact]

  To support Intel IPU6 MIPI camera on Alder Lake platforms.

  [Fix]

  Initial support for Intel IPU6 MIPI camera on Tiger Lake platforms has
  been addressed by bug 1921345 and 1939539. They are backported from
  https://github.com/intel/ipu6-drivers.

  Further works to enable IPU6 camera on Alder Lake platforms depend on a
  few more fixes from same ipu6-drivers repository, as well as an extra
  https://github.com/intel/ivsc-driver for Intel Vision Sensing
  Controller(IVSC).

  [Test Case]

  This depends on an integral of enablement components inclusive of the
  kernel drivers that are being proposed, firmware, updates for the
  userspace camera hardware abstration layer library and a gstreamer
  element as what we have for Tiger Lake platforms.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  [Other Info]

  Jammy is planned, but yet the support for 5.15 kernel is not yet started
  from Intel side.

  == linux-firmware SRU ==

  [SRU Justification]

  [Impact]

  Intel IPU6 MIPI camera on Alder Lake platform takes a different fw
  blob.

  [Fix]

  While Intel has no intention to upstream IPU6 driver before kernel
  camera is out, it's available in
  https://github.com/intel/ipu6-camera-bins commit e60fae2b5128 from its
  main branch.

  [Test Case]

  This would take both kernel and firmware fixes, as well as updates for
  the userspace middleware, gstreamer element plugin, to enable the device.
  With all of them in position, one should be able to browse camera with
  legacy camera apps like cheese.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  == original bug report ==

  This depends on following componenets:
  * ipu6ep firmware in 
https://github.com/intel/ipu6-camera-bins/commit/e60fae2b5128cf5b8b948b234dab28e58c93877d
  * Intel VSC fw version 1.2.3.439 (not yet available publicly)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.21
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CasperMD5CheckResult: skip
  Dependencies:

  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85+fossa-tentacool+X188
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-12-20 (7 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  MachineType: Dell Inc. XPS 9320
  Package: linux-firmware 1.187.23+staging.38 [origin: unknown]
  PackageArchitecture: all
  ProcFB: 0 i915
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.14.0-2013-oem 
root=UUID=f4ad7114-fc86-47d7-b750-86bd1560a5f6 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-2013.13+lp1955383.1-oem 5.14.20
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio 

[Kernel-packages] [Bug 1955383] Re: Support Intel IPU6 MIPI camera on Alder Lake platforms

2022-10-31 Thread Kai-Chuan Hsieh
reply #98,

Please check comment #72.

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

Title:
  Support Intel IPU6 MIPI camera on Alder Lake platforms

Status in HWE Next:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Released
Status in linux-firmware source package in Jammy:
  Fix Released
Status in linux-oem-5.14 source package in Jammy:
  Invalid

Bug description:
  == kernel driver SRU ==

  [SRU Justification]

  [Impact]

  To support Intel IPU6 MIPI camera on Alder Lake platforms.

  [Fix]

  Initial support for Intel IPU6 MIPI camera on Tiger Lake platforms has
  been addressed by bug 1921345 and 1939539. They are backported from
  https://github.com/intel/ipu6-drivers.

  Further works to enable IPU6 camera on Alder Lake platforms depend on a
  few more fixes from same ipu6-drivers repository, as well as an extra
  https://github.com/intel/ivsc-driver for Intel Vision Sensing
  Controller(IVSC).

  [Test Case]

  This depends on an integral of enablement components inclusive of the
  kernel drivers that are being proposed, firmware, updates for the
  userspace camera hardware abstration layer library and a gstreamer
  element as what we have for Tiger Lake platforms.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  [Other Info]

  Jammy is planned, but yet the support for 5.15 kernel is not yet started
  from Intel side.

  == linux-firmware SRU ==

  [SRU Justification]

  [Impact]

  Intel IPU6 MIPI camera on Alder Lake platform takes a different fw
  blob.

  [Fix]

  While Intel has no intention to upstream IPU6 driver before kernel
  camera is out, it's available in
  https://github.com/intel/ipu6-camera-bins commit e60fae2b5128 from its
  main branch.

  [Test Case]

  This would take both kernel and firmware fixes, as well as updates for
  the userspace middleware, gstreamer element plugin, to enable the device.
  With all of them in position, one should be able to browse camera with
  legacy camera apps like cheese.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  == original bug report ==

  This depends on following componenets:
  * ipu6ep firmware in 
https://github.com/intel/ipu6-camera-bins/commit/e60fae2b5128cf5b8b948b234dab28e58c93877d
  * Intel VSC fw version 1.2.3.439 (not yet available publicly)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.21
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CasperMD5CheckResult: skip
  Dependencies:

  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85+fossa-tentacool+X188
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-12-20 (7 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  MachineType: Dell Inc. XPS 9320
  Package: linux-firmware 1.187.23+staging.38 [origin: unknown]
  PackageArchitecture: all
  ProcFB: 0 i915
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.14.0-2013-oem 
root=UUID=f4ad7114-fc86-47d7-b750-86bd1560a5f6 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-2013.13+lp1955383.1-oem 5.14.20
  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.14.0-2013-oem N/A
   linux-backports-modules-5.14.0-2013-oem  N/A
   linux-firmware   1.187.23+staging.38
  Tags: third-party-packages focal
  Uname: Linux 5.14.0-2013-oem x86_64
  UnreportableReason: This is not an official Ubuntu package. Please remove any 
third party package and try again.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: N/A
  _MarkForUpload: True
  dmi.bios.date: 12/02/2021
  dmi.bios.release: 0.2
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 0.2.7
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr0.2.7:bd12/02/2021:br0.2:svnDellInc.:pnXPS9320:pvr:rvnDellInc.:rn:rvr:cvnDellInc.:ct10:cvr:sku0AF3:
  dmi.product.family: XPS
  dmi.product.name: XPS 9320
  

[Kernel-packages] [Bug 1955383] Re: Support Intel IPU6 MIPI camera on Alder Lake platforms

2022-10-31 Thread Andy Chi
Hi @benh-kernel,
You can try this workaround to make cheese work.


[workaround for cheese]
Copy /usr/share/pipewire/media-session.d/media-session.conf to 
/usr/share/pipewire/media-session.d/media-session.bak for backup, then comment 
out v4l2 in media-session.conf
session.modules = {
# These are the modules that are enabled when a file with
# the key name is found in the media-session.d config directory.
# the default bundle is always enabled.

default = [
flatpak # manages flatpak access
portal  # manage portal permissions
#v4l2# video for linux udev detection

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

Title:
  Support Intel IPU6 MIPI camera on Alder Lake platforms

Status in HWE Next:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Released
Status in linux-firmware source package in Jammy:
  Fix Released
Status in linux-oem-5.14 source package in Jammy:
  Invalid

Bug description:
  == kernel driver SRU ==

  [SRU Justification]

  [Impact]

  To support Intel IPU6 MIPI camera on Alder Lake platforms.

  [Fix]

  Initial support for Intel IPU6 MIPI camera on Tiger Lake platforms has
  been addressed by bug 1921345 and 1939539. They are backported from
  https://github.com/intel/ipu6-drivers.

  Further works to enable IPU6 camera on Alder Lake platforms depend on a
  few more fixes from same ipu6-drivers repository, as well as an extra
  https://github.com/intel/ivsc-driver for Intel Vision Sensing
  Controller(IVSC).

  [Test Case]

  This depends on an integral of enablement components inclusive of the
  kernel drivers that are being proposed, firmware, updates for the
  userspace camera hardware abstration layer library and a gstreamer
  element as what we have for Tiger Lake platforms.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  [Other Info]

  Jammy is planned, but yet the support for 5.15 kernel is not yet started
  from Intel side.

  == linux-firmware SRU ==

  [SRU Justification]

  [Impact]

  Intel IPU6 MIPI camera on Alder Lake platform takes a different fw
  blob.

  [Fix]

  While Intel has no intention to upstream IPU6 driver before kernel
  camera is out, it's available in
  https://github.com/intel/ipu6-camera-bins commit e60fae2b5128 from its
  main branch.

  [Test Case]

  This would take both kernel and firmware fixes, as well as updates for
  the userspace middleware, gstreamer element plugin, to enable the device.
  With all of them in position, one should be able to browse camera with
  legacy camera apps like cheese.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  == original bug report ==

  This depends on following componenets:
  * ipu6ep firmware in 
https://github.com/intel/ipu6-camera-bins/commit/e60fae2b5128cf5b8b948b234dab28e58c93877d
  * Intel VSC fw version 1.2.3.439 (not yet available publicly)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.21
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CasperMD5CheckResult: skip
  Dependencies:

  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85+fossa-tentacool+X188
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-12-20 (7 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  MachineType: Dell Inc. XPS 9320
  Package: linux-firmware 1.187.23+staging.38 [origin: unknown]
  PackageArchitecture: all
  ProcFB: 0 i915
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.14.0-2013-oem 
root=UUID=f4ad7114-fc86-47d7-b750-86bd1560a5f6 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-2013.13+lp1955383.1-oem 5.14.20
  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.14.0-2013-oem N/A
   linux-backports-modules-5.14.0-2013-oem  N/A
   linux-firmware   1.187.23+staging.38
  Tags: third-party-packages focal
  Uname: Linux 

[Kernel-packages] [Bug 1955383] Re: Support Intel IPU6 MIPI camera on Alder Lake platforms

2022-10-31 Thread Benjamin Herrenschmidt
Is there any expectation of X1 Gen 10 being supported ? It's currently
giving the same error as slp110264 above with cheese:

$ cheese
../src/intel/isl/isl.c:2220: FINISHME: 
../src/intel/isl/isl.c:isl_surf_supports_ccs: CCS for 3D textures is disabled, 
but a workaround is available.

(cheese:50217): GLib-GObject-CRITICAL **: 17:17:03.292:
g_value_dup_string: assertion 'G_VALUE_HOLDS_STRING (value)' failed

(cheese:50217): GLib-GObject-CRITICAL **: 17:17:03.419:
g_value_dup_string: assertion 'G_VALUE_HOLDS_STRING (value)' failed

(cheese:50217): cheese-WARNING **: 17:17:03.433: Device '/dev/video0' does not 
support 2:0:0:0 colorimetry: ../sys/v4l2/gstv4l2object.c(4105): 
gst_v4l2_object_set_format_full (): 
/GstCameraBin:camerabin/GstWrapperCameraBinSrc:camera_source/GstBin:bin18/GstV4l2Src:v4l2src1:
Device wants 2:0:0:0 colorimetry

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

Title:
  Support Intel IPU6 MIPI camera on Alder Lake platforms

Status in HWE Next:
  Fix Released
Status in OEM Priority Project:
  Fix Released
Status in linux package in Ubuntu:
  Invalid
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-firmware source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Released
Status in linux-firmware source package in Jammy:
  Fix Released
Status in linux-oem-5.14 source package in Jammy:
  Invalid

Bug description:
  == kernel driver SRU ==

  [SRU Justification]

  [Impact]

  To support Intel IPU6 MIPI camera on Alder Lake platforms.

  [Fix]

  Initial support for Intel IPU6 MIPI camera on Tiger Lake platforms has
  been addressed by bug 1921345 and 1939539. They are backported from
  https://github.com/intel/ipu6-drivers.

  Further works to enable IPU6 camera on Alder Lake platforms depend on a
  few more fixes from same ipu6-drivers repository, as well as an extra
  https://github.com/intel/ivsc-driver for Intel Vision Sensing
  Controller(IVSC).

  [Test Case]

  This depends on an integral of enablement components inclusive of the
  kernel drivers that are being proposed, firmware, updates for the
  userspace camera hardware abstration layer library and a gstreamer
  element as what we have for Tiger Lake platforms.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  [Other Info]

  Jammy is planned, but yet the support for 5.15 kernel is not yet started
  from Intel side.

  == linux-firmware SRU ==

  [SRU Justification]

  [Impact]

  Intel IPU6 MIPI camera on Alder Lake platform takes a different fw
  blob.

  [Fix]

  While Intel has no intention to upstream IPU6 driver before kernel
  camera is out, it's available in
  https://github.com/intel/ipu6-camera-bins commit e60fae2b5128 from its
  main branch.

  [Test Case]

  This would take both kernel and firmware fixes, as well as updates for
  the userspace middleware, gstreamer element plugin, to enable the device.
  With all of them in position, one should be able to browse camera with
  legacy camera apps like cheese.

  [Where problems could occur]

  It's confirmed Intel IPU6 MIPI camera doesn't support suspend at
  streaming.

  == original bug report ==

  This depends on following componenets:
  * ipu6ep firmware in 
https://github.com/intel/ipu6-camera-bins/commit/e60fae2b5128cf5b8b948b234dab28e58c93877d
  * Intel VSC fw version 1.2.3.439 (not yet available publicly)
  ---
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu27.21
  Architecture: amd64
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CasperMD5CheckResult: skip
  Dependencies:

  DistributionChannelDescriptor:
   # This is the distribution channel descriptor for the OEM CDs
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-focal-amd64-20200502-85+fossa-tentacool+X188
  DistroRelease: Ubuntu 20.04
  InstallationDate: Installed on 2021-12-20 (7 days ago)
  InstallationMedia: Ubuntu 20.04 "Focal" - Build amd64 LIVE Binary 
20200502-05:58
  MachineType: Dell Inc. XPS 9320
  Package: linux-firmware 1.187.23+staging.38 [origin: unknown]
  PackageArchitecture: all
  ProcFB: 0 i915
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.14.0-2013-oem 
root=UUID=f4ad7114-fc86-47d7-b750-86bd1560a5f6 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.14.0-2013.13+lp1955383.1-oem 5.14.20
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions: