[Kernel-packages] [Bug 2083329] Re: [regression] [nvidia] Phantom "Unknown Display" shown in Settings since kernel 6.11 and 6.8.0-51

2025-03-09 Thread Aaron Talo
Hi Timo,

This does not fix the issue for me (assuming its the same issue). I have
a phantom duplicate display shown for each of my external monitors which
only occurs when I use a thunderbolt cable to my Apple Studio Display
(27¨) or a similar cable (OWC Thunderbolt) my Lenovo p27-10u 4K display.
When i switch out cables for standard USB-C 3.1 cables, all works fine
and no phantom monitors show. I have tried only one monitor on USB-C and
one on Thunderbolt as well and only the Thunderbolt connected monitor
has the phantom problem.

This behaviour is consistent before and after testing with the updated 
ubuntu-drivers-common/1:0.9.7.6ubuntu3.2 patch which is proposed.
I tested this before and after subsequently installing nvidia-driver-535 
(although Iḿ not sure what NVIDIA has to do with my system with intel 
integrated graphics).

My system is a Lenovo T14s (Gen 5) Intel. (Intel Arc Graphics) + LUKS
encryption.

I have very limited time today but see you provided some links above.
Happy to provide any more info / logs etc if helpful.

I could not find another bug relating to thunderbolt but am happy to log
one if this is a different issue as it was unclear to me whether
thunderbolt has been taken into consideration with this issue.

I would appreciate your guidance whether my scenario is related and what
my next steps should be to help.

Thanks,
Aaron

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

Title:
  [regression] [nvidia] Phantom "Unknown Display" shown in Settings
  since kernel 6.11 and 6.8.0-51

Status in linux-hwe-6.8 package in Ubuntu:
  Won't Fix
Status in ubuntu-drivers-common package in Ubuntu:
  Fix Released
Status in ubuntu-drivers-common source package in Jammy:
  In Progress
Status in ubuntu-drivers-common source package in Noble:
  Fix Committed
Status in ubuntu-drivers-common source package in Oracular:
  Fix Released

Bug description:
  [ Impact ]

  Backport the Nvidia/SimpleDRM kernel 6.11 fix for phantom displays.
  This is a continuation of bug 2060268 where kernel 6.11 was found to
  require a different fix from that shipped for 6.8.

  Update: 6.8.0-51 has regressed in the same way as 6.11 did.

  [ Test Plan - Nvidia desktop ]

  1. Set up a DESKTOP where the only GPU enabled is an Nvidia one.
  1. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  2. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  3. Reboot and verify the Nvidia driver is now active (lspci -k should mention 
'nvidia' and not 'nouveau').
  4. Log-in to a GNOME Xorg session
  5. Open Settings and verify the only monitors shown are your real monitors.
  6. Log-in to a Wayland session
  7. Open Settings and verify the only monitors shown are your real monitors.

  [ Regression Test Plan - Nvidia Hybrid graphics ]

  1. Set up a machine with Nvidia hybrid graphics (one discrete Nvidia GPU and 
one Intel/AMD integrated GPU)
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  4. Reboot and verify the Nvidia driver is now active (lspci -k should mention 
'nvidia' and not 'nouveau').
  5. Verify that `ls /dev/dri/card*` lists exactly two files.

  [ Regression Test Plan - Intel/AMD graphics ]

  1. Set up a machine with integrated graphics only.
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  4. Run `apt install nvidia-driver-535`.
  5. Reboot.
  6. Verify that you are able to log into the Ubuntu Desktop Wayland session.

  [ Regression Test Plan - Virtual machines ]

  1. Set up a virtual machine without any graphics acceleration (vmware, 
virtio...)
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  4. Run `sudo apt install nvidia-driver-535`.
  5. Reboot.
  6. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  7. Optionally go back to point 4, and try with nvidia-driver-550.

  [ Regression Test Plan - Nvidia+LUKS ]

  1. Set up a desktop machine (not a laptop) with an Nvidia GPU and encrypted 
disk.
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  4. Reboot
  5. Verify that you see the password prompt for decrypting the disk.

  [ Where problems could occur ]

  Removing the simpledrm card is only safe when it's not being used. If
  somehow a machine wasn't using the installed Nvidia driver then there
  could be a risk of deleting the only working display.

  One case where this could happen is if the Nvidia driver would allow
  being loaded even without any nvidia hardware present: if that

[Kernel-packages] [Bug 2100688] Re: Interface name wrong for USB tether

2025-03-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Interface name wrong for USB tether

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  5.15.0-131 works
  5.15.0-133 no networking

  This fix

  
https://github.com/torvalds/linux/commit/8a7d12d674ac6f2147c18f36d1e15f1a48060edf

  is included in 133. It caused my usb tether adapter to be named eth0
  instead of usb0. I have another adapter that gets renamed (via
  netplan) to eth0 and this fails due to the name conflict. I patched
  usbnet.c to use both the new check and the old one and it fixed the
  problem.

  Patch:

  diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
  index f66975c452aa..0533e4e1a566 100644
  --- a/drivers/net/usb/usbnet.c
  +++ b/drivers/net/usb/usbnet.c
  @@ -1770,7 +1770,8 @@ usbnet_probe (struct usb_interface *udev, const struct 
usb_device_id *prod)
  if ((dev->driver_info->flags & FLAG_ETHER) != 0 &&
  ((dev->driver_info->flags & FLAG_POINTTOPOINT) == 0 ||
   /* somebody touched it*/
  -!is_zero_ether_addr(net->dev_addr)))
  +   (!is_zero_ether_addr(net->dev_addr) &&
  +   (net->dev_addr[0] & 0x02) == 0)))
  strscpy(net->name, "eth%d", sizeof(net->name));
  /* WLAN devices should always be named "wlan%d" */
  if ((dev->driver_info->flags & FLAG_WLAN) != 0)

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.15.0-133-generic (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-133.144+usbnetfix-generic 5.15.173
  Uname: Linux 5.15.0-133-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.6
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tangert3367 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  Date: Sat Mar  1 18:19:59 2025
  InstallationDate: Installed on 2023-08-05 (574 days ago)
  InstallationMedia: Ubuntu-Server 22.04.2 LTS "Jammy Jellyfish" - Release 
amd64 (20230217.1)
  IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig'
  MachineType: System manufacturer System Product Name
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-133-generic 
root=UUID=9da6c582-2d35-43ba-bf85-246507b9391b ro ipv6.disable=1 nohibernate 
fsck.mode=force fsck.repair=yes consoleblank=900 mitigations=off
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-133-generic N/A
   linux-backports-modules-5.15.0-133-generic  N/A
   linux-firmware  20220329.git681281e4-0ubuntu3.36
  RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/12/2012
  dmi.bios.release: 4.6
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0804
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8H61-I R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev X.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0804:bd10/12/2012:br4.6:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8H61-IR2.0:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:skuSKU:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: System Product Name
  dmi.product.sku: SKU
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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


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


[Kernel-packages] [Bug 2101792] [NEW] wifi bug

2025-03-09 Thread BR
Public bug reported:

wifi does not work with any driver under 24.10

Kernel: 6.11.0-19-generic 
Product=BCM43142A0

ProblemType: Bug
DistroRelease: Ubuntu 24.10
Package: broadcom-sta-source 6.30.223.271-24
ProcVersionSignature: Ubuntu 6.11.0-19.19-generic 6.11.11
Uname: Linux 6.11.0-19-generic x86_64
ApportVersion: 2.30.0-0ubuntu4
Architecture: amd64
CasperMD5CheckResult: unknown
CurrentDesktop: ubuntu:GNOME
Date: Sun Mar  9 19:48:29 2025
InstallationDate: Installed on 2021-03-13 (1457 days ago)
InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Beta amd64 (20200930)
PackageArchitecture: all
ProcEnviron:
 LANG=hu_HU.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: broadcom-sta
UpgradeStatus: Upgraded to oracular on 2025-03-09 (0 days ago)

** Affects: broadcom-sta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oracular wayland-session

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

Title:
  wifi bug

Status in broadcom-sta package in Ubuntu:
  New

Bug description:
  wifi does not work with any driver under 24.10

  Kernel: 6.11.0-19-generic 
  Product=BCM43142A0

  ProblemType: Bug
  DistroRelease: Ubuntu 24.10
  Package: broadcom-sta-source 6.30.223.271-24
  ProcVersionSignature: Ubuntu 6.11.0-19.19-generic 6.11.11
  Uname: Linux 6.11.0-19-generic x86_64
  ApportVersion: 2.30.0-0ubuntu4
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Sun Mar  9 19:48:29 2025
  InstallationDate: Installed on 2021-03-13 (1457 days ago)
  InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Beta amd64 (20200930)
  PackageArchitecture: all
  ProcEnviron:
   LANG=hu_HU.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  SourcePackage: broadcom-sta
  UpgradeStatus: Upgraded to oracular on 2025-03-09 (0 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/broadcom-sta/+bug/2101792/+subscriptions


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


[Kernel-packages] [Bug 2100769] Re: Update amdgpu FW for GC 11.5.1

2025-03-09 Thread You-Sheng Yang
Targeting series with support to AMD Strix Halo or newer.

** Description changed:

  Products containing gfx1151 architecture with multiple microcontrollers
  (VPE, PSP, VCN, SDMA, etc.), observed a few page faults during heavy
  loading or with stress applications on the CRB. This requires rebasing
  these firmware versions to eliminate the risk.
  
  # upstream tag 20250211
  * 52d598fe2 ("amdgpu: update vcn 4.0.6 firmware")
+ # upstream tag 20250109
  # upstream tag 20241210
  * 5bce792a7 ("amdgpu: update vpe 6.1.1 firmware")
  * 4a172771d ("amdgpu: update psp 14.0.1 firmware")
  * d316e650c ("amdgpu: update gc 11.5.1 firmware")
  # upstream tag 20241110
  # upstream tag 20240811
  * f4b6b75fc ("amdgpu: update SDMA 6.1.1 firmware")
  # upstream tag 20240709
  
  [ 217.270407] amdgpu :c5:00.0: amdgpu: [gfxhub] page fault (src_id:0 
ring:24 vmid:9 pasid:32771)
  [ 217.270426] amdgpu :c5:00.0: amdgpu: in process redshiftCmdLine pid 
3362 thread redshiftCmdLine pid 3362)
  [ 217.270430] amdgpu :c5:00.0: amdgpu: in page starting at address 
0x from client 10
  [ 217.270433] amdgpu :c5:00.0: amdgpu: 
GCVM_L2_PROTECTION_FAULT_STATUS:0x00901431
  [ 217.270435] amdgpu :c5:00.0: amdgpu: Faulty UTCL2 client ID: SQC (data) 
(0xa)
  [ 217.270437] amdgpu :c5:00.0: amdgpu: MORE_FAULTS: 0x1
  [ 217.270438] amdgpu :c5:00.0: amdgpu: WALKER_ERROR: 0x0
  [ 217.270440] amdgpu :c5:00.0: amdgpu: PERMISSION_FAULTS: 0x3
  [ 217.270441] amdgpu :c5:00.0: amdgpu: MAPPING_ERROR: 0x0
  [ 217.270442] amdgpu :c5:00.0: amdgpu: RW: 0x0
  [ 217.270448] amdgpu :c5:00.0: amdgpu: [gfxhub] page fault (src_id:0 
ring:24 vmid:9 pasid:32771)
  [ 217.270450] amdgpu :c5:00.0: amdgpu: in process redshiftCmdLine pid 
3362 thread redshiftCmdLine pid 3362)
  [ 217.270452] amdgpu :c5:00.0: amdgpu: in page starting at address 
0x from client 10
  [ 217.270454] amdgpu :c5:00.0: amdgpu: 
GCVM_L2_PROTECTION_FAULT_STATUS:0x
  [ 217.270455] amdgpu :c5:00.0: amdgpu: Faulty UTCL2 client ID: CB/DB (0x0)
  [ 217.270456] amdgpu :c5:00.0: amdgpu: MORE_FAULTS: 0x0
  [ 217.270457] amdgpu :c5:00.0: amdgpu: WALKER_ERROR: 0x0
  [ 217.270458] amdgpu :c5:00.0: amdgpu: PERMISSION_FAULTS: 0x0
  [ 217.270459] amdgpu :c5:00.0: amdgpu: MAPPING_ERROR: 0x0
  [ 217.270460] amdgpu :c5:00.0: amdgpu: RW: 0x0
  [ 217.270466] amdgpu :c5:00.0: amdgpu: [gfxhub] page fault (src_id:0 
ring:24 vmid:9 pasid:32771)
  [ 217.270468] amdgpu :c5:00.0: amdgpu: in process redshiftCmdLine pid 
3362 thread redshiftCmdLine pid 3362)
  [ 217.270469] amdgpu :c5:00.0: amdgpu: in page starting at address 
0x from client 10
  [ 217.270470] amdgpu :c5:00.0: amdgpu: 
GCVM_L2_PROTECTION_FAULT_STATUS:0x
  [ 217.270472] amdgpu :c5:00.0: amdgpu: Faulty UTCL2 client ID: CB/DB (0x0)
  [ 217.270473] amdgpu :c5:00.0: amdgpu: MORE_FAULTS: 0x0
  [ 217.270474] amdgpu :c5:00.0: amdgpu: WALKER_ERROR: 0x0
  [ 217.270475] amdgpu :c5:00.0: amdgpu: PERMISSION_FAULTS: 0x0
  [ 217.270476] amdgpu :c5:00.0: amdgpu: MAPPING_ERROR: 0x0
  [ 217.270476] amdgpu :c5:00.0: amdgpu: RW: 0x0

** Changed in: linux-firmware (Ubuntu Plucky)
   Status: New => Fix Released

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

Title:
  Update amdgpu FW for GC 11.5.1

Status in HWE Next:
  New
Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-firmware source package in Noble:
  New
Status in linux-firmware source package in Oracular:
  New
Status in linux-firmware source package in Plucky:
  Fix Released

Bug description:
  Products containing gfx1151 architecture with multiple
  microcontrollers (VPE, PSP, VCN, SDMA, etc.), observed a few page
  faults during heavy loading or with stress applications on the CRB.
  This requires rebasing these firmware versions to eliminate the risk.

  # upstream tag 20250211
  * 52d598fe2 ("amdgpu: update vcn 4.0.6 firmware")
  # upstream tag 20250109
  # upstream tag 20241210
  * 5bce792a7 ("amdgpu: update vpe 6.1.1 firmware")
  * 4a172771d ("amdgpu: update psp 14.0.1 firmware")
  * d316e650c ("amdgpu: update gc 11.5.1 firmware")
  # upstream tag 20241110
  # upstream tag 20240811
  * f4b6b75fc ("amdgpu: update SDMA 6.1.1 firmware")
  # upstream tag 20240709

  [ 217.270407] amdgpu :c5:00.0: amdgpu: [gfxhub] page fault (src_id:0 
ring:24 vmid:9 pasid:32771)
  [ 217.270426] amdgpu :c5:00.0: amdgpu: in process redshiftCmdLine pid 
3362 thread redshiftCmdLine pid 3362)
  [ 217.270430] amdgpu :c5:00.0: amdgpu: in page starting at address 
0x from client 10
  [ 217.270433] amdgpu :c5:00.0: amdgpu: 
GCVM_L2_PROTECTION_FAULT_STATUS:0x00901431
  [ 217.270435] amdgpu :c5:00.0: amdgpu: Faulty UTCL2 client ID: SQC (data) 
(0xa)
  [ 217.270437] amdgpu 00

[Kernel-packages] [Bug 2100820] [NEW] proc_thermal_pci 0000:00:04.0: failed to add RAPL MMIO interface (2)

2025-03-09 Thread En-Wei Wu
Public bug reported:

[Impact]
proc_thermal_pci :00:04.0: failed to add RAPL MMIO interface

[Fix]
In https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2095554, the issue was 
supposed to be fixed by cherry-pick the patchset from upstream linux:

1. 91e8f835a7ed powercap: intel_rapl_tpmi: Fix bogus register reading
2. 99ca0b57e49f thermal: intel: int340x: processor: Fix warning during module 
unload
3. 1d390923974c powercap: intel_rapl_tpmi: Ignore minor version change
4. f517ff174ab7 powercap: intel_rapl_msr: Add PL4 support for Arrowlake-U
5. bfc6819e4bf5 thermal: intel: int340x: processor: Remove MMIO RAPL CPU 
hotplug support
6. 3fb0eea8a1c4 thermal: intel: int340x: processor: Add MMIO RAPL PL4 support

However, there is still one patch left to be merged so the issue will be
finally gone:

3cc83aeea0cd thermal: intel: int340x: processor: Enable MMIO RAPL for
Panther Lake

[Test Plan]
1. Install Ubuntu image and boot into the OS
2. Check the dmesg if there is `proc_thermal_pci :00:04.0: failed to add 
RAPL MMIO interface`

[Where problems could occur]
May cause regression.

** Affects: hwe-next
 Importance: Undecided
 Status: New

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

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

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

** Affects: linux-oem-6.11 (Ubuntu Noble)
 Importance: Undecided
 Assignee: En-Wei Wu (rickywu)
 Status: In Progress


** Tags: jira-somerville-1672 oem-priority somerville

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

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

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

** Changed in: linux-oem-6.11 (Ubuntu Noble)
 Assignee: (unassigned) => En-Wei Wu (rickywu)

** Changed in: linux-oem-6.11 (Ubuntu Noble)
   Status: New => In Progress

** Tags added: jira-somerville-1672 oem-priority somerville

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

Title:
   proc_thermal_pci :00:04.0: failed to add RAPL MMIO interface (2)

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  New
Status in linux-oem-6.11 package in Ubuntu:
  New
Status in linux source package in Noble:
  New
Status in linux-oem-6.11 source package in Noble:
  In Progress

Bug description:
  [Impact]
  proc_thermal_pci :00:04.0: failed to add RAPL MMIO interface

  [Fix]
  In https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2095554, the issue 
was supposed to be fixed by cherry-pick the patchset from upstream linux:

  1. 91e8f835a7ed powercap: intel_rapl_tpmi: Fix bogus register reading
  2. 99ca0b57e49f thermal: intel: int340x: processor: Fix warning during module 
unload
  3. 1d390923974c powercap: intel_rapl_tpmi: Ignore minor version change
  4. f517ff174ab7 powercap: intel_rapl_msr: Add PL4 support for Arrowlake-U
  5. bfc6819e4bf5 thermal: intel: int340x: processor: Remove MMIO RAPL CPU 
hotplug support
  6. 3fb0eea8a1c4 thermal: intel: int340x: processor: Add MMIO RAPL PL4 support

  However, there is still one patch left to be merged so the issue will
  be finally gone:

  3cc83aeea0cd thermal: intel: int340x: processor: Enable MMIO RAPL for
  Panther Lake

  [Test Plan]
  1. Install Ubuntu image and boot into the OS
  2. Check the dmesg if there is `proc_thermal_pci :00:04.0: failed to add 
RAPL MMIO interface`

  [Where problems could occur]
  May cause regression.

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


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


[Kernel-packages] [Bug 2101771] Re: package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited with return code 11

2025-03-09 Thread Jeremy
See https://answers.launchpad.net/ubuntu/+source/linux-hwe-6.11/+question/820915
The problem is with a dkms module with source code from github

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

Title:
  package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to
  install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited
  with return code 11

Status in dkms package in Ubuntu:
  New

Bug description:
  repeated error when updating in the terminal

  Ubuntu 24.04.2 LTS

  ProblemType: Package
  DistroRelease: Ubuntu 24.04
  Package: linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1
  ProcVersionSignature: Ubuntu 6.8.0-52.53-generic 6.8.12
  Uname: Linux 6.8.0-52-generic x86_64
  ApportVersion: 2.28.1-0ubuntu3.3
  AptOrdering:
   linux-headers-6.11.0-19-generic:amd64: Install
   linux-image-6.11.0-19-generic:amd64: Install
   NULL: ConfigurePending
  Architecture: amd64
  CasperMD5CheckResult: pass
  Date: Sun Mar  9 01:10:59 2025
  ErrorMessage: run-parts: /etc/kernel/header_postinst.d/dkms exited with 
return code 11
  InstallationDate: Installed on 2025-02-08 (29 days ago)
  InstallationMedia: Ubuntu 24.04.1 LTS "Noble Numbat" - Release amd64 
(20240827.1)
  Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions:
   dpkg 1.22.6ubuntu6.1
   apt  2.7.14build2
  SourcePackage: dkms
  Title: package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to 
install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited with 
return code 11
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2101779] [NEW] Wrong display options on widescreen monitor

2025-03-09 Thread Thomas Stordy
Public bug reported:

5.4.0-208 kernel only allows 4:3 resolutions on Samsung 226BW widescreen
monitor. For example, 1680 by 1050 resolution is not available. This
issue is resolved by rolling back to 5.4.0-148 kernel.

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

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

Title:
  Wrong display options on widescreen monitor

Status in linux package in Ubuntu:
  New

Bug description:
  5.4.0-208 kernel only allows 4:3 resolutions on Samsung 226BW
  widescreen monitor. For example, 1680 by 1050 resolution is not
  available. This issue is resolved by rolling back to 5.4.0-148 kernel.

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


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


[Kernel-packages] [Bug 2100771] Re: [MT7921] Bluetooth not detected after install

2025-03-09 Thread Murali
** Changed in: linux-hwe-6.11 (Ubuntu)
 Assignee: (unassigned) => Murali (tobioffice)

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

Title:
  [MT7921] Bluetooth not detected after install

Status in linux-hwe-6.11 package in Ubuntu:
  New

Bug description:
  even though its laptop HP-victus intel i7 rtx 3050, 
  it was working fine at installing Ubuntu, 
  working fine with with any other distro like windows , fedora 
  iam facing this problem from last month it is on both 24.04.1 and 24.04.2

  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: bluetooth (not installed)
  ProcVersionSignature: Ubuntu 6.11.0-17.17~24.04.2-generic 6.11.11
  Uname: Linux 6.11.0-17-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Mar  3 18:51:11 2025
  InstallationDate: Installed on 2025-03-03 (0 days ago)
  InstallationMedia: Ubuntu 24.04.2 LTS "Noble Numbat" - Release amd64 
(20250215)
  InterestingModules: bluetooth
  MachineType: HP Victus by HP Gaming Laptop 15-fa1xxx
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.11.0-17-generic 
root=UUID=31bfa864-6285-4c70-b046-70a55eec5015 ro quiet splash vt.handoff=7
  SourcePackage: bluez
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 08/21/2024
  dmi.bios.release: 15.18
  dmi.bios.vendor: AMI
  dmi.bios.version: F.18
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 8C3F
  dmi.board.vendor: HP
  dmi.board.version: 63.43
  dmi.chassis.type: 10
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.ec.firmware.release: 63.43
  dmi.modalias: 
dmi:bvnAMI:bvrF.18:bd08/21/2024:br15.18:efr63.43:svnHP:pnVictusbyHPGamingLaptop15-fa1xxx:pvr:rvnHP:rn8C3F:rvr63.43:cvnHP:ct10:cvrChassisVersion:skuAM1S8PA#ACJ:
  dmi.product.family: 103C_5335M7 HP Victus
  dmi.product.name: Victus by HP Gaming Laptop 15-fa1xxx
  dmi.product.sku: AM1S8PA#ACJ
  dmi.sys.vendor: HP
  hciconfig:
   
  rfkill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  syslog:
   Mar 03 18:50:32 HP-Victus NetworkManager[1225]:   [1741008032.3656] 
Loaded device plugin: NMBluezManager 
(/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-bluetooth.so)
   Mar 03 18:51:18 HP-Victus polkitd[1172]: Operator of unix-session:2 
successfully authenticated as unix-user:murali to gain ONE-SHOT authorization 
for action com.ubuntu.apport.root-info for unix-process:3852:10626 
[/usr/bin/python3 /usr/share/apport/apport-gtk bluetooth] (owned by 
unix-user:murali)

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


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


[Kernel-packages] [Bug 2080443] Re: Create 64K page size GCP kernel for ARM

2025-03-09 Thread Launchpad Bug Tracker
This bug was fixed in the package linux-gcp - 6.14.0-1002.2

---
linux-gcp (6.14.0-1002.2) plucky; urgency=medium

  * plucky/linux-gcp: 6.14.0-1002.2 -proposed tracker (LP: #2100257)

  * Packaging resync (LP: #1786013)
- [Packaging] debian.gcp/dkms-versions -- update from kernel-versions
  (main/d2025.02.26)

  * Create 64K page size GCP kernel for ARM (LP: #2080443)
- [Packaging] gcp: Add 64k page flavor

  * Miscellaneous Ubuntu changes
- [Packaging] bump to 6.14
- [Config] updateconfigs following Ubuntu-6.14.0-7.7 rebase
- [packaging] split flavour-control.stub

  [ Ubuntu: 6.14.0-7.7 ]

  * plucky/linux: 6.14.0-7.7 -proposed tracker (LP: #2100581)
  * Miscellaneous upstream changes
- Revert "UBUNTU: [Packaging] Sync riscv64.mk with linux-riscv tree"

  [ Ubuntu: 6.14.0-6.6 ]

  * plucky/linux: 6.14.0-6.6 -proposed tracker (LP: #2100481)
  * Miscellaneous Ubuntu changes
- [Packaging] riscv64.mk: fix a typo
- [Packaging] enable signing for s390x
- [Packaging] riscv64.mk: disable building as part of linux-generic

  [ Ubuntu: 6.14.0-5.5 ]

  * plucky/linux: 6.14.0-5.5 -proposed tracker (LP: #2100254)
  * Miscellaneous Ubuntu changes
- [Packaging] Sync riscv64.mk with linux-riscv tree
- [Packaging] clean up the distclean rule
- [Config] updateconfigs following v6.14-rc4 rebase

  [ Ubuntu: 6.14.0-4.4 ]

  * plucky/linux: 6.14.0-4.4 -proposed tracker (LP: #2098875)
  * Packaging resync (LP: #1786013)
- [Packaging] debian.master/dkms-versions -- update from kernel-versions
  (main/d2025.02.11)
  * update apparmor and LSM stacking patch set (LP: #2028253)
- SAUCE: apparmor4.0.0 [1/53]: Stacking: Audit: Create audit_stamp structure
- SAUCE: apparmor4.0.0 [2/53]: Stacking: Audit: Allow multiple records in an
  audit_buffer
- SAUCE: apparmor4.0.0 [3/53]: Stacking: LSM: security_lsmblob_to_secctx
  module selection
- SAUCE: apparmor4.0.0 [4/53]: Stacking: Audit: Add record for multiple task
  security contexts
- SAUCE: apparmor4.0.0 [5/53]: Stacking: Audit: multiple subject lsm values
  for netlabel
- SAUCE: apparmor4.0.0 [6/53]: Stacking: Audit: Add record for multiple 
object
  contexts
- SAUCE: apparmor4.0.0 [7/53]: Stacking: LSM: Single calls in secid hooks
- SAUCE: apparmor4.0.0 [8/53]: Stacking: LSM: Exclusive secmark usage
- SAUCE: apparmor4.0.0 [9/53]: Stacking: Audit: Call only the first of the
  audit rule hooks
- SAUCE: apparmor4.0.0 [10/53]: Stacking: AppArmor: Remove the exclusive 
flag
- SAUCE: apparmor4.0.0 [11/53]: 6.15 apparmor-next: apparmor: Use 
str_yes_no()
  helper function
- SAUCE: apparmor4.0.0 [12/53]: 6.15 apparmor-next: apparmor: Improve debug
  print infrastructure
- SAUCE: apparmor4.0.0 [13/53]: 6.15 apparmor-next: apparmor: cleanup:
  attachment perm lookup to use lookup_perms()
- SAUCE: apparmor4.0.0 [14/53]: 6.15 apparmor-next: apparmor: remove 
redundant
  unconfined check.
- SAUCE: apparmor4.0.0 [15/53]: 6.15 apparmor-next: apparmor: switch signal
  mediation to use RULE_MEDIATES
- SAUCE: apparmor4.0.0 [16/53]: 6.15 apparmor-next: apparmor: ensure labels
  with more than one entry have correct flags
- SAUCE: apparmor4.0.0 [17/53]: 6.15 apparmor-next: apparmor: remove 
explicit
  restriction that unconfined cannot use change_hat
- SAUCE: apparmor4.0.0 [18/53]: 6.15 apparmor-next: apparmor: cleanup:
  refactor file_perm() to doc semantics of some checks
- SAUCE: apparmor4.0.0 [19/53]: 6.15 apparmor-next: apparmor: carry 
mediation
  check on label
- SAUCE: apparmor4.0.0 [20/53]: 6.15 apparmor-next: apparmor: add additional
  flags to extended permission.
- SAUCE: apparmor4.0.0 [21/53]: 6.15 apparmor-next: apparmor: add support 
for
  profiles to define the kill signal
- SAUCE: apparmor4.0.0 [22/53]: 6.15 apparmor-next: apparmor: fix
  x_table_lookup when stacking is not the first entry
- SAUCE: apparmor4.0.0 [23/53]: 6.15 apparmor-next: apparmor: add ability to
  mediate caps with policy state machine
- SAUCE: apparmor4.0.0 [24/53]: 6.15 apparmor-next: apparmor: remove 
af_select
  macro
- SAUCE: apparmor4.0.0 [25/53]: 6.15 apparmor-next: apparmor: lift kernel
  socket check out of critical section
- SAUCE: apparmor4.0.0 [26/53]: 6.15 apparmor-next: apparmor: in preparation
  for finer networking rules rework match_prot
- SAUCE: apparmor4.0.0 [27/53]: 6.15 apparmor-next: apparmor: add fine 
grained
  af_unix mediation
- SAUCE: apparmor4.0.0 [28/53]: 6.15 apparmor-next: apparmor: gate make fine
  grained unix mediation behind v9 abi
- SAUCE: apparmor4.0.0 [29/53]: 6.15 apparmor-next: apparmor: fix dbus
  permission queries to v9 ABI
- SAUCE: apparmor4.0.0 [30/53]: 6.15 apparmor-next: apparmor: Fix checking
  address of an array in accum_label_info()
- SAUCE: apparmor4.0.0 [31/53]: 6.15 

[Kernel-packages] [Bug 2101782] [NEW] memcpy: detected field-spanning write (size 20) of single field "xattrstart"

2025-03-09 Thread Andreas Hasenack
Public bug reported:

I created a zfs-encrypted pool at /dev/sda (a 16Gb pendrive), to use it
as storage for lxd on this raspberry pi5 with 8Gb of RAM.

Creating the pool worked just fine, as did making it a storage for lxd.
I then launched a test container, and it hung.

ProblemType: Bug
DistroRelease: Ubuntu 25.04
Package: linux-image-6.11.0-1004-raspi 6.11.0-1004.4
ProcVersionSignature: Ubuntu 6.11.0-1004.4-raspi 6.11.0
Uname: Linux 6.11.0-1004-raspi aarch64
NonfreeKernelModules: zfs
AlsaVersion: Advanced Linux Sound Architecture Driver Version 
k6.11.0-1004-raspi.
AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
ApportVersion: 2.32.0-0ubuntu2
Architecture: arm64
ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/timer', 
'/dev/snd/seq', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/by-path', 
'/dev/snd/pcmC1D0p', '/dev/snd/controlC1'] failed with exit code 1:
CRDA: N/A
Card0.Amixer.info: Error: [Errno 2] No such file or directory: 'amixer'
Card0.Amixer.values: Error: [Errno 2] No such file or directory: 'amixer'
Card1.Amixer.info: Error: [Errno 2] No such file or directory: 'amixer'
Card1.Amixer.values: Error: [Errno 2] No such file or directory: 'amixer'
CasperMD5CheckResult: unknown
CloudArchitecture: aarch64
CloudID: nocloud
CloudName: unknown
CloudPlatform: nocloud
CloudSubPlatform: config-disk (/dev/mmcblk0p1)
Date: Sun Mar  9 13:29:39 2025
ImageMediaBuild: 20250308
Lspci-vt: -[:00]---00.0-[01]00.0  Raspberry Pi Ltd RP1 PCIe 2.0 South 
Bridge
PciMultimedia:
 
ProcEnviron:
 LANG=C.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=screen-256color
 XDG_RUNTIME_DIR=
ProcFB:
 
ProcKernelCmdLine: reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe  
smsc95xx.macaddr=D8:3A:DD:F1:00:89 vc_mem.mem_base=0x3fc0 
vc_mem.mem_size=0x4000  console=ttyAMA10,115200 multipath=off 
dwc_otg.lpm_enable=0 console=tty1 root=LABEL=writable rootfstype=ext4 rootwait 
fixrtc
RelatedPackageVersions:
 linux-restricted-modules-6.11.0-1004-raspi N/A
 linux-backports-modules-6.11.0-1004-raspi  N/A
 linux-firmware 20250204.git0fd450ee-0ubuntu1
RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
SourcePackage: linux-raspi
StagingDrivers: rpivid_hevc
UpgradeStatus: No upgrade log present (probably fresh install)
acpidump:

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


** Tags: apport-bug arm64 arm64-image plucky raspi-image staging

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

Title:
  memcpy: detected field-spanning write (size 20) of single field
  "xattrstart"

Status in linux-raspi package in Ubuntu:
  New

Bug description:
  I created a zfs-encrypted pool at /dev/sda (a 16Gb pendrive), to use
  it as storage for lxd on this raspberry pi5 with 8Gb of RAM.

  Creating the pool worked just fine, as did making it a storage for
  lxd. I then launched a test container, and it hung.

  ProblemType: Bug
  DistroRelease: Ubuntu 25.04
  Package: linux-image-6.11.0-1004-raspi 6.11.0-1004.4
  ProcVersionSignature: Ubuntu 6.11.0-1004.4-raspi 6.11.0
  Uname: Linux 6.11.0-1004-raspi aarch64
  NonfreeKernelModules: zfs
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 
k6.11.0-1004-raspi.
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
  ApportVersion: 2.32.0-0ubuntu2
  Architecture: arm64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/timer', 
'/dev/snd/seq', '/dev/snd/pcmC0D0p', '/dev/snd/controlC0', '/dev/snd/by-path', 
'/dev/snd/pcmC1D0p', '/dev/snd/controlC1'] failed with exit code 1:
  CRDA: N/A
  Card0.Amixer.info: Error: [Errno 2] No such file or directory: 'amixer'
  Card0.Amixer.values: Error: [Errno 2] No such file or directory: 'amixer'
  Card1.Amixer.info: Error: [Errno 2] No such file or directory: 'amixer'
  Card1.Amixer.values: Error: [Errno 2] No such file or directory: 'amixer'
  CasperMD5CheckResult: unknown
  CloudArchitecture: aarch64
  CloudID: nocloud
  CloudName: unknown
  CloudPlatform: nocloud
  CloudSubPlatform: config-disk (/dev/mmcblk0p1)
  Date: Sun Mar  9 13:29:39 2025
  ImageMediaBuild: 20250308
  Lspci-vt: -[:00]---00.0-[01]00.0  Raspberry Pi Ltd RP1 PCIe 2.0 South 
Bridge
  PciMultimedia:
   
  ProcEnviron:
   LANG=C.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=screen-256color
   XDG_RUNTIME_DIR=
  ProcFB:
   
  ProcKernelCmdLine: reboot=w coherent_pool=1M 8250.nr_uarts=1 
pci=pcie_bus_safe  smsc95xx.macaddr=D8:3A:DD:F1:00:89 
vc_mem.mem_base=0x3fc0 vc_mem.mem_size=0x4000  console=ttyAMA10,115200 
multipath=off dwc_otg.lpm_enable=0 console=tty1 root=LABEL=writable 
rootfstype=ext4 rootwait fixrtc
  RelatedPackageVersions:
   linux-restri

[Kernel-packages] [Bug 2101771] Re: package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited with return code 11

2025-03-09 Thread Daniel Letzeisen
*** This bug is a duplicate of bug 2097830 ***
https://bugs.launchpad.net/bugs/2097830

** This bug has been marked a duplicate of bug 2097830
   xone fails to build with kernel 6.11

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

Title:
  package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to
  install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited
  with return code 11

Status in dkms package in Ubuntu:
  New

Bug description:
  repeated error when updating in the terminal

  Ubuntu 24.04.2 LTS

  ProblemType: Package
  DistroRelease: Ubuntu 24.04
  Package: linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1
  ProcVersionSignature: Ubuntu 6.8.0-52.53-generic 6.8.12
  Uname: Linux 6.8.0-52-generic x86_64
  ApportVersion: 2.28.1-0ubuntu3.3
  AptOrdering:
   linux-headers-6.11.0-19-generic:amd64: Install
   linux-image-6.11.0-19-generic:amd64: Install
   NULL: ConfigurePending
  Architecture: amd64
  CasperMD5CheckResult: pass
  Date: Sun Mar  9 01:10:59 2025
  ErrorMessage: run-parts: /etc/kernel/header_postinst.d/dkms exited with 
return code 11
  InstallationDate: Installed on 2025-02-08 (29 days ago)
  InstallationMedia: Ubuntu 24.04.1 LTS "Noble Numbat" - Release amd64 
(20240827.1)
  Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions:
   dpkg 1.22.6ubuntu6.1
   apt  2.7.14build2
  SourcePackage: dkms
  Title: package linux-image-6.11.0-19-generic 6.11.0-19.19~24.04.1 failed to 
install/upgrade: run-parts: /etc/kernel/header_postinst.d/dkms exited with 
return code 11
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2085162] Re: Bluetooth devices can't reconnect after reboot or sleep

2025-03-09 Thread Mikk Kiilaspää
I can also confirm that the version 5.72-0ubuntu5.1 fixed the auto-reconnect 
for my Oneplus Nord Buds.
They now reconnect after resume from sleep and also when switching between 
devices with a long-press on the headphones (between my phone and laptop).

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

Title:
  Bluetooth devices can't reconnect after reboot or sleep

Status in Bluez Utilities:
  Fix Released
Status in bluez package in Ubuntu:
  Fix Released
Status in bluez source package in Noble:
  Fix Committed
Status in bluez source package in Oracular:
  Fix Released
Status in bluez source package in Plucky:
  Fix Released

Bug description:
  [ Impact ]

  Bluetooth devices fail to reconnect after a suspend or system restart

  [ Test Plan ]

  1. Put the headphones into discovery mode.
  2. Go to Settings -> Bluetooth and connect to the headphones.
  3. Reboot the laptop.
  4. Go to Settings -> Bluetooth
  5. Click on the headphones.
  6. Try to connect to the headphones.
  7. If step 6. fails try to disconnect.
  8. Go to step 6.

  Expected result:
  After step 6 for headphones to be connected and for headphones to announce 
"Bluetooth connected".

  [ Where problems could occur ]

  The change is in the reading of stored device keys. If the patch is
  wrong it could be that paired devices will not reconnect correctly or
  might use an incorrect profile.

  [ Other Info ]

  How reproducible is the problem:
  Fairly reproducible. It can sometimes takes 30 or more connection attempts 
before a real connection is established.

  Version information:
  Ubuntu 24.10

  ProblemType: Bug
  DistroRelease: Ubuntu 24.10
  Package: alsa-base 1.0.25+dfsg-0ubuntu7
  ProcVersionSignature: Ubuntu 6.11.0-9.9-generic 6.11.0
  Uname: Linux 6.11.0-9-generic x86_64
  ApportVersion: 2.30.0-0ubuntu4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/seq:sitsofe8130 F pipewire
   /dev/snd/controlC0:  sitsofe8136 F wireplumber
   /dev/snd/controlC1:  sitsofe8136 F wireplumber
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon Oct 21 21:34:28 2024
  InstallationDate: Installed on 2024-10-14 (7 days ago)
  InstallationMedia: Ubuntu 24.10 "Oracular Oriole" - Release amd64 (20241009.4)
  MachineType: LENOVO 82KD
  PackageArchitecture: all
  SourcePackage: alsa-driver
  Symptom: audio
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/13/2021
  dmi.bios.release: 1.42
  dmi.bios.vendor: LENOVO
  dmi.bios.version: GLCN42WW
  dmi.board.asset.tag: No Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0T76530WIN
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Lenovo V15 G2 ALC
  dmi.ec.firmware.release: 1.42
  dmi.modalias: 
dmi:bvnLENOVO:bvrGLCN42WW:bd12/13/2021:br1.42:efr1.42:svnLENOVO:pn82KD:pvrLenovoV15G2ALC:rvnLENOVO:rnLNVNB161216:rvrSDK0T76530WIN:cvnLENOVO:ct10:cvrLenovoV15G2ALC:skuLENOVO_MT_82KD_BU_idea_FM_V15G2ALC:
  dmi.product.family: V15 G2 ALC
  dmi.product.name: 82KD
  dmi.product.sku: LENOVO_MT_82KD_BU_idea_FM_V15 G2 ALC
  dmi.product.version: Lenovo V15 G2 ALC
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluez/+bug/2085162/+subscriptions


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


[Kernel-packages] [Bug 2099986] Re: IdeaPad 5 laptop kernel errors

2025-03-09 Thread AaronMa
These errors are related to firmware like BIOS, please report it to the
hw vendor.

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

Title:
  IdeaPad 5 laptop kernel errors

Status in linux package in Ubuntu:
  Triaged

Bug description:
  
  feb 25 10:24:18 javi kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PCI0], AE_NOT_FOUND (20230628/dswload2-162)
  feb 25 10:24:18 javi kernel: ACPI Error: AE_NOT_FOUND, During name 
lookup/catalog (20230628/psobject-220)
  feb 25 10:24:18 javi kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_SB.PC00.DGPV], AE_NOT_FOUND (20230628/psargs-332)
  feb 25 10:24:18 javi kernel: ACPI Error: Aborting method 
\_SB.PC00.PEG0.PCRP._ON due to previous error (AE_NOT_FOUND) 
(20230628/psparse-529)
  feb 25 10:24:18 javi kernel: integrity: Problem loading X.509 certificate -65
  feb 25 10:24:18 javi kernel: i801_smbus :00:1f.4: Transaction timeout
  feb 25 10:24:18 javi kernel: i801_smbus :00:1f.4: Failed terminating the 
transaction
  feb 25 10:24:18 javi kernel: i801_smbus :00:1f.4: SMBus is busy, can't 
use it!
  feb 25 10:24:20 javi kernel: Bluetooth: hci0: Malformed MSFT vendor event: 
0x02
  feb 25 10:24:21 javi bluetoothd[1095]: 
profiles/sap/server.c:sap_server_register() Sap driver initialization failed.
  feb 25 10:24:21 javi bluetoothd[1095]: sap-server: Operation not permitted (1)
  feb 25 10:24:21 javi bluetoothd[1095]: Failed to set mode: Failed (0x03)
  feb 25 10:24:21 javi kernel: ACPI BIOS Error (bug): Could not resolve symbol 
[\_TZ.ETMD], AE_NOT_FOUND (20230628/psargs-332)
  feb 25 10:24:21 javi kernel: ACPI Error: Aborting method \_SB.IETM._OSC due 
to previous error (AE_NOT_FOUND) (20230628/psparse-529)
  feb 25 10:24:22 javi gdm-launch-environment][1506]: gkr-pam: couldn't unlock 
the login keyring.
  feb 25 10:24:38 javi gdm-password][2385]: gkr-pam: unable to locate daemon 
control file
  feb 25 10:24:39 javi gdm3[1473]: Gdm: on_display_added: assertion 
'GDM_IS_REMOTE_DISPLAY (display)' failed

  ProblemType: Bug
  DistroRelease: Ubuntu 24.04
  Package: linux-image-6.8.0-53-generic 6.8.0-53.55
  ProcVersionSignature: Ubuntu 6.8.0-53.55-generic 6.8.12
  Uname: Linux 6.8.0-53-generic x86_64
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/seq:javi   2943 F pipewire
   /dev/snd/controlC0:  javi   2943 F pipewire
javi   2945 F wireplumber
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Feb 25 12:08:53 2025
  MachineType: LENOVO 82FG
  ProcEnviron:
   LANG=es_ES.UTF-8
   PATH=(custom, no user)
   SHELL=/bin/bash
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.8.0-53-generic 
root=UUID=b94c51f5-6412-428d-89b5-9436f014615d ro quiet splash vt.handoff=7
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.8.0-53-generic N/A
   linux-backports-modules-6.8.0-53-generic  N/A
   linux-firmware20240318.git3b128b60-0ubuntu2.9
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/24/2024
  dmi.bios.release: 1.78
  dmi.bios.vendor: LENOVO
  dmi.bios.version: FHCN78WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32776 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: IdeaPad 5 15ITL05
  dmi.ec.firmware.release: 1.77
  dmi.modalias: 
dmi:bvnLENOVO:bvrFHCN78WW:bd06/24/2024:br1.78:efr1.77:svnLENOVO:pn82FG:pvrIdeaPad515ITL05:rvnLENOVO:rnLNVNB161216:rvrSDK0R32776WIN:cvnLENOVO:ct10:cvrIdeaPad515ITL05:skuLENOVO_MT_82FG_BU_idea_FM_IdeaPad515ITL05:
  dmi.product.family: IdeaPad 5 15ITL05
  dmi.product.name: 82FG
  dmi.product.sku: LENOVO_MT_82FG_BU_idea_FM_IdeaPad 5 15ITL05
  dmi.product.version: IdeaPad 5 15ITL05
  dmi.sys.vendor: LENOVO

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


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


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

2025-03-09 Thread Yuri Zhang
apport information

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

Title:
  There is a error log for i915 in dmesg and syslog in Ubuntu 24.04.2

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  There is a error log for i915 in dmesg and /var/log/syslog:

  """
  [4.825006] i915 :00:02.0: [drm] Found METEORLAKE (device ID 7d51) 
display version 14.00 stepping D0
  [4.826686] i915 :00:02.0: [drm] VT-d active for gfx access
  [4.826748] i915 :00:02.0: [drm] Using Transparent Hugepages
  [4.839375] i915 :00:02.0: vgaarb: VGA decodes changed: 
olddecodes=io+mem,decodes=none:owns=io+mem
  [4.850434] i915 :00:02.0: [drm] Finished loading DMC firmware 
i915/mtl_dmc.bin (v2.21)
  [4.860494] i915 :00:02.0: [drm] GT1: GSC firmware too old for ARL, 
got 102.0.10.1878 but need at least 102.1.15.1926
  [4.860503] i915 :00:02.0: [drm] *ERROR* GT1: GSC firmware 
i915/mtl_gsc_1.bin: fetch failed -EINVAL
  [4.860524] i915 :00:02.0: [drm] GT1: GSC firmware(s) can be 
downloaded from 
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
  [4.865190] i915 :00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin 
version 70.20.0
  [4.875218] i915 :00:02.0: [drm] GT0: GUC: submission enabled
  [4.875224] i915 :00:02.0: [drm] GT0: GUC: SLPC enabled
  [4.875445] i915 :00:02.0: [drm] GT0: GUC: RC enabled
  [4.882507] i915 :00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin 
version 70.20.0
  [4.882513] i915 :00:02.0: [drm] GT1: HuC firmware 
i915/mtl_huc_gsc.bin version 8.5.4
  [4.905284] i915 :00:02.0: [drm] GT1: HuC: authenticated for clear 
media
  [4.905680] i915 :00:02.0: [drm] GT1: GUC: submission enabled
  [4.905682] i915 :00:02.0: [drm] GT1: GUC: SLPC enabled
  [4.905807] i915 :00:02.0: [drm] GT1: GUC: RC enabled
  [4.932807] [drm] Initialized i915 1.6.0 for :00:02.0 on minor 

  """

  
  After get newer fw pack from 
https://web.git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/
 and get the newer version of "mtl_gsc_1.bin:, it seems like no error on dmesg 
now:

  """

  [4.027837] i915 :00:02.0: [drm] Found METEORLAKE (device ID 7dd1) 
display version 14.00 stepping D0
  [4.029317] i915 :00:02.0: [drm] VT-d active for gfx access
  [4.029356] i915 :00:02.0: [drm] Using Transparent Hugepages
  [4.042454] i915 :00:02.0: vgaarb: VGA decodes changed: 
olddecodes=io+mem,decodes=none:owns=io+mem
  [4.051728] i915 :00:02.0: [drm] Finished loading DMC firmware 
i915/mtl_dmc.bin (v2.21)
  [5.935281] i915 :00:02.0: [drm] [ENCODER:240:DDI A/PHY A] failed to 
retrieve link info, disabling eDP
  [5.952549] i915 :00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin 
version 70.20.0
  [5.961933] i915 :00:02.0: [drm] GT0: GUC: submission enabled
  [5.961941] i915 :00:02.0: [drm] GT0: GUC: SLPC enabled
  [5.962275] i915 :00:02.0: [drm] GT0: GUC: RC enabled
  [5.973946] mei_gsc_proxy 
:00:16.0-0f73db04-97ab-4125-b893-e904ad0d5464: bound :00:02.0 (ops 
i915_gsc_proxy_component_ops [i915])
  [5.974446] i915 :00:02.0: [drm] GT1: GuC firmware i915/mtl_guc_70.bin 
version 70.20.0
  [5.974451] i915 :00:02.0: [drm] GT1: HuC firmware 
i915/mtl_huc_gsc.bin version 8.5.4
  [5.997362] i915 :00:02.0: [drm] GT1: HuC: authenticated for clear 
media
  [5.998714] i915 :00:02.0: [drm] GT1: GUC: submission enabled
  [5.998716] i915 :00:02.0: [drm] GT1: GUC: SLPC enabled
  [5.998927] i915 :00:02.0: [drm] GT1: GUC: RC enabled
  [6.002902] i915 :00:02.0: [drm] Protected Xe Path (PXP) protected 
content support initialized
  [6.011549] [drm] Initialized i915 1.6.0 for :00:02.0 on minor 1
  [6.024290] i915 :00:02.0: [drm] Cannot find any crtc or sizes
  [6.045282] i915 :00:02.0: [drm] Cannot find any crtc or sizes
  [6.056408] i915 :00:02.0: [drm] Cannot find any crtc or sizes
  [6.143809] i915 :00:02.0: [drm] GT1: Loaded GSC firmware 
i915/mtl_gsc_1.bin (cv1.0, r102.1.15.1926, svn 1)
  [6.164174] i915 :00:02.0: [drm] GT1: HuC: authenticated for all 
workloads
  """

  With above test, should i915 use a newer version fw? 
  If there any info needed, please let me know, thanks.
  --- 
  ProblemType: Bug
  AlsaDevices:
   total 0
   crw-rw+ 1 root audio 116,  1 Mar  5 08:33 seq
   crw-rw+ 1 root audio 116, 33 Mar  5 08

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

2025-03-09 Thread You-Sheng Yang
apport information

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

** No longer affects: linux (Ubuntu)

** No longer affects: linux (Ubuntu Oracular)

** No longer affects: linux (Ubuntu Plucky)

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

Title:
  kernel warning in dma_alloc_attrs, probe with driver
  intel_ipu6_isys.isys failed with error -12

Status in ipu6-drivers package in Ubuntu:
  New
Status in ipu6-drivers source package in Oracular:
  New
Status in ipu6-drivers source package in Plucky:
  New

Bug description:
  With bug 2091655 applied upstream stable fixes of v6.11.11 to
  generic-6.11 and therefore oem-6.11 kernels, ipu6 starts failing to
  proble intel-psys driver, leaving following kernel messages:

WARNING: CPU: 12 PID: 671 at kernel/dma/mapping.c:544 
dma_alloc_attrs+0xc8/0xd0
...
intel_ipu6_isys.isys intel_ipu6.isys.40: probe with driver 
intel_ipu6_isys.isys failed with error -12

  linux-oem-6.11 version -1013 is the last known unaffected kernel,
  -1015 is the the first. ipu6-drivers version in dkms-versions doesn't
  change across the version bumps.

  Upstream fix merged in https://github.com/intel/ipu6-drivers/pull/324.
  --- 
  ProblemType: Bug
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/seq:ubuntu 2266 F pipewire
   /dev/snd/controlC0:  ubuntu 2266 F pipewire
ubuntu 2270 F wireplumber
  CasperMD5CheckResult: pass
  DistroRelease: Ubuntu 24.04
  InstallationDate: Installed on 2024-05-27 (281 days ago)
  InstallationMedia: Ubuntu 22.04.4 LTS "Jammy Jellyfish" - Release amd64 
(20240220)
  MachineType: LENOVO 21KCSIT080
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/rootfs/noble/boot/vmlinuz-6.11.0-1015-oem 
root=UUID=f0b95f72-430a-47fa-9f7a-253cc708e67f ro rootflags=subvol=rootfs/noble 
quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.11.0-1015.15-oem 6.11.11
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-6.11.0-1015-oem N/A
   linux-backports-modules-6.11.0-1015-oem  N/A
   linux-firmware   
20240318.git3b128b60-0ubuntu2.10+exp.31
  Tags: noble
  Uname: Linux 6.11.0-1015-oem x86_64
  UnreportableReason: This report is about a package that is not installed.
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: N/A
  _MarkForUpload: False
  dmi.bios.date: 08/06/2024
  dmi.bios.release: 1.34
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N3YET69W (1.34 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21KCSIT080
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.24
  dmi.modalias: 
dmi:bvnLENOVO:bvrN3YET69W(1.34):bd08/06/2024:br1.34:efr1.24:svnLENOVO:pn21KCSIT080:pvrThinkPadX1CarbonGen12:rvnLENOVO:rn21KCSIT080:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21KC_BU_Think_FM_ThinkPadX1CarbonGen12:
  dmi.product.family: ThinkPad X1 Carbon Gen 12
  dmi.product.name: 21KCSIT080
  dmi.product.sku: LENOVO_MT_21KC_BU_Think_FM_ThinkPad X1 Carbon Gen 12
  dmi.product.version: ThinkPad X1 Carbon Gen 12
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipu6-drivers/+bug/2100861/+subscriptions


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


[Kernel-packages] [Bug 2101779] Re: Wrong display options on widescreen monitor

2025-03-09 Thread Daniel Letzeisen
Please run the following command on the affected system to gather logs:
apport-collect 2101779

** Package changed: linux (Ubuntu) => xorg (Ubuntu)

** Changed in: xorg (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/2101779

Title:
  Wrong display options on widescreen monitor

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  5.4.0-208 kernel only allows 4:3 resolutions on Samsung 226BW
  widescreen monitor. For example, 1680 by 1050 resolution is not
  available. This issue is resolved by rolling back to 5.4.0-148 kernel.

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


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


[Kernel-packages] [Bug 2091937] Re: System crash with external monitor plugged on kernel 6.8.0-51-generic

2025-03-09 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  System crash with external monitor plugged on kernel 6.8.0-51-generic

Status in linux package in Ubuntu:
  Expired

Bug description:
  I have ubuntu 24.04 with kernel 6.8.0-51-generic, and when I log into
  my X11 GNOME Flashback session session logs out when external monitor
  is plugged via HDMI. Also its logs out after I try to login after
  period of idle time. On kernel 5.15 it works fine.Sometimes the
  external screen flickers briefly then I get "no signal".

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


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


[Kernel-packages] [Bug 2083329] Re: [regression] [nvidia] Phantom "Unknown Display" shown in Settings since kernel 6.11 and 6.8.0-51

2025-03-09 Thread Daniel van Vugt
Aaron, your issue with Intel graphics is bug 2084046.

This bug is for Nvidia only.

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

Title:
  [regression] [nvidia] Phantom "Unknown Display" shown in Settings
  since kernel 6.11 and 6.8.0-51

Status in linux-hwe-6.8 package in Ubuntu:
  Won't Fix
Status in ubuntu-drivers-common package in Ubuntu:
  Fix Released
Status in ubuntu-drivers-common source package in Jammy:
  In Progress
Status in ubuntu-drivers-common source package in Noble:
  Fix Committed
Status in ubuntu-drivers-common source package in Oracular:
  Fix Released

Bug description:
  [ Impact ]

  Backport the Nvidia/SimpleDRM kernel 6.11 fix for phantom displays.
  This is a continuation of bug 2060268 where kernel 6.11 was found to
  require a different fix from that shipped for 6.8.

  Update: 6.8.0-51 has regressed in the same way as 6.11 did.

  [ Test Plan - Nvidia desktop ]

  1. Set up a DESKTOP where the only GPU enabled is an Nvidia one.
  1. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  2. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  3. Reboot and verify the Nvidia driver is now active (lspci -k should mention 
'nvidia' and not 'nouveau').
  4. Log-in to a GNOME Xorg session
  5. Open Settings and verify the only monitors shown are your real monitors.
  6. Log-in to a Wayland session
  7. Open Settings and verify the only monitors shown are your real monitors.

  [ Regression Test Plan - Nvidia Hybrid graphics ]

  1. Set up a machine with Nvidia hybrid graphics (one discrete Nvidia GPU and 
one Intel/AMD integrated GPU)
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  4. Reboot and verify the Nvidia driver is now active (lspci -k should mention 
'nvidia' and not 'nouveau').
  5. Verify that `ls /dev/dri/card*` lists exactly two files.

  [ Regression Test Plan - Intel/AMD graphics ]

  1. Set up a machine with integrated graphics only.
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  4. Run `apt install nvidia-driver-535`.
  5. Reboot.
  6. Verify that you are able to log into the Ubuntu Desktop Wayland session.

  [ Regression Test Plan - Virtual machines ]

  1. Set up a virtual machine without any graphics acceleration (vmware, 
virtio...)
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  4. Run `sudo apt install nvidia-driver-535`.
  5. Reboot.
  6. Verify that you are able to log into the Ubuntu Desktop Wayland session.
  7. Optionally go back to point 4, and try with nvidia-driver-550.

  [ Regression Test Plan - Nvidia+LUKS ]

  1. Set up a desktop machine (not a laptop) with an Nvidia GPU and encrypted 
disk.
  2. Apply all updates and verify that the running kernel is 6.8.0-51 or later
  3. Open the 'Additional Drivers' app to install a supported Nvidia driver.
  4. Reboot
  5. Verify that you see the password prompt for decrypting the disk.

  [ Where problems could occur ]

  Removing the simpledrm card is only safe when it's not being used. If
  somehow a machine wasn't using the installed Nvidia driver then there
  could be a risk of deleting the only working display.

  One case where this could happen is if the Nvidia driver would allow
  being loaded even without any nvidia hardware present: if that is the
  case, "Regression Test Plan - Virtual machines" would fail.

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


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


[Kernel-packages] [Bug 2101811] [NEW] [SRU] Fix Lenovo M70/90 gen6 micmute key and led

2025-03-09 Thread AaronMa
Public bug reported:

[Impact]
The mic-mute key has the opposite function to the LED behavior.

[Fix]
Support Mic Mute LED for ThinkCentre M70/M90 Gen6.

[Test]
Tested on hardware, micmute key mute the mic and LED is light on.

[Where problems could occur]
It may break the sound on Lenovo M70/M90 Gen 6.

** Affects: hwe-next
 Importance: Undecided
 Assignee: AaronMa (mapengyu)
 Status: In Progress

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: In Progress

** Affects: linux-oem-6.11 (Ubuntu)
 Importance: Undecided
 Status: In Progress

** Affects: linux (Ubuntu Noble)
 Importance: Undecided
 Status: In Progress

** Affects: linux-oem-6.11 (Ubuntu Noble)
 Importance: Undecided
 Status: In Progress

** Affects: linux (Ubuntu Oracular)
 Importance: Undecided
 Status: In Progress

** Affects: linux-oem-6.11 (Ubuntu Oracular)
 Importance: Undecided
 Status: Invalid


** Tags: jira-sutton-855 jira-sutton-860 jira-sutton-868 oem-priority

** Tags added: jira-sutton-855 oem-priority

** Tags added: jira-sutton-860

** Tags added: jira-sutton-868

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

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

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

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

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

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

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

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

** Changed in: linux-oem-6.11 (Ubuntu Noble)
   Status: New => In Progress

** Changed in: linux-oem-6.11 (Ubuntu)
   Status: New => In Progress

** Changed in: hwe-next
   Status: New => In Progress

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

** Changed in: hwe-next
 Assignee: (unassigned) => AaronMa (mapengyu)

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

Title:
  [SRU] Fix Lenovo M70/90 gen6 micmute key and led

Status in HWE Next:
  In Progress
Status in linux package in Ubuntu:
  In Progress
Status in linux-oem-6.11 package in Ubuntu:
  In Progress
Status in linux source package in Noble:
  In Progress
Status in linux-oem-6.11 source package in Noble:
  In Progress
Status in linux source package in Oracular:
  In Progress
Status in linux-oem-6.11 source package in Oracular:
  Invalid

Bug description:
  [Impact]
  The mic-mute key has the opposite function to the LED behavior.

  [Fix]
  Support Mic Mute LED for ThinkCentre M70/M90 Gen6.

  [Test]
  Tested on hardware, micmute key mute the mic and LED is light on.

  [Where problems could occur]
  It may break the sound on Lenovo M70/M90 Gen 6.

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


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


[Kernel-packages] [Bug 2098176] Re: [Enablement] TI AMP TAS2781 Enablement

2025-03-09 Thread En-Wei Wu
** Description changed:

  [Impact]
  On HP platform with a new device TI AMP TAS2781, drivers and firmware need to 
be backported to OEM kernel for hardware enablement.
  
  [Fix]
  For drivers, cherry-pick the following commit from linux mainline:
  
  bb5f86ea50ff ALSA: hda/tas2781: Add tas2781 hda SPI driver
  
- For firmware, cherry-pick the following commit from upstream linux-
+ For firmware, cherry-pick the following commits from upstream linux-
  firmware:
  
- 68eeb2a5e89e ASoC: tas2781: Add regbin firmware by index for single
- device
+ 5b2173979a ASoC: tas2781: Add dsp firmware for new projects
+ 68eeb2a5e8 ASoC: tas2781: Add regbin firmware by index for single device
+ 312effe785 ASoC: tas2781: Update dsp firmware for Gemtree project
  
  [Test Plan]
  1. Boot up Ubuntu OEM kernel
  2. Test if sound works fine
  
  [Where problems could occur]
  This backport is for the hardware enablement of the new device, so it has 
nothing to do with regression.

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

Title:
  [Enablement]  TI AMP TAS2781 Enablement

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  Triaged
Status in linux-firmware package in Ubuntu:
  New
Status in linux-oem-6.11 package in Ubuntu:
  New
Status in linux source package in Noble:
  New
Status in linux-firmware source package in Noble:
  New
Status in linux-oem-6.11 source package in Noble:
  Fix Released

Bug description:
  [Impact]
  On HP platform with a new device TI AMP TAS2781, drivers and firmware need to 
be backported to OEM kernel for hardware enablement.

  [Fix]
  For drivers, cherry-pick the following commit from linux mainline:

  bb5f86ea50ff ALSA: hda/tas2781: Add tas2781 hda SPI driver

  For firmware, cherry-pick the following commits from upstream linux-
  firmware:

  5b2173979a ASoC: tas2781: Add dsp firmware for new projects
  68eeb2a5e8 ASoC: tas2781: Add regbin firmware by index for single device
  312effe785 ASoC: tas2781: Update dsp firmware for Gemtree project

  [Test Plan]
  1. Boot up Ubuntu OEM kernel
  2. Test if sound works fine

  [Where problems could occur]
  This backport is for the hardware enablement of the new device, so it has 
nothing to do with regression.

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


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


[Kernel-packages] [Bug 2101811] Re: [SRU] Fix Lenovo M70/90 gen6 micmute key and led

2025-03-09 Thread AaronMa
** Description changed:

  [Impact]
  The mic-mute key has the opposite function to the LED behavior.
  
  [Fix]
  Support Mic Mute LED for ThinkCentre M70/M90 Gen6.
  
  [Test]
  Tested on hardware, micmute key mute the mic and LED is light on.
  
  [Where problems could occur]
  It may break the sound on Lenovo M70/M90 Gen 6.
+ 
+ The patch is merged in 6.14-rc6, SRU for Noble/Oracular/OEM-6.11

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

Title:
  [SRU] Fix Lenovo M70/90 gen6 micmute key and led

Status in HWE Next:
  In Progress
Status in linux package in Ubuntu:
  In Progress
Status in linux-oem-6.11 package in Ubuntu:
  In Progress
Status in linux source package in Noble:
  In Progress
Status in linux-oem-6.11 source package in Noble:
  In Progress
Status in linux source package in Oracular:
  In Progress
Status in linux-oem-6.11 source package in Oracular:
  Invalid

Bug description:
  [Impact]
  The mic-mute key has the opposite function to the LED behavior.

  [Fix]
  Support Mic Mute LED for ThinkCentre M70/M90 Gen6.

  [Test]
  Tested on hardware, micmute key mute the mic and LED is light on.

  [Where problems could occur]
  It may break the sound on Lenovo M70/M90 Gen 6.

  The patch is merged in 6.14-rc6, SRU for Noble/Oracular/OEM-6.11

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


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


[Kernel-packages] [Bug 2101811] Re: [SRU] Fix Lenovo M70/90 gen6 micmute key and led

2025-03-09 Thread AaronMa
** Description changed:

  [Impact]
  The mic-mute key has the opposite function to the LED behavior.
  
  [Fix]
  Support Mic Mute LED for ThinkCentre M70/M90 Gen6.
  
  [Test]
  Tested on hardware, micmute key mute the mic and LED is light on.
  
  [Where problems could occur]
  It may break the sound on Lenovo M70/M90 Gen 6.
  
- The patch is merged in 6.14-rc6, SRU for Noble/Oracular/OEM-6.11
+ The patches are merged in 6.14-rc6, SRU for Noble/Oracular/OEM-6.11

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

Title:
  [SRU] Fix Lenovo M70/90 gen6 micmute key and led

Status in HWE Next:
  In Progress
Status in linux package in Ubuntu:
  In Progress
Status in linux-oem-6.11 package in Ubuntu:
  In Progress
Status in linux source package in Noble:
  In Progress
Status in linux-oem-6.11 source package in Noble:
  In Progress
Status in linux source package in Oracular:
  In Progress
Status in linux-oem-6.11 source package in Oracular:
  Invalid

Bug description:
  [Impact]
  The mic-mute key has the opposite function to the LED behavior.

  [Fix]
  Support Mic Mute LED for ThinkCentre M70/M90 Gen6.

  [Test]
  Tested on hardware, micmute key mute the mic and LED is light on.

  [Where problems could occur]
  It may break the sound on Lenovo M70/M90 Gen 6.

  The patches are merged in 6.14-rc6, SRU for Noble/Oracular/OEM-6.11

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


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


[Kernel-packages] [Bug 2101813] Re: package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to install/upgrade: installed linux-headers-6.8.0-55-generic package post-installation script subprocess r

2025-03-09 Thread Daniel Letzeisen
You need to use nvidia-open version if you want to use nvidia-fs

nvidia-fs/2.24.2 autoinstall failed due to missing dependencies: nvidia

[4.508184] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_dma_unmap_pages from proprietary module nvidia.
[4.508186] nvidia_fs: Unknown symbol nvidia_p2p_dma_unmap_pages (err -2)
[4.508203] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_put_pages_persistent from proprietary module nvidia.
[4.508204] nvidia_fs: Unknown symbol nvidia_p2p_put_pages_persistent (err 
-2)
[4.508230] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_get_pages from proprietary module nvidia.
[4.508231] nvidia_fs: Unknown symbol nvidia_p2p_get_pages (err -2)
[4.508247] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_put_pages from proprietary module nvidia.
[4.508248] nvidia_fs: Unknown symbol nvidia_p2p_put_pages (err -2)
[4.508260] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_dma_map_pages from proprietary module nvidia.
[4.508261] nvidia_fs: Unknown symbol nvidia_p2p_dma_map_pages (err -2)
[4.508281] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_free_dma_mapping from proprietary module nvidia.
[4.508282] nvidia_fs: Unknown symbol nvidia_p2p_free_dma_mapping (err -2)
[4.508283] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_free_page_table from proprietary module nvidia.
[4.508284] nvidia_fs: Unknown symbol nvidia_p2p_free_page_table (err -2)
[4.508296] nvidia_fs: module using GPL-only symbols uses symbols 
nvidia_p2p_get_pages_persistent from proprietary module nvidia.

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

Title:
  package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to
  install/upgrade: installed linux-headers-6.8.0-55-generic package
  post-installation script subprocess returned error exit status 11

Status in linux package in Ubuntu:
  New

Bug description:
  Error popup shortly after startup.  Bug report attached.

  ProblemType: Package
  DistroRelease: Ubuntu 24.04
  Package: linux-headers-6.8.0-55-generic 6.8.0-55.57
  ProcVersionSignature: Ubuntu 6.8.0-55.57-generic 6.8.12
  Uname: Linux 6.8.0-55-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  Date: Fri Mar  7 10:27:52 2025
  ErrorMessage: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
  InstallationDate: Installed on 2023-11-15 (481 days ago)
  InstallationMedia: Ubuntu 23.10.1 "Mantic Minotaur" - Release amd64 
(20231016.1)
  MachineType: Micro-Star International Co., Ltd. MS-7D77
  ProcFB: 0 nvidia-drmdrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.8.0-55-generic 
root=UUID=fd56a7c9-28e1-4cbf-949c-db418639ac85 ro quiet splash vt.handoff=7
  Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: linux
  Title: package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to 
install/upgrade: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
  UpgradeStatus: Upgraded to noble on 2024-06-19 (264 days ago)
  dmi.bios.date: 12/16/2024
  dmi.bios.release: 5.35
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: 1.N0
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: PRO B650M-A WIFI (MS-7D77)
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvr1.N0:bd12/16/2024:br5.35:svnMicro-StarInternationalCo.,Ltd.:pnMS-7D77:pvr1.0:rvnMicro-StarInternationalCo.,Ltd.:rnPROB650M-AWIFI(MS-7D77):rvr1.0:cvnMicro-StarInternationalCo.,Ltd.:ct3:cvr1.0:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7D77
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: Micro-Star International Co., Ltd.

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


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


[Kernel-packages] [Bug 2100795] Re: Nvidia gpu is not recognized with linux oem kernel

2025-03-09 Thread AaronMa
Is nvidia-dkms-xxx installed?

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

Title:
  Nvidia gpu is not recognized with linux oem kernel

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  after installing linux oam kernel my gpu is not loaded anymore.
  This is not happening with the same version of linux generic kernel

  ❯ sudo nvidia-smi
  NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. 
Make sure that the latest NVIDIA driver is installed and running.

  the only log I can find in my system
  Mar 03 09:00:43 phoenix systemd[1]: Failed to start 
nvidia-fabricmanager.service - NVIDIA fabric manager service.

  and If I try to run this process manually
  ❯ sudo /usr/bin/nv-fabricmanager -c 
/usr/share/nvidia/nvswitch/fabricmanager.cfg
  failed to allocate handle (client) to NVIDIA GPU driver
  ❯ lsmod | grep nvidia
  # no output

  System Information
   Manufacturer: LENOVO
   Version: ThinkPad P16v Gen 1
   SKU Number: LENOVO_MT_21FE_BU_Think_FM_ThinkPad P16v Gen 1
   Family: ThinkPad P16v Gen 1
  ❯ lspci | grep -i nvidia
  01:00.0 3D controller: NVIDIA Corporation AD107GLM [RTX 2000 Ada Generation 
Laptop GPU] (rev a1)

  uname -a
  Linux phoenix 6.8.0-1020-oem #20-Ubuntu SMP PREEMPT_DYNAMIC Wed Jan 22 
08:17:35 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux

  ❯ cat /etc/os-release 
  PRETTY_NAME="Ubuntu 24.04.2 LTS"
  NAME="Ubuntu"
  VERSION_ID="24.04"
  --- 
  ProblemType: Bug
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: unknown
  CurrentDesktop: Hyprland
  CurrentDmesg:
   Error: command ['pkexec', 'dmesg'] failed with exit code 127: The value for 
the SHELL variable was not found in the /etc/shells file
   
   This incident has been reported.
  DistroRelease: Ubuntu 24.04
  InstallationDate: Installed on 2024-05-23 (289 days ago)
  InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Release amd64 (20240424)
  MachineType: LENOVO 21FECTO1WW
  Package: linux (not installed)
  ProcEnviron:
   LANG=en_US.UTF-8
   PATH=(custom, no user)
   SHELL=/home/fdesi/.nix-profile/bin/zsh
   TERM=xterm-256color
   XDG_RUNTIME_DIR=
  ProcFB: 0 amdgpudrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-6.8.0-1020-oem 
root=/dev/mapper/ubuntu--vg-ubuntu--lv ro rd.driver.blacklist=nouveau 
modprobe.blacklist=nouveau nvidia-drm.modeset=1 rcutree.rcu_idle_gp_delay=1 
quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 6.8.0-1020.20-oem 6.8.12
  RelatedPackageVersions:
   linux-restricted-modules-6.8.0-1020-oem N/A
   linux-backports-modules-6.8.0-1020-oem  N/A
   linux-firmware  20240318.git3b128b60-0ubuntu2.9
  Tags: noble wayland-session
  Uname: Linux 6.8.0-1020-oem x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip input kvm libvirt lpadmin lxd ollama plugdev sudo 
users
  _MarkForUpload: True
  acpidump:
   Error: command ['pkexec', '/usr/share/apport/dump_acpi_tables.py'] failed 
with exit code 127: The value for the SHELL variable was not found in the 
/etc/shells file
   
   This incident has been reported.
  dmi.bios.date: 10/29/2024
  dmi.bios.release: 1.57
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N3VET57W (1.57 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 21FECTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Defined
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.6
  dmi.modalias: 
dmi:bvnLENOVO:bvrN3VET57W(1.57):bd10/29/2024:br1.57:efr1.6:svnLENOVO:pn21FECTO1WW:pvrThinkPadP16vGen1:rvnLENOVO:rn21FECTO1WW:rvrNotDefined:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_21FE_BU_Think_FM_ThinkPadP16vGen1:
  dmi.product.family: ThinkPad P16v Gen 1
  dmi.product.name: 21FECTO1WW
  dmi.product.sku: LENOVO_MT_21FE_BU_Think_FM_ThinkPad P16v Gen 1
  dmi.product.version: ThinkPad P16v Gen 1
  dmi.sys.vendor: LENOVO
  mtime.conffile..etc.logrotate.d.apport: 2024-10-29T14:41:50.362659

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


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


[Kernel-packages] [Bug 2101148] Re: amdgpu reset causes GNOME crash

2025-03-09 Thread AaronMa
It could be related to amdgpu firmware:
Could you try to update it?

$ sudo rm -rf /lib/firmware/amgpu/*
$ git clone 
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
$ sudo cp amdgpu/* /lib/firmware/amdgpu/

then power off and try.

if you want to restore, please do:
$ sudo rm -rf /lib/firmware/amgpu/*
$ sudo apt install --reinstall linux-firmware

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

Title:
  amdgpu reset causes GNOME crash

Status in linux package in Ubuntu:
  New

Bug description:
  I have a periodic (once every 2 weeks) crash in my gnome shell.  This
  seems to be due to a amdgpu reset:

  
  2025-03-07T13:15:24.896047+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
ring gfx timeout, signaled seq=502993, emitted seq=502995
  2025-03-07T13:15:24.896077+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
Process information: process code pid 13504 thread code:cs0 pid 13517
  2025-03-07T13:15:24.896083+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
GPU reset begin!
  2025-03-07T13:15:25.222422+01:00 winters gsd-media-keys[6466]: Unable to get 
default sink
  2025-03-07T13:15:25.354032+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
Dumping IP State
  2025-03-07T13:15:25.354051+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
Dumping IP State Completed
  2025-03-07T13:15:25.354053+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
PCI CONFIG reset
  2025-03-07T13:15:25.361042+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
GPU reset succeeded, trying to resume
  2025-03-07T13:15:25.361056+01:00 winters kernel: [drm] PCIE gen 3 link speeds 
already enabled
  2025-03-07T13:15:25.362046+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
PCIE GART of 1024M enabled (table at 0x00F400C0).
  2025-03-07T13:15:25.362060+01:00 winters kernel: [drm] VRAM is lost due to 
GPU reset!
  2025-03-07T13:15:25.540661+01:00 winters gsd-media-keys[6466]: Sync_devices: 
Failed to match stream id: 23, description: 'HDMI / DisplayPort', origin: 
'Oland/Hainan/Cape Verde/Pitcairn HDMI Audio [Radeon HD 7000 Series] Digital 
Stereo (HDMI)'
  2025-03-07T13:15:25.569485+01:00 winters gsd-media-keys[6466]: 
gvc_mixer_ui_device_get_id: assertion 'GVC_IS_MIXER_UI_DEVICE (device)' failed
  2025-03-07T13:15:25.941047+01:00 winters kernel: [drm] UVD initialized 
successfully.
  2025-03-07T13:15:26.234041+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
recover vram bo from shadow start
  2025-03-07T13:15:26.241995+01:00 winters kernel: amdgpu :03:00.0: amdgpu: 
recover vram bo from shadow done
  2025-03-07T13:15:26.242906+01:00 winters gnome-shell[6668]: amdgpu: The CS 
has cancelled because the context is lost. This context is innocent.
  2025-03-07T13:15:26.243108+01:00 winters gnome-shell[6668]: (EE)  
   
  2025-03-07T13:15:26.243162+01:00 winters gnome-shell[6668]: (EE) Backtrace:   
   
  2025-03-07T13:15:26.250292+01:00 winters gnome-shell[6668]: (EE) 0: 
/usr/bin/Xwayland (0x5ced4e94e000+0x182bc2) [0x5ced4ead0bc2]
  2025-03-07T13:15:26.250389+01:00 winters gnome-shell[6668]: (EE) 1: 
/usr/bin/Xwayland (0x5ced4e94e000+0x185bb5) [0x5ced4ead3bb5]
  2025-03-07T13:15:26.250530+01:00 winters gnome-shell[6668]: (EE) 2: 
/lib/x86_64-linux-gnu/libc.so.6 (0x7f79c640+0x45250) [0x7f79c6445250]
  2025-03-07T13:15:26.250587+01:00 winters gnome-shell[6668]: (EE) 3: 
/lib/x86_64-linux-gnu/libc.so.6 (pthread_kill+0x11c) [0x7f79c64a3f1c]
  2025-03-07T13:15:26.250640+01:00 winters gnome-shell[6668]: (EE) 4: 
/lib/x86_64-linux-gnu/libc.so.6 (gsignal+0x1e) [0x7f79c644519e]
  2025-03-07T13:15:26.250692+01:00 winters gnome-shell[6668]: (EE) 5: 
/lib/x86_64-linux-gnu/libc.so.6 (abort+0xdf) [0x7f79c6428902]
  2025-03-07T13:15:26.250742+01:00 winters gnome-shell[6668]: (EE) 6: 
/lib/x86_64-linux-gnu/libgallium-24.2.8-1ubuntu1~24.10.1.so 
(0x7f79c3a0+0xa329c0) [0x7f79c44329c0]
  2025-03-07T13:15:26.250795+01:00 winters gnome-shell[6668]: (EE) 7: 
/lib/x86_64-linux-gnu/libgallium-24.2.8-1ubuntu1~24.10.1.so 
(0x7f79c3a0+0xa35e30) [0x7f79c4435e30]
  2025-03-07T13:15:26.250846+01:00 winters gnome-shell[6668]: (EE) 8: 
/lib/x86_64-linux-gnu/libgallium-24.2.8-1ubuntu1~24.10.1.so 
(0x7f79c3a0+0x147e81) [0x7f79c3b47e81]
  2025-03-07T13:15:26.250907+01:00 winters gnome-shell[6668]: (EE) 9: 
/lib/x86_64-linux-gnu/libgallium-24.2.8-1ubuntu1~24.10.1.so 
(0x7f79c3a0+0x16b48c) [0x7f79c3b6b48c]
  2025-03-07T13:15:26.251012+01:00 winters gnome-shell[6668]: (EE) 10: 
/lib/x86_64-linux-gnu/libc.so.6 (0x7f79c640+0xa1e2e) [0x7f79c64a1e2e]
  2025-03-07T13:15:26.251108+01:00 winters gnome-shell[6668]: (EE) 11: 
/lib/x86_64-linux-gnu/libc.so.6 (0x7f79c640+0x133a4c) [0x7f79c6533a4c]
  2025-03-07T13:15:26.251164+01:00 winters gnome-shell[6668]: (EE)  
   
  2025-03-07T13:15:26.251206+01:00 winters gnome-shell[6668]: (EE)  
   
  20

[Kernel-packages] [Bug 2101780] [NEW] Ubuntu 20.04 problem with intel UHD graphic

2025-03-09 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

i check drivers, XORG and i915, thats all already installed, but when i check 
render device, it shows llvm renderer, i didnt see my display and port, i didnt 
see my iGPU info, and i'm also cant tilt my screen to portrait mode. i have 
software that works only on ubuntu 20.04 LTS, and didnt work at 22 or higher, 
but i presume that drivers in 5.15 kernel does't support intel UHD iGPU's
i tried to manually install intel drivers, and thats gives some result, but now 
my old system have issues with UI, and i just try to connect intel celeron N95 
UHD graphics with my old software. Now i have no ideas

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: xorg 1:7.7+19ubuntu14
Uname: Linux 5.15.178-0515178-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.27
Architecture: amd64
BootLog: Error: [Errno 13] Отказано в доступе: '/var/log/boot.log'
CasperMD5CheckResult: skip
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
CurrentDmesg: Error: command ['dmesg'] failed with exit code 1: dmesg: read 
kernel buffer failed: Operation not permitted
Date: Sun Mar  9 18:39:27 2025
DistUpgraded: 2025-03-09 17:57:33,979 DEBUG /openCache(), new cache size 102993
DistroCodename: focal
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation Device [8086:46d2] (prog-if 00 [VGA controller])
   Subsystem: Intel Corporation Device [8086:7270]
InstallationDate: Installed on 2025-03-06 (2 days ago)
InstallationMedia: Ubuntu 20.04.6 LTS "Focal Fossa" - Release amd64 (20230316)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 8087:0a2a Intel Corp. 
 Bus 001 Device 003: ID 1a86:e5e3 QinHeng Electronics USB2IIC_CTP_CONTROL
 Bus 001 Device 002: ID 258a:1006 Gaming KB  Gaming KB 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: AZW MINI S
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.178-0515178-generic 
root=UUID=d5657635-60a0-43b3-b480-9241fb232729 ro quiet splash vt.handoff=7
SourcePackage: xorg
UpgradeStatus: Upgraded to focal on 2025-03-09 (0 days ago)
dmi.bios.date: 02/06/2023
dmi.bios.release: 5.26
dmi.bios.vendor: American Megatrends International, LLC.
dmi.bios.version: ADLNV104
dmi.board.asset.tag: Default string
dmi.board.name: MINI S
dmi.board.vendor: AZW
dmi.board.version: 10
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.:bvrADLNV104:bd02/06/2023:br5.26:svnAZW:pnMINIS:pvrDefaultstring:rvnAZW:rnMINIS:rvr10:cvnDefaultstring:ct3:cvrDefaultstring:sku01:
dmi.product.family: Default string
dmi.product.name: MINI S
dmi.product.sku: 01
dmi.product.version: Default string
dmi.sys.vendor: AZW
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.111.1+3089
version.libgl1-mesa-dri: libgl1-mesa-dri 22.2.0.20220625.1+3091
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.20.13-1ubuntu1~20.04.19
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Fix Released


** Tags: amd64 apport-bug focal third-party-packages ubuntu
-- 
Ubuntu 20.04 problem with intel UHD graphic
https://bugs.launchpad.net/bugs/2101780
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 2101813] [NEW] package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to install/upgrade: installed linux-headers-6.8.0-55-generic package post-installation script subprocess

2025-03-09 Thread Phil McMillan
Public bug reported:

Error popup shortly after startup.  Bug report attached.

ProblemType: Package
DistroRelease: Ubuntu 24.04
Package: linux-headers-6.8.0-55-generic 6.8.0-55.57
ProcVersionSignature: Ubuntu 6.8.0-55.57-generic 6.8.12
Uname: Linux 6.8.0-55-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.28.1-0ubuntu3.3
Architecture: amd64
CRDA: N/A
CasperMD5CheckResult: pass
Date: Fri Mar  7 10:27:52 2025
ErrorMessage: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
InstallationDate: Installed on 2023-11-15 (481 days ago)
InstallationMedia: Ubuntu 23.10.1 "Mantic Minotaur" - Release amd64 (20231016.1)
MachineType: Micro-Star International Co., Ltd. MS-7D77
ProcFB: 0 nvidia-drmdrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.8.0-55-generic 
root=UUID=fd56a7c9-28e1-4cbf-949c-db418639ac85 ro quiet splash vt.handoff=7
Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions: grub-pc N/A
SourcePackage: linux
Title: package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to 
install/upgrade: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
UpgradeStatus: Upgraded to noble on 2024-06-19 (264 days ago)
dmi.bios.date: 12/16/2024
dmi.bios.release: 5.35
dmi.bios.vendor: American Megatrends International, LLC.
dmi.bios.version: 1.N0
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: PRO B650M-A WIFI (MS-7D77)
dmi.board.vendor: Micro-Star International Co., Ltd.
dmi.board.version: 1.0
dmi.chassis.asset.tag: To be filled by O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: Micro-Star International Co., Ltd.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvr1.N0:bd12/16/2024:br5.35:svnMicro-StarInternationalCo.,Ltd.:pnMS-7D77:pvr1.0:rvnMicro-StarInternationalCo.,Ltd.:rnPROB650M-AWIFI(MS-7D77):rvr1.0:cvnMicro-StarInternationalCo.,Ltd.:ct3:cvr1.0:skuTobefilledbyO.E.M.:
dmi.product.family: To be filled by O.E.M.
dmi.product.name: MS-7D77
dmi.product.sku: To be filled by O.E.M.
dmi.product.version: 1.0
dmi.sys.vendor: Micro-Star International Co., Ltd.

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


** Tags: amd64 apport-package noble

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

Title:
  package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to
  install/upgrade: installed linux-headers-6.8.0-55-generic package
  post-installation script subprocess returned error exit status 11

Status in linux package in Ubuntu:
  New

Bug description:
  Error popup shortly after startup.  Bug report attached.

  ProblemType: Package
  DistroRelease: Ubuntu 24.04
  Package: linux-headers-6.8.0-55-generic 6.8.0-55.57
  ProcVersionSignature: Ubuntu 6.8.0-55.57-generic 6.8.12
  Uname: Linux 6.8.0-55-generic x86_64
  NonfreeKernelModules: nvidia_modeset nvidia
  ApportVersion: 2.28.1-0ubuntu3.3
  Architecture: amd64
  CRDA: N/A
  CasperMD5CheckResult: pass
  Date: Fri Mar  7 10:27:52 2025
  ErrorMessage: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
  InstallationDate: Installed on 2023-11-15 (481 days ago)
  InstallationMedia: Ubuntu 23.10.1 "Mantic Minotaur" - Release amd64 
(20231016.1)
  MachineType: Micro-Star International Co., Ltd. MS-7D77
  ProcFB: 0 nvidia-drmdrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.8.0-55-generic 
root=UUID=fd56a7c9-28e1-4cbf-949c-db418639ac85 ro quiet splash vt.handoff=7
  Python3Details: /usr/bin/python3.12, Python 3.12.3, python3-minimal, 
3.12.3-0ubuntu2
  PythonDetails: N/A
  RelatedPackageVersions: grub-pc N/A
  SourcePackage: linux
  Title: package linux-headers-6.8.0-55-generic 6.8.0-55.57 failed to 
install/upgrade: installed linux-headers-6.8.0-55-generic package 
post-installation script subprocess returned error exit status 11
  UpgradeStatus: Upgraded to noble on 2024-06-19 (264 days ago)
  dmi.bios.date: 12/16/2024
  dmi.bios.release: 5.35
  dmi.bios.vendor: American Megatrends International, LLC.
  dmi.bios.version: 1.N0
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: PRO B650M-A WIFI (MS-7D77)
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: To be filled by O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Micro-Star International Co., Ltd.
  dmi.chassis.version: 1.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInternational,LLC.:bvr1.N0:bd12/16/2024:br5.35:svnMicro-StarInternationalCo.,Ltd.:pnMS-7D77:pvr1.0:rvnMicro-StarInternationalCo.,Ltd.:rnPROB650M-AWIFI(MS-7D77):rvr1.0:cvnMicro-StarInternationalCo.,Ltd.:ct3:cvr1.0:skuTobefilledbyO.E.M.:
  dmi.product.family: To be filled by O.E.M.
  dmi.product.name: MS-7D77
  dmi.pr