[Kernel-packages] [Bug 1946433] Re: Can only reach PC3 when ethernet is plugged r8169

2023-05-11 Thread Kai-Heng Feng
** Changed in: linux (Ubuntu Kinetic)
 Assignee: Kai-Heng Feng (kaihengfeng) => niba (koba)

** Changed in: linux (Ubuntu Kinetic)
 Assignee: niba (koba) => koba (kobako)

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

Title:
  Can only reach PC3 when ethernet is plugged r8169

Status in HWE Next:
  Confirmed
Status in linux package in Ubuntu:
  In Progress
Status in linux-oem-5.13 package in Ubuntu:
  Invalid
Status in linux-oem-5.14 package in Ubuntu:
  Invalid
Status in linux-oem-5.17 package in Ubuntu:
  Invalid
Status in linux-oem-6.0 package in Ubuntu:
  Invalid
Status in linux-oem-6.1 package in Ubuntu:
  Invalid
Status in linux source package in Focal:
  Invalid
Status in linux-oem-5.13 source package in Focal:
  Fix Released
Status in linux-oem-5.14 source package in Focal:
  Fix Released
Status in linux source package in Impish:
  Won't Fix
Status in linux-oem-5.13 source package in Impish:
  Invalid
Status in linux-oem-5.14 source package in Impish:
  Invalid
Status in linux source package in Jammy:
  Fix Released
Status in linux-oem-5.13 source package in Jammy:
  Invalid
Status in linux-oem-5.14 source package in Jammy:
  Invalid
Status in linux-oem-5.17 source package in Jammy:
  Fix Released
Status in linux-oem-6.0 source package in Jammy:
  Fix Released
Status in linux-oem-6.1 source package in Jammy:
  Fix Released
Status in linux source package in Kinetic:
  Triaged
Status in linux-oem-5.13 source package in Kinetic:
  Invalid
Status in linux-oem-5.14 source package in Kinetic:
  Invalid
Status in linux-oem-5.17 source package in Kinetic:
  Invalid
Status in linux-oem-6.0 source package in Kinetic:
  Invalid
Status in linux-oem-6.1 source package in Kinetic:
  Invalid
Status in linux source package in Lunar:
  In Progress
Status in linux-oem-5.13 source package in Lunar:
  Invalid
Status in linux-oem-5.14 source package in Lunar:
  Invalid
Status in linux-oem-5.17 source package in Lunar:
  Invalid
Status in linux-oem-6.0 source package in Lunar:
  Invalid
Status in linux-oem-6.1 source package in Lunar:
  Invalid

Bug description:
  [Impact]
  System only can reach PC3, and it affects power consumption alot.

  [Fix]
  Kaiheng implemented a dynamic ASPM for r8169, it not only fixes the PC state 
issue, but also fixes network speed issue.
  V7:
  
https://patchwork.kernel.org/project/netdevbpf/patch/20211016075442.650311-5-kai.heng.f...@canonical.com/
  V6:
  
https://patchwork.ozlabs.org/project/linux-pci/cover/20211007161552.272771-1-kai.heng.f...@canonical.com/

  
  [Test]
  Verified on 2 different systems which has PC state issue and has network 
speed issue, these patches fix both issues.

  [Where problems could occur]
  It toggles ASPM on and off depends on the network traffic during runtime, I 
don't think it'll lead to any regressions. Some potential issues have been 
addressed during the patch submitting. It's v6 now and accepted by upstream.

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


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


[Kernel-packages] [Bug 1858615] Re: dmidecode triggers system reboot on Inforce 6640

2023-05-11 Thread James Falcon
Tracked in Github Issues as https://github.com/canonical/cloud-
init/issues/3525

** Bug watch added: github.com/canonical/cloud-init/issues #3525
   https://github.com/canonical/cloud-init/issues/3525

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

Title:
  dmidecode triggers system reboot on Inforce 6640

Status in cloud-init:
  Invalid
Status in dmidecode package in Ubuntu:
  Fix Released
Status in dmidecode source package in Xenial:
  Fix Released
Status in dmidecode source package in Bionic:
  Fix Released
Status in dmidecode source package in Eoan:
  Fix Released
Status in dmidecode source package in Focal:
  Fix Released
Status in dmidecode package in Debian:
  Fix Released

Bug description:
  [Impact]
  Running 'sudo dmidecode' on non-UEFI ARM systems can cause them to 
crash/reboot. cloud-init apparently runs dmidecode as root, so it breaks any 
cloud-init based installation.

  [Test Case]
  sudo dmidecode

  [Fix]
  Upstream has the following fix:

  commit e12ec26e19e02281d3e7258c3aabb88a5cf5ec1d
  Author: Jean Delvare 
  Date: Mon Aug 26 14:20:15 2019 +0200

  dmidecode: Only scan /dev/mem for entry point on x86

  [Regression Risk]
  In Ubuntu, dmidecode only builds on amd64, arm64, armhf & i386.
  The fix is to disable code on !x86, so the regression risk is restricted to 
ARM platforms, where we know /dev/mem trolling is bad news.

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1858615/+subscriptions


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


[Kernel-packages] [Bug 2019264] [NEW] net/sched: act_ct: offload UDP NEW connections

2023-05-11 Thread Tony Duan
Public bug reported:

* Explain the bug(s)
 
UDP single sided connections aren't offloaded.
 
* brief explanation of fixes
 
Add support for to offload single sided UDP connections by offloading only one
side, and offloading the second side when/if it comes.
 
* How to test
 
Create OVS bridge with 2 devices mlx5 rep devices.
Enable HW offload and configure regular connection tracking OpenFlow rules:
 
e.g:
ovs-ofctl del-flows br-ovs
ovs-ofctl add-flow br-ovs arp,actions=normal
ovs-ofctl add-flow br-ovs "table=0, ip,ct_state=-trk actions=ct(table=1)"
ovs-ofctl add-flow br-ovs "table=1, ip,ct_state=+trk+new 
actions=ct(commit),normal"
ovs-ofctl add-flow br-ovs "table=1, ip,ct_state=+trk+est, actions=normal"
 
Run a UDP single sided connection, e.g iperf without a server:
on mlx5 VF2 iperf -t 1 -c -u -b 10pps
 
Optional: In different terminal, while traffic is running, check for offload:
tcpdump -nnepi  udp
and see no iperf udp packets.
 
Dump conntrack with relevant ip:
cat /proc/net/nf_conntrack | grep -i  | grep "\[UNREPLIED\]" | grep -q 
"\[OFFLOAD\]"
 
If tuple appears, tuple was offloaded, yet unreplied.
 
* What it could break.
 
Single sided udp connections aren't offloaded.

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

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

Title:
   net/sched: act_ct: offload UDP NEW connections

Status in linux-bluefield package in Ubuntu:
  New

Bug description:
  * Explain the bug(s)
   
  UDP single sided connections aren't offloaded.
   
  * brief explanation of fixes
   
  Add support for to offload single sided UDP connections by offloading only one
  side, and offloading the second side when/if it comes.
   
  * How to test
   
  Create OVS bridge with 2 devices mlx5 rep devices.
  Enable HW offload and configure regular connection tracking OpenFlow rules:
   
  e.g:
  ovs-ofctl del-flows br-ovs
  ovs-ofctl add-flow br-ovs arp,actions=normal
  ovs-ofctl add-flow br-ovs "table=0, ip,ct_state=-trk actions=ct(table=1)"
  ovs-ofctl add-flow br-ovs "table=1, ip,ct_state=+trk+new 
actions=ct(commit),normal"
  ovs-ofctl add-flow br-ovs "table=1, ip,ct_state=+trk+est, actions=normal"
   
  Run a UDP single sided connection, e.g iperf without a server:
  on mlx5 VF2 iperf -t 1 -c -u -b 10pps
   
  Optional: In different terminal, while traffic is running, check for offload:
  tcpdump -nnepi  udp
  and see no iperf udp packets.
   
  Dump conntrack with relevant ip:
  cat /proc/net/nf_conntrack | grep -i  | grep "\[UNREPLIED\]" | grep -q 
"\[OFFLOAD\]"
   
  If tuple appears, tuple was offloaded, yet unreplied.
   
  * What it could break.
   
  Single sided udp connections aren't offloaded.

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 2019261] CRDA.txt

2023-05-11 Thread Steve Langasek
apport information

** Attachment added: "CRDA.txt"
   https://bugs.launchpad.net/bugs/2019261/+attachment/5672569/+files/CRDA.txt

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


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

2023-05-11 Thread Steve Langasek
apport information

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 2019261] AudioDevicesInUse.txt

2023-05-11 Thread Steve Langasek
apport information

** Attachment added: "AudioDevicesInUse.txt"
   
https://bugs.launchpad.net/bugs/2019261/+attachment/5672568/+files/AudioDevicesInUse.txt

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
  dmi.product.family: ThinkPad X1 Extreme 2nd
  dmi.product.name: 20QVCTO1WW
  dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
  dmi.product.version: ThinkPad X1 Extreme 2nd
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 2019261] Re: scary 'Problem blacklisting hash' messages at boot

2023-05-11 Thread Steve Langasek
apport information

** Tags added: apport-collected lunar

** Description changed:

  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:
  
  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)
  
  Sounds like a problem!
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.26.1-0ubuntu2
+ Architecture: amd64
+ CasperMD5CheckResult: unknown
+ CurrentDesktop: ubuntu:GNOME
+ DistroRelease: Ubuntu 23.04
+ InstallationDate: Installed on 2019-12-23 (1235 days ago)
+ InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
+ MachineType: LENOVO 20QVCTO1WW
+ NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
+ Package: linux (not installed)
+ ProcFB:
+  0 nouveaudrmfb
+  1 i915drmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
+ ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
+ RelatedPackageVersions:
+  linux-restricted-modules-6.2.0-20-generic N/A
+  linux-backports-modules-6.2.0-20-generic  N/A
+  linux-firmware20230323.gitbcdcfbcf-0ubuntu1
+ Tags:  lunar
+ Uname: Linux 6.2.0-20-generic x86_64
+ UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
+ UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
+ _MarkForUpload: True
+ dmi.bios.date: 04/28/2021
+ dmi.bios.release: 1.39
+ dmi.bios.vendor: LENOVO
+ dmi.bios.version: N2OET52W (1.39 )
+ dmi.board.asset.tag: Not Available
+ dmi.board.name: 20QVCTO1WW
+ dmi.board.vendor: LENOVO
+ dmi.board.version: SDK0R32862 WIN
+ dmi.chassis.asset.tag: No Asset Information
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: LENOVO
+ dmi.chassis.version: None
+ dmi.ec.firmware.release: 1.22
+ dmi.modalias: 
dmi:bvnLENOVO:bvrN2OET52W(1.39):bd04/28/2021:br1.39:efr1.22:svnLENOVO:pn20QVCTO1WW:pvrThinkPadX1Extreme2nd:rvnLENOVO:rn20QVCTO1WW:rvrSDK0R32862WIN:cvnLENOVO:ct10:cvrNone:skuLENOVO_MT_20QV_BU_Think_FM_ThinkPadX1Extreme2nd:
+ dmi.product.family: ThinkPad X1 Extreme 2nd
+ dmi.product.name: 20QVCTO1WW
+ dmi.product.sku: LENOVO_MT_20QV_BU_Think_FM_ThinkPad X1 Extreme 2nd
+ dmi.product.version: ThinkPad X1 Extreme 2nd
+ dmi.sys.vendor: LENOVO

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 23.04
  InstallationDate: Installed on 2019-12-23 (1235 days ago)
  InstallationMedia: Ubuntu 19.10 "Eoan Ermine" - Release amd64 (20191017)
  MachineType: LENOVO 20QVCTO1WW
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Package: linux (not installed)
  ProcFB:
   0 nouveaudrmfb
   1 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/BOOT/ubuntu_di672m@/vmlinuz-6.2.0-20-generic 
root=ZFS=rpool/ROOT/ubuntu_di672m ro quiet splash intel_iommu=off vt.handoff=1
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  Tags:  lunar
  Uname: Linux 6.2.0-20-generic x86_64
  UpgradeStatus: Upgraded to lunar on 2023-05-11 (0 days ago)
  UserGroups: adm cdrom dip libvirt lpadmin lxd plugdev sambashare sbuild src 
sudo
  _MarkForUpload: True
  dmi.bios.date: 04/28/2021
  dmi.bios.release: 1.39
  dmi.bios.vendor: LENOVO
  dmi.bios.version: N2OET52W (1.39 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 20QVCTO1WW
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32862 WIN
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: None
  dmi.ec.firmware.release: 1.22
  dmi.modalias: 

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

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

apport-collect 2019261

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

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

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

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!

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


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


[Kernel-packages] [Bug 2019261] [NEW] scary 'Problem blacklisting hash' messages at boot

2023-05-11 Thread Steve Langasek
Public bug reported:

linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
from dmesg) are displayed on my console at boot:

[1.134865] blacklist: Problem blacklisting hash (-13)
[1.134925] blacklist: Problem blacklisting hash (-13)
[1.134961] blacklist: Problem blacklisting hash (-13)
[1.134983] blacklist: Problem blacklisting hash (-13)

Sounds like a problem!

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

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

Title:
  scary 'Problem blacklisting hash' messages at boot

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  linux-generic 6.2.0.20.20 on lunar, the following messages (retrieved
  from dmesg) are displayed on my console at boot:

  [1.134865] blacklist: Problem blacklisting hash (-13)
  [1.134925] blacklist: Problem blacklisting hash (-13)
  [1.134961] blacklist: Problem blacklisting hash (-13)
  [1.134983] blacklist: Problem blacklisting hash (-13)

  Sounds like a problem!

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


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


[Kernel-packages] [Bug 2013219] Re: in this verion of linux the sound output is missing and showing dummy output even after trying everthing, reinstalling packages and other tools. When I checked for

2023-05-11 Thread Claudio Denega
not working for me in .41 either on Dell XPS 9320

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

Title:
  in this verion of linux  the sound output is missing and showing dummy
  output even after trying everthing, reinstalling packages and other
  tools. When I checked for the same issue in the .32 version, it was
  working fine as expected but not in this version of linux kernel

Status in linux-signed-hwe-5.19 package in Ubuntu:
  Confirmed

Bug description:
  audio and sound bug: in version .38
  but working fine in .32

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.19.0-38-generic 5.19.0-38.39~22.04.1
  ProcVersionSignature: Ubuntu 5.19.0-38.39~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-38-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Mar 29 16:05:55 2023
  InstallationDate: Installed on 2023-03-28 (0 days ago)
  InstallationMedia: Ubuntu 22.04.2 LTS "Jammy Jellyfish" - Release amd64 
(20230223)
  SourcePackage: linux-signed-hwe-5.19
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2019240] Re: Pull-request to address a number of enablement issues for Orin platforms

2023-05-11 Thread Ian May
Changing Package to linux-nvidia-tegra

** Package changed: linux-nvidia (Ubuntu) => linux-nvidia-tegra (Ubuntu)

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

Title:
  Pull-request to address a number of enablement issues for Orin
  platforms

Status in linux-nvidia-tegra package in Ubuntu:
  New

Bug description:
  [impact]
  This patch set addresses a wide variety of bugs and missing features for 
NVIDIA Orin platforms.

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


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


[Kernel-packages] [Bug 787738]

2023-05-11 Thread brmaleo
Having similar issue as
https://bugzilla.kernel.org/show_bug.cgi?id=33292#c34:

It's a T560. The TrackPoint is detected as "PS/2 Generic Mouse". BIOS
Enable/Disable have no effect on the TrackPoint.

I am able to use it for 10-20 seconds, then it makes random movements
and clicks, and then freezes. After that cursor can still be moved by
touchpad, but not the trackpoint.

Tested with:
- Mint Cinnamon, X11, kernel 6.4rc1
- Fedora 38, Wayland, kernel 6.2

In Windows the same TrackPoint seems to be OK, at least on my USB-
bootable Windows.

It is important to clarify that this is a replacement keyboard purchased
from Aliexpress. The original keyboard had no such problems.

If even BIOS cannot disable this "TrackPoint", maybe the problem is not
actually about the original trackpoints, but some non-genuine devices
sold as replacements.

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

Title:
  [Thinkpad X220/E220s/E420s] trackpoint/trackpoint displays odd
  behaviour

Status in Linux:
  Confirmed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Natty:
  Invalid
Status in linux source package in Oneiric:
  Invalid
Status in Fedora:
  New

Bug description:
  Using the touchpad does not result in expected behavior. The touchpad
  has three "mouse" buttons on top, and none of these buttons currently
  function. Using xev does not show any output from these buttons. The
  touchpad itself works fine. There are two bottom buttons integrated
  with the touchpad, which do not work consistantly. The left button
  will sometimes act like a left-click and sometime like a right click,
  making it hard to move applications on the screen. The right button
  acts like a left click and only sometimes bring up menus. Trying to
  change from a left hand to a right hand mouse in mouse options does
  not change the behavior.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.04
  Package: linux-image-2.6.38-8-generic 2.6.38-8.42
  ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
  Uname: Linux 2.6.38-8-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.23.
  Architecture: i386
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: PCH [HDA Intel PCH], device 0: CONEXANT Analog [CONEXANT Analog]
     Subdevices: 1/1
     Subdevice #0: subdevice #0
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  u  1235 F pulseaudio
  CRDA: Error: [Errno 2] No such file or directory
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xd252 irq 44'
     Mixer name : 'Intel CougarPoint HDMI'
     Components : 'HDA:14f1506e,17aa21da,0010 
HDA:80862805,80860101,0010'
     Controls  : 20
     Simple ctrls  : 8
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
unknown'
     Mixer name : 'ThinkPad EC (unknown)'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  Date: Tue May 24 14:44:59 2011
  HibernationDevice: RESUME=UUID=dd9d30b2-4950-42af-87e2-b304fc01e83d
  InstallationMedia: Ubuntu 11.04 "Natty Narwhal" - Release i386 (20110427.1)
  MachineType: LENOVO 428623U
  ProcEnviron:
   LANGUAGE=en_US:en
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=4985f74f-9e44-411f-8d41-73f9f68c057d ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-2.6.38-8-generic N/A
   linux-backports-modules-2.6.38-8-generic  N/A
   linux-firmware1.52
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/25/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET28WW (1.00 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 428623U
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET28WW(1.00):bd01/25/2011:svnLENOVO:pn428623U:pvrThinkPadX220:rvnLENOVO:rn428623U:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 428623U
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 2009676] Re: Add support for Raptor Lake S CPUs

2023-05-11 Thread Andreas Hasenack
So the focal upload adds support for:

- raptor lake: 0xb7, 0xba
--- thermald-1.9.1.orig/src/thd_engine.cpp
+++ thermald-1.9.1/src/thd_engine.cpp
@@ -696,6 +696,8 @@ static supported_ids_t id_table[] = {
   { 6, 0x9c }, // Jasper Lake
   { 6, 0x97 }, // Alderlake
   { 6, 0x9a }, // Alderlake
+  { 6, 0xb7 }, // Raptorlake
+  { 6, 0xba }, // Raptorlake
   { 0, 0 } // Last Invalid entry
 };

- raptor lake S on top of the above: 0xbf
--- thermald-1.9.1.orig/src/thd_engine.cpp
+++ thermald-1.9.1/src/thd_engine.cpp
@@ -698,6 +698,7 @@ static supported_ids_t id_table[] = {
{ 6, 0x9a }, // Alderlake
{ 6, 0xb7 }, // Raptorlake
{ 6, 0xba }, // Raptorlake
+   { 6, 0xbf }, // Raptorlake S
{ 0, 0 } // Last Invalid entry
 };

This is contradicting comment #9, but I tend to agree with Colin in
comment #5.

The question that remains is the test plan. Is it possible to test this
thermald support in focal for the two CPU types that are being added
here? @koba, would you be able to test focal as well, given the above?

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

Title:
  Add support for Raptor Lake S CPUs

Status in OEM Priority Project:
  Fix Released
Status in thermald package in Ubuntu:
  Fix Released
Status in thermald source package in Focal:
  In Progress
Status in thermald source package in Jammy:
  Fix Released

Bug description:
  [Impact]

   * Support thermald on Raptor Lake S CPU.

  [Test Plan]

   * Use a machine with a Raptor Lake S cpu.

   * systemctl status thermald

   * Status of thermald should be `running`

  [Where problems could occur]

   * This change is to add support for Raptor Lake S in thermald, which
  won't impact other hardware.

  [Other Info]

  
https://github.com/intel/thermal_daemon/commit/e03493dc1e972374c1686492655250f8f48a15ba

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/2009676/+subscriptions


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


[Kernel-packages] [Bug 2009676] Re: Add support for Raptor Lake S CPUs

2023-05-11 Thread Andreas Hasenack
There is a focal upload in unapproved, adding a "in progress" task to
the bug.

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

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

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

Title:
  Add support for Raptor Lake S CPUs

Status in OEM Priority Project:
  Fix Released
Status in thermald package in Ubuntu:
  Fix Released
Status in thermald source package in Focal:
  In Progress
Status in thermald source package in Jammy:
  Fix Released

Bug description:
  [Impact]

   * Support thermald on Raptor Lake S CPU.

  [Test Plan]

   * Use a machine with a Raptor Lake S cpu.

   * systemctl status thermald

   * Status of thermald should be `running`

  [Where problems could occur]

   * This change is to add support for Raptor Lake S in thermald, which
  won't impact other hardware.

  [Other Info]

  
https://github.com/intel/thermal_daemon/commit/e03493dc1e972374c1686492655250f8f48a15ba

To manage notifications about this bug go to:
https://bugs.launchpad.net/oem-priority/+bug/2009676/+subscriptions


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


[Kernel-packages] [Bug 1968040] Re: [i915] Blanked screen doesn't wake up after locking [drmModeAtomicCommit: Argument invalide] [drmModeAtomicCommit: Invalid argument]

2023-05-11 Thread Tolga Gonul
I'm reporting this same issue from another distro (Arch in my case).
I've added the journal file with the drm.debug parameter. Hope it helps.

A summary of my issues just in case:
- Lenovo T480 Laptop
- Using in combination with Lenovo USB-C thunderbolt 3 dock to drive 2 screens 
(That are connected through HDMI if that matters)
- When logged into a GNOME Wayland session and waking up from a suspend the 
screens don't come back on.
- My logitech MX Master mouse doesn't respond anymore
- My Bluetooth keyboard doesn't respond anymore
- Unplugging from Thunderbolt dock makes the system run fine again when it's 
just the Laptop (bluetooth keyboard and mouse still dont work tho)
- Replugging to dock causes same issues as I had after waking from suspend.

** Attachment added: "Output of journalctl -b0 after laptop woke up from 
suspend"
   
https://bugs.launchpad.net/mutter/+bug/1968040/+attachment/5672555/+files/journal.txt

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

Title:
  [i915] Blanked screen doesn't wake up after locking
  [drmModeAtomicCommit: Argument invalide] [drmModeAtomicCommit: Invalid
  argument]

Status in GNOME Shell:
  New
Status in Mutter:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  Confirmed
Status in mutter package in Ubuntu:
  Confirmed

Bug description:
  [ Workaround ]

  Add to /etc/environment (in Ubuntu 22.04):

    MUTTER_DEBUG_ENABLE_ATOMIC_KMS=0

  or in Ubuntu 22.10 and later:

    MUTTER_DEBUG_FORCE_KMS_MODE=simple

  and then reboot.

  [ Upstream bugs ]

  https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/5098
  https://gitlab.gnome.org/GNOME/mutter/-/issues/2268
  https://gitlab.gnome.org/GNOME/mutter/-/issues/2749

  [ Original report ]

  (initially reported as a comment on bug #1965085, and split into a
  separate bug report)

  After I lock my screen and let it blank, moving the mouse or pressing
  any key on the keyboard won't wake it up. The only reliable workaround
  I've found is to press Ctrl+Alt+F1.

  That's on a fully up-to-date jammy, my hardware is an Intel NUC with a
  single Samsung monitor connected with a standard HDMI cable. This is a
  regression that started happening yesterday (2022-04-05) if I can
  remember correctly (I do apply pending updates at least once daily).

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: gdm3 42.0-1ubuntu2
  ProcVersionSignature: Ubuntu 5.15.0-25.25-generic 5.15.30
  Uname: Linux 5.15.0-25-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu80
  Architecture: amd64
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  Date: Wed Apr  6 15:19:30 2022
  InstallationDate: Installed on 2020-09-16 (566 days ago)
  InstallationMedia: Ubuntu 20.10 "Groovy Gorilla" - Alpha amd64 (20200910)
  SourcePackage: gdm3
  UpgradeStatus: Upgraded to jammy on 2022-03-19 (17 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1968040/+subscriptions


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


[Kernel-packages] [Bug 2019247] Re: perf should be compiled with libtraceevent

2023-05-11 Thread Benjamin Peterson
** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  perf should be compiled with libtraceevent

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  libtraceevent was removed from the kernel tree in
  https://lore.kernel.org/lkml/20221130062935.2219247-1-irog...@google.com/.
  The linux-tools-6.2.0-20-generic I have in Lunar doesn't not use
  compile perf against libtraceevent, making perf unable to record
  traceevents.

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


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


[Kernel-packages] [Bug 2019250] Re: power management controller driver fix for Alder lake and raptor lake

2023-05-11 Thread Philip Cox
** Description changed:

  Reported in https://bugs.launchpad.net/bugs/1996592
  
- On Alder Lake and Raptor lake platforms there is power management driver
- issue in the 5.15 jammy kernel.
+ SRU Justification:
  
- Lore Link: 
- 
https://lore.kernel.org/all/20230320212029.3154407-1-david.e@linux.intel.com/
 
  
- This is fixed by commit: 
+ [Impact]
+ On Alder Lake and Raptor lake platforms there is power management driver 
issue in the 5.15 jammy kernel.
+ 
+ [Fix]
+ Lore Link:
+ 
https://lore.kernel.org/all/20230320212029.3154407-1-david.e@linux.intel.com/
+ 
+ This is fixed by commit:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/platform/x86/intel/pmc/core.c?h=v6.3-rc7=fb5755100a0a5aa5957bdb204fd1e249684557fc
+ 
+ [Test Plan]
+ I have tested the changes on ADL-S and ADL-P platforms.

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

Title:
  power management controller driver fix for Alder lake and raptor lake

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Jammy:
  In Progress

Bug description:
  Reported in https://bugs.launchpad.net/bugs/1996592

  SRU Justification:

  
  [Impact]
  On Alder Lake and Raptor lake platforms there is power management driver 
issue in the 5.15 jammy kernel.

  [Fix]
  Lore Link:
  
https://lore.kernel.org/all/20230320212029.3154407-1-david.e@linux.intel.com/

  This is fixed by commit:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/platform/x86/intel/pmc/core.c?h=v6.3-rc7=fb5755100a0a5aa5957bdb204fd1e249684557fc

  [Test Plan]
  I have tested the changes on ADL-S and ADL-P platforms.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Luca Boccassi
Thank you!

Do you have details about the performance impact of IMA_ARCH?

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  In Progress
Status in linux-kvm package in Ubuntu:
  In Progress
Status in linux-meta-azure package in Ubuntu:
  Invalid
Status in linux-meta-kvm package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  In Progress
Status in linux-kvm source package in Jammy:
  In Progress
Status in linux-meta-azure source package in Jammy:
  Invalid
Status in linux-meta-kvm source package in Jammy:
  New
Status in linux source package in Kinetic:
  In Progress
Status in linux-kvm source package in Kinetic:
  In Progress
Status in linux-meta-azure source package in Kinetic:
  Invalid
Status in linux-meta-kvm source package in Kinetic:
  New
Status in linux source package in Lunar:
  In Progress
Status in linux-kvm source package in Lunar:
  In Progress
Status in linux-meta-azure source package in Lunar:
  New
Status in linux-meta-kvm source package in Lunar:
  New
Status in linux source package in Mantic:
  In Progress
Status in linux-kvm source package in Mantic:
  In Progress
Status in linux-meta-azure source package in Mantic:
  Invalid
Status in linux-meta-kvm source package in Mantic:
  Invalid

Bug description:
  SRU Justification

  [Impact]

  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  [Fix]

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

  [Regression Potential]

  MOK keys may not be correctly read.

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


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


[Kernel-packages] [Bug 2019250] [NEW] power management controller driver fix for Alder lake and raptor lake

2023-05-11 Thread Philip Cox
Public bug reported:

Reported in https://bugs.launchpad.net/bugs/1996592

On Alder Lake and Raptor lake platforms there is power management driver
issue in the 5.15 jammy kernel.

Lore Link: 
https://lore.kernel.org/all/20230320212029.3154407-1-david.e@linux.intel.com/
 

This is fixed by commit: 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/platform/x86/intel/pmc/core.c?h=v6.3-rc7=fb5755100a0a5aa5957bdb204fd1e249684557fc

** Affects: linux (Ubuntu)
 Importance: Undecided
 Assignee: Philip Cox (philcox)
 Status: In Progress

** Affects: linux (Ubuntu Jammy)
 Importance: Undecided
 Assignee: Philip Cox (philcox)
 Status: In Progress

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

** Changed in: linux (Ubuntu Jammy)
 Assignee: (unassigned) => Philip Cox (philcox)

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

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

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

Title:
  power management controller driver fix for Alder lake and raptor lake

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Jammy:
  In Progress

Bug description:
  Reported in https://bugs.launchpad.net/bugs/1996592

  On Alder Lake and Raptor lake platforms there is power management
  driver issue in the 5.15 jammy kernel.

  Lore Link: 
  
https://lore.kernel.org/all/20230320212029.3154407-1-david.e@linux.intel.com/
 

  This is fixed by commit: 
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/platform/x86/intel/pmc/core.c?h=v6.3-rc7=fb5755100a0a5aa5957bdb204fd1e249684557fc

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


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


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

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

apport-collect 2019247

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

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

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

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

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

Title:
  perf should be compiled with libtraceevent

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  libtraceevent was removed from the kernel tree in
  https://lore.kernel.org/lkml/20221130062935.2219247-1-irog...@google.com/.
  The linux-tools-6.2.0-20-generic I have in Lunar doesn't not use
  compile perf against libtraceevent, making perf unable to record
  traceevents.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Tim Gardner
Submitted patches for review: https://lists.ubuntu.com/archives/kernel-
team/2023-May/139435.html

Note that the proposed patches do not include IMA_ARCH given the
performance impacts that option imposes.

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  In Progress
Status in linux-kvm package in Ubuntu:
  In Progress
Status in linux-meta-azure package in Ubuntu:
  Invalid
Status in linux-meta-kvm package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  In Progress
Status in linux-kvm source package in Jammy:
  In Progress
Status in linux-meta-azure source package in Jammy:
  Invalid
Status in linux-meta-kvm source package in Jammy:
  New
Status in linux source package in Kinetic:
  In Progress
Status in linux-kvm source package in Kinetic:
  In Progress
Status in linux-meta-azure source package in Kinetic:
  Invalid
Status in linux-meta-kvm source package in Kinetic:
  New
Status in linux source package in Lunar:
  In Progress
Status in linux-kvm source package in Lunar:
  In Progress
Status in linux-meta-azure source package in Lunar:
  New
Status in linux-meta-kvm source package in Lunar:
  New
Status in linux source package in Mantic:
  In Progress
Status in linux-kvm source package in Mantic:
  In Progress
Status in linux-meta-azure source package in Mantic:
  Invalid
Status in linux-meta-kvm source package in Mantic:
  Invalid

Bug description:
  SRU Justification

  [Impact]

  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  [Fix]

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

  [Regression Potential]

  MOK keys may not be correctly read.

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


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


[Kernel-packages] [Bug 1881494] Re: [amdgpu] suspend to ram (standby) crashes amdgpu (Ryzen-7 Vega - HP Envy x360)

2023-05-11 Thread Mario Limonciello
This issue has been fixed in later kernels and s2idle is supported now.
Suggest to use LTS 5.15 or LTS 6.1 kernels.

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

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

Title:
  [amdgpu] suspend to ram (standby) crashes amdgpu (Ryzen-7 Vega - HP
  Envy x360)

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  suspend to ram crashes amdgpu.
  System is still accessible via SSH after resume from standby.
  Happens when X is running (gdm/gnome with 3d acceleration) and also when X is 
stopped.

  Also the computer never really goes into standby. The cpu fan is
  running all the time and the power button is fully lighted up.
  Nevertheless, I need to press CTRL to "wake" it, so I can access it
  via SSH.

  I'll attach the dmesg output of several attempts.
  This is the hardware:
  
https://store.hp.com/GermanyStore/Merch/Product.aspx?id=9YN58EA=ABD=NTB
  Tested EFI and BIOS bootmode.

  Please let me know if I can help tracking this down.
  I'm a software developer (sadly not a kernel developer), so you can ask dirty 
technical questions ;-)

  Workaround:
  Enable hibernation (suspend to disk) and use instead of suspend to ram 
(standby).

  What didn't help:
  Kernel parameters: no_console_suspend nomodeset amdgpu.gpu_recovery=1 
init_on_free=0 idle=nowait amd_iommu=flush
  echo mem > /sys/power/state
  systemctl start suspend.target
  echo 0 > /sys/power/pm_async
  Upgrading kernel from 5.4 to: 5.6.0-1010-oem

  Using the kernel parameters
no_console_suspend nomodeset amdgpu.gpu_recovery=1 init_on_free=0
idle=nowait amd_iommu=flush
  and doing
echo mem > /sys/power/state
  before suspend made the system acutally not crash.
  Nevertheless, the cpu fan and the power button stay full on/lighted. So the 
system doesn't really go to standby either.

  I'll try to find the minimal combination of kernel parameters.
  nomodeset seems to be essential, but not sufficient.
  Without nomodeset the system wakes again for a few seconds, but freezes a 
moment later (ssh still accessible).

  ProblemType: Bug
  DistroRelease: Ubuntu 20.04
  Package: xorg 1:7.7+19ubuntu14
  ProcVersionSignature: Ubuntu 5.6.0-1010.10-oem 5.6.8
  Uname: Linux 5.6.0-1010-oem x86_64
  ApportVersion: 2.20.11-0ubuntu27.2
  Architecture: amd64
  BootLog: Error: [Errno 13] Keine Berechtigung: '/var/log/boot.log'
  CasperMD5CheckResult: skip
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Sun May 31 18:43:54 2020
  DistUpgraded: Fresh install
  DistroCodename: focal
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GpuHangFrequency: Continuously
  GpuHangReproducibility: Yes, I can easily reproduce it
  GpuHangStarted: Immediately after installing this version of Ubuntu
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] Picasso [1002:15d8] (rev c1) (prog-if 
00 [VGA controller])
     Subsystem: Hewlett-Packard Company Picasso [103c:85de]
  InstallationDate: Installed on 2020-05-29 (1 days ago)
  InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
  MachineType: HP HP ENVY x360 Convertible 13-ar0xxx
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=de_DE.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.6.0-1010-oem 
root=/dev/mapper/vgubuntu-root ro quiet splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 12/26/2019
  dmi.bios.vendor: AMI
  dmi.bios.version: F.19
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 85DE
  dmi.board.vendor: HP
  dmi.board.version: 41.36
  dmi.chassis.type: 31
  dmi.chassis.vendor: HP
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAMI:bvrF.19:bd12/26/2019:svnHP:pnHPENVYx360Convertible13-ar0xxx:pvr:rvnHP:rn85DE:rvr41.36:cvnHP:ct31:cvrChassisVersion:
  dmi.product.family: 103C_5335KV HP Envy
  dmi.product.name: HP ENVY x360 Convertible 13-ar0xxx
  dmi.product.sku: 9YN58EA#ABD
  dmi.sys.vendor: HP
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.101-2
  version.libgl1-mesa-dri: libgl1-mesa-dri 20.0.4-2ubuntu1
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:1.20.8-2ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-1
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20200226-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.16-1

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


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

[Kernel-packages] [Bug 1696240] Re: linux 4.10 and AMD Polaris11 card -> graphics crash

2023-05-11 Thread Mario Limonciello
** Changed in: linux (Ubuntu)
   Status: Confirmed => Won't Fix

** Changed in: linux (Ubuntu Zesty)
   Status: Confirmed => Won't Fix

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

Title:
  linux 4.10 and AMD Polaris11 card -> graphics crash

Status in linux package in Ubuntu:
  Won't Fix
Status in linux source package in Zesty:
  Won't Fix

Bug description:
  Using 4.10.0-22-generic from Ubuntu and running any of the Unigine benchmarks 
(Heaven-4.0, Valley-1.0, Superposition-1.0) causes the screen to go black and 
the graphics system to crash.
  The graphics card's fan stops working and sensors reports 511C, clearly wrong.

  I can still login via SSH and attempt to stop X, however the
  application (e.g. heaven) just remains in a zombie state and the
  system is unusable, I can't start X again. In fact the graphics card
  ends up in a pretty bad state, because if I press the reset button the
  UEFI BIOS is not able to detect it anymore, I have to power the whole
  system off and on again to make the card work.

  Upgrading to mainline 4.11.3 avoids this problem: all 3 benchmarks are
  running fine, with no crashes.

  I've attached two dmesgs: one with the default, where IOMMU is on and I get 
lots of AMD-Vi warnings logged:
  [  439.903842] [ cut here ]
  [  439.903848] WARNING: CPU: 5 PID: 0 at 
/build/linux-nOqmtv/linux-4.10.0/drivers/iommu/amd_iommu.c:1252 
__domain_flush_pages+0x1f7/0x220
  [  439.903848] Modules linked in: overlay ccm xt_CHECKSUM iptable_mangle 
ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat 
nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT 
nf_reject_ipv4 xt_tcpudp bridge stp llc ebtable_filter ebtables ip6table_filter 
ip6_tables iptable_filter binfmt_misc nls_iso8859_1 eeepc_wmi asus_wmi 
sparse_keymap video edac_mce_amd edac_core kvm_amd kvm irqbypass 
crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc aesni_intel 
snd_hda_codec_realtek arc4 aes_x86_64 crypto_simd glue_helper cryptd 
snd_hda_codec_generic ath9k snd_hda_codec_hdmi ath9k_common ath9k_hw 
snd_hda_intel snd_hda_codec snd_hda_core ath snd_hwdep input_leds joydev 
mac80211 snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi cfg80211 snd_seq 
fam15h_power i2c_piix4 snd_seq_device
  [  439.903873]  snd_timer snd k10temp mac_hid soundcore tpm_infineon shpchp 
tcp_bbr sch_fq cuse parport_pc ppdev lp parport ip_tables x_tables autofs4 
btrfs raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx 
xor raid6_pq libcrc32c raid1 raid0 multipath linear hid_generic usbhid hid 
amdkfd amd_iommu_v2 amdgpu mxm_wmi i2c_algo_bit ttm drm_kms_helper syscopyarea 
sysfillrect r8169 sysimgblt fb_sys_fops mii drm ahci libahci fjes wmi
  [  439.903893] CPU: 5 PID: 0 Comm: swapper/5 Not tainted 4.10.0-22-generic 
#24-Ubuntu
  [  439.903894] Hardware name: To be filled by O.E.M. To be filled by 
O.E.M./M5A99FX PRO R2.0, BIOS 2501 04/07/2014
  [  439.903895] Call Trace:
  [  439.903896]  
  [  439.903899]  dump_stack+0x63/0x81
  [  439.903900]  __warn+0xcb/0xf0
  [  439.903901]  warn_slowpath_null+0x1d/0x20
  [  439.903903]  __domain_flush_pages+0x1f7/0x220
  [  439.903904]  __queue_flush+0x4b/0xd0
  [  439.903905]  ? queue_flush_all+0x90/0x90
  [  439.903907]  queue_flush_all+0x77/0x90
  [  439.903908]  queue_flush_timeout+0x18/0x20
  [  439.903910]  call_timer_fn+0x35/0x140
  [  439.903911]  run_timer_softirq+0x215/0x4b0
  [  439.903912]  ? ktime_get+0x41/0xb0
  [  439.903914]  ? lapic_next_event+0x1d/0x30
  [  439.903916]  ? clockevents_program_event+0x7f/0x120
  [  439.903918]  __do_softirq+0x104/0x2af
  [  439.903919]  irq_exit+0xb6/0xc0
  [  439.903921]  smp_apic_timer_interrupt+0x3d/0x50
  [  439.903922]  apic_timer_interrupt+0x89/0x90
  [  439.903924] RIP: 0010:cpuidle_enter_state+0x122/0x2c0
  [  439.903925] RSP: 0018:b4e181a23e58 EFLAGS: 0246 ORIG_RAX: 
ff10
  [  439.903926] RAX:  RBX: 0002 RCX: 
001f
  [  439.903926] RDX: 006665f96c97 RSI: 9dbcded56a98 RDI: 

  [  439.903927] RBP: b4e181a23e98 R08: cccd R09: 
0018
  [  439.903927] R10: 0da8 R11: 3557 R12: 
9dbcd036b600
  [  439.903928] R13: baeeba38 R14: 0002 R15: 
baeeba20
  [  439.903929]  
  [  439.903930]  ? cpuidle_enter_state+0x110/0x2c0
  [  439.903931]  cpuidle_enter+0x17/0x20
  [  439.903933]  call_cpuidle+0x23/0x40
  [  439.903934]  do_idle+0x189/0x200
  [  439.903935]  cpu_startup_entry+0x71/0x80
  [  439.903937]  start_secondary+0x154/0x190
  [  439.903938]  start_cpu+0x14/0x14
  [  439.903939] ---[ end trace 9edd64d3e01a6c8c ]---

  And another one with iommu=soft boot option, where nothing interesting
  in dmesg shows up, but the system still crashes.

  Note: if I turn IOMMU off 

[Kernel-packages] [Bug 2019247] [NEW] perf should be compiled with libtraceevent

2023-05-11 Thread Benjamin Peterson
Public bug reported:

libtraceevent was removed from the kernel tree in
https://lore.kernel.org/lkml/20221130062935.2219247-1-irog...@google.com/.
The linux-tools-6.2.0-20-generic I have in Lunar doesn't not use compile
perf against libtraceevent, making perf unable to record traceevents.

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

Title:
  perf should be compiled with libtraceevent

Status in linux package in Ubuntu:
  New

Bug description:
  libtraceevent was removed from the kernel tree in
  https://lore.kernel.org/lkml/20221130062935.2219247-1-irog...@google.com/.
  The linux-tools-6.2.0-20-generic I have in Lunar doesn't not use
  compile perf against libtraceevent, making perf unable to record
  traceevents.

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


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


[Kernel-packages] [Bug 1608042] Re: 64-bit XUbuntu 16.04 "Xenial" hybrid graphics (Intel + AMD): AMDGPU crashes / freezes / hangs entire system

2023-05-11 Thread Mario Limonciello
** Changed in: linux (Ubuntu)
   Status: Triaged => Fix Released

** Changed in: xserver-xorg-video-amdgpu (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: xserver-xorg-video-amdgpu (Ubuntu Xenial)
   Status: Confirmed => Invalid

** Changed in: linux (Ubuntu Xenial)
   Status: Triaged => Won't Fix

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

Title:
  64-bit XUbuntu 16.04 "Xenial" hybrid graphics (Intel + AMD): AMDGPU
  crashes / freezes / hangs entire system

Status in linux package in Ubuntu:
  Fix Released
Status in xserver-xorg-video-amdgpu package in Ubuntu:
  Invalid
Status in linux source package in Xenial:
  Won't Fix
Status in xserver-xorg-video-amdgpu source package in Xenial:
  Invalid

Bug description:
  COMPUTER: Dell Inspiron 5548 laptop

  CPU: Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz

  GRAPHICS: Intel-AMD hybrid:
  - CPU-integrated: Intel Corporation Broadwell-U Integrated Graphics (driver: 
i915)
  - GPU: Advanced Micro Devices, Inc. [AMD/ATI] Topaz XT [Radeon R7 M260/M265] 
(driver: amdgpu)

  OPERATING SYSTEM: 64-bit GNU/Linux XUbuntu 16.04 "Xenial"

  KERNEL: 4.4.0-31-generic

  PROBLEM: system hangs / freezes very frequently.
  I have Xscreensaver installed and noticed that when it's running an OpenGL 
animation (screensaver) and I move the touchpad pointer the screen freezes. I 
can still turn the keyboard LED backlight on and off (hence: keyboard doesn't 
stop working) but the pointer won't move (touchpad is locked) and I can't 
Ctrl-Alt-F[1-6] (switch TTY/terminals). Only solution is to power off my laptop 
(press and hold the power button).

  I usually select the "Molecule" screensaver (it uses OpenGL), then I
  click the "preview" button and wait for about 20 seconds, then I click
  the touchpad and the computer hangs.

  When I used XUbuntu 14.04 "Trusty" with AMD's fglrx (proprietary)
  driver I didn't experience such issue. After upgrading to 16.04
  "Xenial" (which doesn't support fglrx module/driver) amdgpu module is
  loaded by default but very frequently hangs the entire system.

  Sometimes I'm quick enough to go to TTYS1 and then I get to see some
  messages such as "HARD LOCKUP on CPU0" and "HARD LOCKUP on CPU1".
  However, it's not a hardware problem because I've already executed the
  Dell Hardware Diagnostics straight from the boot (it's an EFI
  utility), it tested all the hardware components (CPU, GPU, RAM,
  keyboard, touchpad, hard disk etc.) and didn't detect any faulty
  component.

  The attached file "amdgpu-bug.txt" is the reason why I'm pretty
  convinced that the problem is being caused by the amdgpu driver
  (although it seems to be related to how it interacts with the kernel,
  thus maybe the problem is kernel-related).

  WORKAROUND: Boot from GRUB with the nomodeset parameter. The graphics
  performance becomes terribly slow.

  -
  Apport output:

  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  BootLog:

  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: None
  CurrentDesktop: XFCE
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroRelease: Ubuntu 16.04
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
     Subsystem: Dell Broadwell-U Integrated Graphics [1028:0643]
     Subsystem: Dell Topaz XT [Radeon R7 M260/M265] [1028:0643]
  InstallationDate: Installed on 2016-07-29 (1 days ago)
  InstallationMedia: Xubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
  MachineType: Dell Inc. Inspiron 5548
  Package: xorg 1:7.7+13ubuntu3
  PackageArchitecture: amd64
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-31-generic.efi.signed 
root=UUID=24cb3fff-5c01-4674-9c59-58d7d776fd70 ro quiet splash nomodeset 
vt.handoff=7
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Renderer: Software
  Tags:  xenial ubuntu
  Uname: Linux 4.4.0-31-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dialout dip fax floppy lpadmin netdev plugdev 
sambashare scanner sudo tape users video
  _MarkForUpload: True
  dmi.bios.date: 10/12/2015
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A06
  dmi.board.name: 0YDTG3
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A02
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A06
  dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd10/12/2015:svnDellInc.:pnInspiron5548:pvrA06:rvnDellInc.:rn0YDTG3:rvrA02:cvnDellInc.:ct8:cvrA06:
  dmi.product.name: Inspiron 5548
  dmi.product.version: A06
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz N/A
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
  

[Kernel-packages] [Bug 1641859] Re: perf compiled without auxtrace

2023-05-11 Thread Benjamin Peterson
Seems intel_pt works now on 23.04.

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

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

Title:
  perf compiled without auxtrace

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  perf in linux-tools-common_4.8.0-27.29 seems to be compiled without auxtrace 
support. This prevents perf from using Intel Processor Trace (PT) or Branch 
Trace Store (BTS). Unfortunately, rather than indicating that auxtrace is 
missing, perf just records no samples:
  # grep -c intel_pt /proc/cpuinfo
  8
  # perf list | grep intel_pt
  # grep intel_pt /proc/cpuinfo
  # perf record -e intel_pt// -- ls
  ...
  # perf script

  I am able to successfully to use PT on my machine if I compile perf
  myself.

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


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


[Kernel-packages] [Bug 1994068] Re: Kinetic update: v5.19.9 upstream stable release

2023-05-11 Thread Mario Limonciello
** Changed in: linux (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Kinetic update: v5.19.9 upstream stable release

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Kinetic:
  Fix Released

Bug description:
  SRU Justification

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

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

  efi: libstub: Disable struct randomization
  efi: capsule-loader: Fix use-after-free in efi_capsule_write
  wifi: mt76: mt7921e: fix crash in chip reset fail
  wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in 
il4965_rs_fill_link_cmd()
  fs: only do a memory barrier for the first set_buffer_uptodate()
  soc: fsl: select FSL_GUTS driver for DPIO
  Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()"
  scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX
  scsi: core: Allow the ALUA transitioning state enough time
  scsi: megaraid_sas: Fix double kfree()
  drm/gem: Fix GEM handle release errors
  drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to 
psp_hw_fini
  drm/amdgpu: fix hive reference leak when adding xgmi device
  drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup.
  drm/amdgpu: Remove the additional kfd pre reset call for sriov
  drm/radeon: add a force flush to delay work when radeon
  scsi: ufs: core: Reduce the power mode change timeout
  Revert "parisc: Show error if wrong 32/64-bit compiler is being used"
  parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources()
  parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines
  UBUNTU: [Config] updateconfigs for ARM64_ERRATUM_2457168
  arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly
  netfilter: conntrack: work around exceeded receive window
  thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR
  cpufreq: check only freq_table in __resolve_freq()
  net/core/skbuff: Check the return value of skb_copy_bits()
  md: Flush workqueue md_rdev_misc_wq in md_alloc()
  fbdev: omapfb: Fix tests for platform_get_irq() failure
  fbdev: fbcon: Destroy mutex on freeing struct fb_info
  fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init()
  x86/sev: Mark snp_abort() noreturn
  drm/amdgpu: add sdma instance check for gfx11 CGCG
  drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly
  ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC
  ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc()
  ALSA: hda: Once again fix regression of page allocations with IOMMU
  ALSA: aloop: Fix random zeros in capture data when using jiffies timer
  ALSA: usb-audio: Clear fixed clock rate at closing EP
  ALSA: usb-audio: Fix an out-of-bounds bug in __snd_usb_parse_audio_interface()
  tracefs: Only clobber mode/uid/gid on remount if asked
  tracing: hold caller_addr to hardirq_{enable,disable}_ip
  tracing: Fix to check event_mutex is held while accessing trigger list
  btrfs: zoned: set pseudo max append zone limit in zone emulation mode
  btrfs: zoned: fix API misuse of zone finish waiting
  vfio/type1: Unpin zero pages
  kprobes: Prohibit probes in gate area
  perf: RISC-V: fix access beyond allocated array
  debugfs: add debugfs_lookup_and_remove()
  sched/debug: fix dentry leak in update_sched_domain_debugfs
  drm/amd/display: fix memory leak when using debugfs_lookup()
  driver core: fix driver_set_override() issue with empty strings
  nvmet: fix a use-after-free
  drm/i915/bios: Copy the whole MIPI sequence block
  drm/i915/slpc: Let's fix the PCODE min freq table setup for SLPC
  scsi: mpt3sas: Fix use-after-free warning
  scsi: lpfc: Add missing destroy_workqueue() in error path
  cgroup: Elide write-locking threadgroup_rwsem when updating csses on an empty 
subtree
  cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock
  cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl()
  smb3: missing inode locks in zero range
  spi: bitbang: Fix lsb-first Rx
  ASoC: cs42l42: Only report button state if there was a button interrupt
  Revert "soc: imx: imx8m-blk-ctrl: set power device name"
  arm64: dts: imx8mm-verdin: update CAN clock to 40MHz
  arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd
  ASoC: qcom: sm8250: add missing module owner
  regmap: spi: Reserve space for register address/padding
  arm64: dts: 

[Kernel-packages] [Bug 1994076] Re: Kinetic update: v5.19.14 upstream stable release

2023-05-11 Thread Mario Limonciello
** Changed in: linux (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  Kinetic update: v5.19.14 upstream stable release

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Kinetic:
  Fix Released

Bug description:
  SRU Justification

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

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

  riscv: make t-head erratas depend on MMU
  tools/perf: Fix out of bound access to cpu mask array
  perf record: Fix cpu mask bit setting for mixed mmaps
  counter: 104-quad-8: Utilize iomap interface
  counter: 104-quad-8: Implement and utilize register structures
  counter: 104-quad-8: Fix skipped IRQ lines during events configuration
  uas: add no-uas quirk for Hiksemi usb_disk
  usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS
  uas: ignore UAS for Thinkplus chips
  usb: typec: ucsi: Remove incorrect warning
  thunderbolt: Explicitly reset plug events delay back to USB4 spec value
  net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455
  Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address
  can: c_can: don't cache TX messages for C_CAN cores
  clk: ingenic-tcu: Properly enable registers before accessing timers
  wifi: mac80211: ensure vif queues are operational after start
  x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd
  frontswap: don't call ->init if no ops are registered
  ARM: dts: integrator: Tag PCI host with device_type
  ntfs: fix BUG_ON in ntfs_lookup_inode_by_name()
  x86/uaccess: avoid check_object_size() in copy_from_user_nmi()
  mm/damon/dbgfs: fix memory leak when using debugfs_lookup()
  net: mt7531: only do PLL once after the reset
  Revert "firmware: arm_scmi: Add clock management to the SCMI power domain"
  powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush
  drm/i915/gt: Restrict forced preemption to the active context
  drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV
  vduse: prevent uninitialized memory accesses
  libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205
  mm: fix BUG splat with kvmalloc + GFP_ATOMIC
  mptcp: factor out __mptcp_close() without socket lock
  mptcp: fix unreleased socket in accept queue
  mmc: moxart: fix 4-bit bus width and remove 8-bit bus width
  mmc: hsq: Fix data stomping during mmc recovery
  mm: gup: fix the fast GUP race against THP collapse
  mm/page_alloc: fix race condition between build_all_zonelists and page 
allocation
  mm: prevent page_frag_alloc() from corrupting the memory
  mm/page_isolation: fix isolate_single_pageblock() isolation behavior
  mm: fix dereferencing possible ERR_PTR
  mm/migrate_device.c: flush TLB while holding PTL
  mm/migrate_device.c: add missing flush_cache_page()
  mm/migrate_device.c: copy pte dirty bit to page
  mm: fix madivse_pageout mishandling on non-LRU page
  mm: bring back update_mmu_cache() to finish_fault()
  mm/hugetlb: correct demote page offset logic
  mm,hwpoison: check mm when killing accessing process
  media: dvb_vb2: fix possible out of bound access
  media: rkvdec: Disable H.264 error detection
  media: mediatek: vcodec: Drop platform_get_resource(IORESOURCE_IRQ)
  media: v4l2-compat-ioctl32.c: zero buffer passed to 
v4l2_compat_get_array_args()
  ARM: dts: am33xx: Fix MMCHS0 dma properties
  reset: imx7: Fix the iMX8MP PCIe PHY PERST support
  ARM: dts: am5748: keep usb4_tm disabled
  soc: sunxi: sram: Actually claim SRAM regions
  soc: sunxi: sram: Prevent the driver from being unbound
  soc: sunxi: sram: Fix probe function ordering issues
  soc: sunxi: sram: Fix debugfs info for A64 SRAM C
  ASoC: imx-card: Fix refcount issue with of_node_put
  clk: microchip: mpfs: fix clk_cfg array bounds violation
  clk: microchip: mpfs: make the rtc's ahb clock critical
  arm64: dts: qcom: sm8350: fix UFS PHY serdes size
  ASoC: tas2770: Reinit regcache on reset
  drm/bridge: lt8912b: add vsync hsync
  drm/bridge: lt8912b: set hdmi or dvi mode
  drm/bridge: lt8912b: fix corrupted image output
  net: macb: Fix ZynqMP SGMII non-wakeup source resume failure
  Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in 
suspend/resume time"
  Input: melfas_mip4 - fix return value check in mip4_probe()
  gpio: mvebu: Fix check for pwm support on non-A8K platforms
  perf parse-events: Break out tracepoint and printing
  perf print-events: Fix "perf list" can not display the 

[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Tim Gardner
** Also affects: linux-kvm (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: linux-kvm (Ubuntu Jammy)
   Importance: Undecided => Medium

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

** Changed in: linux-kvm (Ubuntu Jammy)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux-kvm (Ubuntu Kinetic)
   Importance: Undecided => Medium

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

** Changed in: linux-kvm (Ubuntu Kinetic)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux-kvm (Ubuntu Lunar)
   Importance: Undecided => Medium

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

** Changed in: linux-kvm (Ubuntu Lunar)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux-kvm (Ubuntu Mantic)
   Importance: Undecided => Medium

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

** Changed in: linux-kvm (Ubuntu Mantic)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux-meta-azure (Ubuntu Jammy)
   Status: New => Invalid

** Changed in: linux-meta-azure (Ubuntu Kinetic)
   Status: New => Invalid

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  In Progress
Status in linux-kvm package in Ubuntu:
  In Progress
Status in linux-meta-azure package in Ubuntu:
  Invalid
Status in linux-meta-kvm package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  In Progress
Status in linux-kvm source package in Jammy:
  In Progress
Status in linux-meta-azure source package in Jammy:
  Invalid
Status in linux-meta-kvm source package in Jammy:
  New
Status in linux source package in Kinetic:
  In Progress
Status in linux-kvm source package in Kinetic:
  In Progress
Status in linux-meta-azure source package in Kinetic:
  Invalid
Status in linux-meta-kvm source package in Kinetic:
  New
Status in linux source package in Lunar:
  In Progress
Status in linux-kvm source package in Lunar:
  In Progress
Status in linux-meta-azure source package in Lunar:
  New
Status in linux-meta-kvm source package in Lunar:
  New
Status in linux source package in Mantic:
  In Progress
Status in linux-kvm source package in Mantic:
  In Progress
Status in linux-meta-azure source package in Mantic:
  Invalid
Status in linux-meta-kvm source package in Mantic:
  Invalid

Bug description:
  SRU Justification

  [Impact]

  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  [Fix]

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

  [Regression Potential]

  MOK keys may not be correctly read.

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


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


[Kernel-packages] [Bug 2007579] Re: Raptor Lake Thermald ITMT version 2 support

2023-05-11 Thread Andreas Hasenack
Please note that the jammy upload was rejected in comment #10, and the
jammy task is therefore still "in progress".

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

Title:
  Raptor Lake Thermald ITMT version 2 support

Status in thermald package in Ubuntu:
  Fix Released
Status in thermald source package in Bionic:
  Won't Fix
Status in thermald source package in Focal:
  Won't Fix
Status in thermald source package in Jammy:
  In Progress
Status in thermald source package in Kinetic:
  Fix Released
Status in thermald source package in Lunar:
  Fix Released

Bug description:
  == SRU Justification Kinetic ==

  Raptor Lake system uses ITMT v2 instead of V1 for thermal
  configuration via GDDV.

  This was observed on Dell XPS 9320 system.
  Because thermald can't parse V2 table, it is not getting correct thermal 
threshold temperature and power limits.

  == The Fix ==

  This is fixed in upstream thermald by the patch:
  
https://github.com/intel/thermal_daemon/commit/90d56bc06cdcf78e7398ea7da389401516591774
  This fix is part of Thermald 2.5.2 release.

  The fix applies cleanly and this is already in Ubuntu Lunar in
  thermald 2.5.2.  The fix checks for illegal ITMT version and handles
  version 2 as a specific exceptional case.

  == Regression Risks ==

  For systems that do not used ITMT, no change in behaviour will occur.
  Systems with versions > 2 (currently not valid) will not have ITMT
  parsed anymore; this will avoid misinterpreting unsupported ITMT data.
  Finally, version 2 of ITMT will be now parsed differently and
  additional fields will be parsed and these will be ignored as
  intended.

  == Test Plan ==

  Test against a Dell XPS 9320 system. See if it handles the ITMT correctly. 
The thermald log should indicate version 2 is being used with the message: 
  "ignore dummy_str: ds d1 d2 d3 " where ds = a string, d1 .. d3 are uint64 
values that are parsed and ignored.

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


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


[Kernel-packages] [Bug 2007579] Re: Raptor Lake Thermald ITMT version 2 support

2023-05-11 Thread Launchpad Bug Tracker
This bug was fixed in the package thermald - 2.5.1-1ubuntu1

---
thermald (2.5.1-1ubuntu1) kinetic; urgency=medium

  * Fix ITMT parsing, skip fields that are not known (LP: #2007579)
upstream commit 90d56bc06cdcf78e7398ea7da389401516591774
- 0001-Process-ITMT-v2.patch

 -- Colin Ian King   Thu, 16 Feb 2023 16:46:11
+0100

** Changed in: thermald (Ubuntu Kinetic)
   Status: Fix Committed => Fix Released

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

Title:
  Raptor Lake Thermald ITMT version 2 support

Status in thermald package in Ubuntu:
  Fix Released
Status in thermald source package in Bionic:
  Won't Fix
Status in thermald source package in Focal:
  Won't Fix
Status in thermald source package in Jammy:
  In Progress
Status in thermald source package in Kinetic:
  Fix Released
Status in thermald source package in Lunar:
  Fix Released

Bug description:
  == SRU Justification Kinetic ==

  Raptor Lake system uses ITMT v2 instead of V1 for thermal
  configuration via GDDV.

  This was observed on Dell XPS 9320 system.
  Because thermald can't parse V2 table, it is not getting correct thermal 
threshold temperature and power limits.

  == The Fix ==

  This is fixed in upstream thermald by the patch:
  
https://github.com/intel/thermal_daemon/commit/90d56bc06cdcf78e7398ea7da389401516591774
  This fix is part of Thermald 2.5.2 release.

  The fix applies cleanly and this is already in Ubuntu Lunar in
  thermald 2.5.2.  The fix checks for illegal ITMT version and handles
  version 2 as a specific exceptional case.

  == Regression Risks ==

  For systems that do not used ITMT, no change in behaviour will occur.
  Systems with versions > 2 (currently not valid) will not have ITMT
  parsed anymore; this will avoid misinterpreting unsupported ITMT data.
  Finally, version 2 of ITMT will be now parsed differently and
  additional fields will be parsed and these will be ignored as
  intended.

  == Test Plan ==

  Test against a Dell XPS 9320 system. See if it handles the ITMT correctly. 
The thermald log should indicate version 2 is being used with the message: 
  "ignore dummy_str: ds d1 d2 d3 " where ds = a string, d1 .. d3 are uint64 
values that are parsed and ignored.

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


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


[Kernel-packages] [Bug 2007579] Update Released

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

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

Title:
  Raptor Lake Thermald ITMT version 2 support

Status in thermald package in Ubuntu:
  Fix Released
Status in thermald source package in Bionic:
  Won't Fix
Status in thermald source package in Focal:
  Won't Fix
Status in thermald source package in Jammy:
  In Progress
Status in thermald source package in Kinetic:
  Fix Released
Status in thermald source package in Lunar:
  Fix Released

Bug description:
  == SRU Justification Kinetic ==

  Raptor Lake system uses ITMT v2 instead of V1 for thermal
  configuration via GDDV.

  This was observed on Dell XPS 9320 system.
  Because thermald can't parse V2 table, it is not getting correct thermal 
threshold temperature and power limits.

  == The Fix ==

  This is fixed in upstream thermald by the patch:
  
https://github.com/intel/thermal_daemon/commit/90d56bc06cdcf78e7398ea7da389401516591774
  This fix is part of Thermald 2.5.2 release.

  The fix applies cleanly and this is already in Ubuntu Lunar in
  thermald 2.5.2.  The fix checks for illegal ITMT version and handles
  version 2 as a specific exceptional case.

  == Regression Risks ==

  For systems that do not used ITMT, no change in behaviour will occur.
  Systems with versions > 2 (currently not valid) will not have ITMT
  parsed anymore; this will avoid misinterpreting unsupported ITMT data.
  Finally, version 2 of ITMT will be now parsed differently and
  additional fields will be parsed and these will be ignored as
  intended.

  == Test Plan ==

  Test against a Dell XPS 9320 system. See if it handles the ITMT correctly. 
The thermald log should indicate version 2 is being used with the message: 
  "ignore dummy_str: ds d1 d2 d3 " where ds = a string, d1 .. d3 are uint64 
values that are parsed and ignored.

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


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


[Kernel-packages] [Bug 2019240] [NEW] Pull-request to address a number of enablement issues for Orin platforms

2023-05-11 Thread Brad Figg
Public bug reported:

[impact]
This patch set addresses a wide variety of bugs and missing features for 
NVIDIA Orin platforms.

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

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

Title:
  Pull-request to address a number of enablement issues for Orin
  platforms

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  [impact]
  This patch set addresses a wide variety of bugs and missing features for 
NVIDIA Orin platforms.

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


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


Re: [Kernel-packages] [Bug 2017586] Re: linux-image-6.2.0-20-generic install failed

2023-05-11 Thread greg gaustad
Jeurg:

FYI- My responses are delayed due to remodeling of my house.

Yes, upgrade was done over wifi

/var/log/apt/term.log relevant lines from the period encompassing the 
time of upgrade

snapd.failure.service is a disabled or a static unit not running, not 
starting it.
snapd.snap-repair.service is a disabled or a static unit not running, 
not starting it.
Failed to restart snapd.mounts-pre.target: Operation refused, unit 
snapd.mounts-pre.target may be requested by dependency only (it is 
configured to refuse manual start/stop).
See system logs and 'systemctl status snapd.mounts-pre.target' for details.
Could not execute systemctl:  at /usr/bin/deb-systemd-invoke line 145.

update-rc.d: warning: start and stop actions are no longer supported; 
falling back to defaults

update-notifier-download.service is a disabled or a static unit not 
running, not starting it.
update-notifier-motd.service is a disabled or a static unit not running, 
not starting it.

Warning: found usr.sbin.sssd in /etc/apparmor.d/force-complain, forcing 
complain mode
Warning from /etc/apparmor.d/usr.sbin.sssd 
(/etc/apparmor.d/usr.sbin.sssd line 60): Caching disabled for: 
'usr.sbin.sssd' due to force complain
sssd-autofs.service is a disabled or a static unit not running, not 
starting it.
sssd-nss.service is a disabled or a static unit not running, not 
starting it.
sssd-pam.service is a disabled or a static unit not running, not 
starting it.
sssd-ssh.service is a disabled or a static unit not running, not 
starting it.
sssd-sudo.service is a disabled or a static unit not running, not 
starting it.
Could not execute systemctl:  at /usr/bin/deb-systemd-invoke line 145.

sssd-pac.service is a disabled or a static unit not running, not 
starting it.
Could not execute systemctl:  at /usr/bin/deb-systemd-invoke line 145.

Memtest86+ needs a 16-bit boot, that is not available on EFI, exiting
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.

/var/log/dpkg. found nothing error like
/var/log/apt/history.log. found nothing error like


dkms status
Deprecated feature: REMAKE_INITRD 
(/var/lib/dkms/intel-hid/3.1/source/dkms.conf)
Deprecated feature: REMAKE_INITRD 
(/var/lib/dkms/intel-hid/3.1/source/dkms.conf)
Deprecated feature: REMAKE_INITRD 
(/var/lib/dkms/oem-ethernet-e1000e-for-i219/4/source/dkms.conf)
Deprecated feature: REMAKE_INITRD 
(/var/lib/dkms/oem-ethernet-e1000e-for-i219/4/source/dkms.conf)
hid-alps/0.0.20160824, 4.4.0-174-generic, x86_64: installed
hid-alps/0.0.20160824, 4.4.0-176-generic, x86_64: installed
intel-hid/3.1, 4.4.0-174-generic, x86_64: installed
intel-hid/3.1, 4.4.0-176-generic, x86_64: installed
oem-audio-hda-daily/0.201708030416~ubuntu16.04.1, 4.4.0-174-generic, 
x86_64: installed
oem-audio-hda-daily/0.201708030416~ubuntu16.04.1, 4.4.0-176-generic, 
x86_64: installed
oem-ethernet-e1000e-for-i219/4, 4.4.0-174-generic, x86_64: installed
oem-ethernet-e1000e-for-i219/4, 4.4.0-176-generic, x86_64: installed


On 5/8/23 1:43 AM, Juerg Haefliger wrote:
> I need some logs from when you performed the upgrade. Specifically:
> /var/log/apt/*
> /var/log/dpkg*
>
> Can you look through the above and see if you can find a sensible error
> message? Specifically in /var/log/apt/term.log* from when you did the
> upgrade?
>
> Also, do you have any wonky DKMS modules installed? What's the output of:
> $ dkms status
>
>
> ** Changed in: linux (Ubuntu)
> Status: Confirmed => Incomplete
>

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

Title:
  linux-image-6.2.0-20-generic install failed

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  during upgrade from 22.10 to 23.04
  installed linux-image-6.2.0-20-generic package post-installation script 
subprocess returned error exit status 1
  --- 
  ProblemType: Bug
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  gregg  3609 F pipewire
gregg  3613 F wireplumber
   /dev/snd/controlC0:  gregg  3613 F wireplumber
   /dev/snd/seq:gregg  3609 F pipewire
  CasperMD5CheckResult: unknown
  CurrentDesktop: ubuntu:GNOME
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-somerville-xenial-amd64-20160624-2
  DistroRelease: Ubuntu 23.04
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=2bcaea5c-fe56-452a-97ac-2315908d2c0a
  InstallationDate: Installed on 2017-10-27 (2005 days ago)
  InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
  MachineType: Dell Inc. 

[Kernel-packages] [Bug 1803173] Re: cloud-init disables user on azure at second reboot

2023-05-11 Thread James Falcon
Tracked in Github Issues as https://github.com/canonical/cloud-
init/issues/3279

** Bug watch added: github.com/canonical/cloud-init/issues #3279
   https://github.com/canonical/cloud-init/issues/3279

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

Title:
  cloud-init disables user on azure at second reboot

Status in cloud-init:
  Invalid
Status in linux package in Ubuntu:
  Triaged
Status in walinuxagent package in Ubuntu:
  Confirmed

Bug description:
  Hello,

  Environment:

  platform: Azure
  arm image: Canonical UbuntuServer 16.04-DAILY-LTS latest

  Steps:

  Deploy VM with user/pass authentication
  Install latest linux-next-upstream kernel (for example 4.19.0-4db9d11bcbef, 
where 4db9d11bcbef is the git tag from the linux-next latest tree: 
https://kernel.googlesource.com/pub/scm/linux/kernel/git/next/linux-next/)
  reboot (all good)
  reboot again
  cloud-init disables the username password authentication
  I checked the cloud-init logs and found:

  2018-11-01 16:45:28,566 - init.py[INFO]: User already exists, skipping.
  2018-11-01 16:45:28,570 - util.py[DEBUG]: Running command ['passwd', '-l', 
''] with allowed return codes [0] (shell=False, capture=True)
  2018-11-01 16:45:28,793 - util.py[DEBUG]: Reading from /etc/sudoers 
(quiet=False)
  2018-11-01 16:45:28,795 - util.py[DEBUG]: Read 781 bytes from /etc/sudoers
  2018-11-01 16:45:28,796 - util.py[DEBUG]: Writing to 
/etc/sudoers.d/90-cloud-init-users - ab: [None] 51 bytes
  2018-11-01 16:45:28,797 - handlers.py[DEBUG]: finish: 
init-network/config-users-groups: SUCCESS: config-users-groups ran successfully

  This issue is very bad one, as it can render your vm inaccessible on Azure.
  I think this problem is due to the new kernel installation.

  Initial bug report:
  https://github.com/Azure/WALinuxAgent/issues/1386

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1803173/+subscriptions


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


[Kernel-packages] [Bug 2008774] Re: Ubuntu 22.04 not waking up after second suspend

2023-05-11 Thread Arman Arushanyan
#8 Working for me, thank you very much

Laptop: Asus VivoBook M1603Q, 
Processor: AMD® Ryzen 7 5800h with radeon graphics × 16
OS: Linux Ubuntu 22.04.2 LTS

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

Title:
  Ubuntu 22.04 not waking up after second suspend

Status in linux-signed-hwe-5.19 package in Ubuntu:
  Confirmed

Bug description:
  After the first suspend it wakes up just fine - it's the second
  suspend after which the screen stays blank and keyboard doesn't react
  (although the power LED starts glowing). It happens if I close the
  laptop's lid or do a manual suspend via the system menu. It happens
  only recently (I think after some kernel update, but I'm not sure
  about this) - before it worked fine for month (since I installed
  Ubuntu).

  I have a recent Thinkpad T14s with a Ryzen CPU, Ubuntu 22.04 is the
  only OS (if that's important).

  What I tried:

  * turn off security chip in the BIOS (https://askubuntu.com/a/1412049/424896)
  * turn off Wayland and enable X11 (https://askubuntu.com/a/1412032/424896)
  * I looked through the logs in /var/log but couldn't find anything obvious to 
me (but I'm not a Linux guru).

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.19.0-32-generic 5.19.0-32.33~22.04.1
  ProcVersionSignature: Ubuntu 5.19.0-32.33~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-32-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Tue Feb 28 11:02:36 2023
  InstallationDate: Installed on 2022-06-14 (258 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  SourcePackage: linux-signed-hwe-5.19
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2019131] Re: Add PPIN support for Intel EMR cpu

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

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

Title:
  Add  PPIN support for Intel EMR cpu

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  Fix Committed

Bug description:
  SRU Justification
  [Impact]
  Intel has introduced support for their new Emerald Rapids CPU.
  It was backported to Jammy in #lp2015372 and in #lp2015855.

  The remaining feature needed to fully support EMR is PPIN (the Protected 
Processor Inventory/Identification Number).
  This was recently pushed to upstream in 6.4 in commit 
36168bc061b4368ad19e82b06a6463c95d3bb9a7.
  The change is very straightforward, it adds a new entry for EMERALDRAPIDS_X 
in the cpuids table where cpus that support ppin are listed. The table is then 
used in `ppin_init`.

  In Jammy, this implementation is missing. Both Amd and Intel have their own 
implementation which is doing pretty much the same. Instead of a list of cpus 
supported, a switch case is used instead in their init functions 
(amd_detect_ppin and intel_ppin_init).
  To reduce duplication of code and to help backport smoothly the new addition 
of EMR, commit 0dcab41d3487acadf64d0667398e032341bd9918
  “x86/cpu: Merge Intel and AMD ppin_init() functions” was backported too.

  Thus commits: 
  - 0dcab41d3487acadf64d0667398e032341bd9918: "x86/cpu: Merge Intel and AMD 
ppin_init() functions"
  - 36168bc061b4368ad19e82b06a6463c95d3bb9a7: "x86/cpu: Add Xeon Emerald Rapids 
to list of CPUs that support PPIN"
  are needed to support PPIN for EMR.

  [Testing]
   Kernel was built on cbd and boot tested on a VM.

  [Regression potential]
   Very low, it is a small refactor that removes duplication and it should not 
affect the functionality.

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


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


[Kernel-packages] [Bug 2019228] [NEW] linux-generic-hwe-22.04 with kernel 5.19.0-41 doesn't power down notebook after hibernating

2023-05-11 Thread spi
Public bug reported:

--- system information
Dell XPS 9310

Description:Ubuntu 22.04.2 LTS
Release:22.04

--- bug description
With linux-image-5.15.0-71-generic the notebook hibernates (aka writes memory 
to swap disk) and powers down. Pressing the power button turns the system back 
on and it resumes from disk.

With linux-generic-hwe-22.04 and latest kernel 5.19.0-41 installed the
system hibernates but does not power down after hibernation. System
can't be turned on by pressing power button - instead it needs to be
powered down manually first (by pressing the power button for a longer
time). After that it can be powered up again and resumes from disk
correctly. The HWE kernel seems just to not power off the system after
hibernation.

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

** Description changed:

  --- system information
  Dell XPS 9310
  
  Description:Ubuntu 22.04.2 LTS
  Release:22.04
  
  --- bug description
- With linux-image-5.15.0-71-generic the notebook hibernates (aka writes memory 
to swap disk) and power downs. Pressing the power button turns the system back 
on and it resumes from disk.
+ With linux-image-5.15.0-71-generic the notebook hibernates (aka writes memory 
to swap disk) and powers down. Pressing the power button turns the system back 
on and it resumes from disk.
  
  With linux-generic-hwe-22.04 and latest kernel 5.19.0-41 installed the
  system hibernates but does not power down after hibernation. System
  can't be turned on by pressing power button - instead it needs to be
  powered down manually first (by pressing the power button for a longer
  time). After that it can be powered up again and resumes from disk
  correctly. The HWE kernel seems just to not power off the system after
  hibernation.

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

Title:
  linux-generic-hwe-22.04 with kernel 5.19.0-41 doesn't power down
  notebook after hibernating

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

Bug description:
  --- system information
  Dell XPS 9310

  Description:Ubuntu 22.04.2 LTS
  Release:22.04

  --- bug description
  With linux-image-5.15.0-71-generic the notebook hibernates (aka writes memory 
to swap disk) and powers down. Pressing the power button turns the system back 
on and it resumes from disk.

  With linux-generic-hwe-22.04 and latest kernel 5.19.0-41 installed the
  system hibernates but does not power down after hibernation. System
  can't be turned on by pressing power button - instead it needs to be
  powered down manually first (by pressing the power button for a longer
  time). After that it can be powered up again and resumes from disk
  correctly. The HWE kernel seems just to not power off the system after
  hibernation.

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


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


[Kernel-packages] [Bug 2016269] Re: conntrack mark is not advertised via netlink

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  conntrack mark is not advertised via netlink

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  SRU justification sent to ML:

  [Impact]
  There was a commit 95fcb42e5f20
  ("netfilter: ctnetlink: fix compilation warning after data race fixes in ct 
mark")
  that introduces a regression where the "mark" variable is no longer
  dumped in netlink netfilter conntrack messages, which userspace tools use
  to mark and track connections.

  [Fix]
  Introduce the upstream fix 9f7dd42f0db1
  ("netfilter: ctnetlink: revert to dumping mark regardless of event type")
  that always dumps the 'mark' variable for conntrack entries.
  This fix has also landed in 5.15 upstream stable.

  [Test]
  Run 'conntrack -E' and check the output of connection entries.

  The 'mark' variable should now be present in connection entries after
  the fix.

  before fix:
  > tcp 6 2 ESTABLISHED src=10.100.0.1 dst=10.200.0.1 sport=6789 dport=12345 
src=10.200.0.1 dst=10.100.0.1 sport=12345 dport=6789 [ASSURED] use=1
  after fix:
  > tcp 6 2 ESTABLISHED src=10.100.0.1 dst=10.200.0.1 sport=6789 dport=12345 
src=10.200.0.1 dst=10.100.0.1 sport=12345 dport=6789 [ASSURED] mark=0 use=1

  [Where problems could occur]
  The fixes are pretty straight forward so regression potential should be
  minimal. 


  
  

  [Impact]

  The last merge of the v5.15 stable (see
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2003134) has
  introduced a bug on netlink netfilter conntrack messages.

  The problematic commit is 95fcb42e5f20 ("netfilter: ctnetlink: fix 
compilation warning after data race fixes in ct mark"):
  
https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy/commit/?id=95fcb42e5f20

  This bug has been fixed in upstream commit 9f7dd42f0db1 ("netfilter: 
ctnetlink: revert to dumping mark regardless of event type"):
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9f7dd42f0db1

  which has been backported in v5.15.103:
  
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=bef8cf77e21c

  [Test Case]

  Run 'conntrack -E' and check the output.

  Before the problematic commit:
  > tcp  6 2 ESTABLISHED src=10.100.0.1 dst=10.200.0.1 sport=6789 
dport=12345 src=10.200.0.1 dst=10.100.0.1 sport=12345 dport=6789 [ASSURED] 
mark=0 use=1

  'mark=' is seen on connrtack event

  after:
  > tcp  6 2 ESTABLISHED src=10.100.0.1 dst=10.200.0.1 sport=6789 
dport=12345 src=10.200.0.1 dst=10.100.0.1 sport=12345 dport=6789 [ASSURED] use=1

  => 'mark=' is not seen.

  [Regression Potential]

  The patch is quite simple. It has been backported in the official 5.15
  stable. The risk of regression should be contained.

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


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


[Kernel-packages] [Bug 2016186] Re: 5.19 not reporting cgroups v1 blkio.throttle.io_serviced

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Kinetic)
   Status: Incomplete => Fix Committed

** Changed in: linux (Ubuntu Lunar)
   Status: Incomplete => Fix Committed

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

Title:
  5.19 not reporting cgroups v1 blkio.throttle.io_serviced

Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Kinetic:
  Fix Committed
Status in linux source package in Lunar:
  Fix Committed
Status in linux source package in Mantic:
  Incomplete

Bug description:
  [Impact]

  Commit f382fb0bcef4 ("block: remove legacy IO schedulers") introduced
  a behavior change in the blkio throttle cgroup subsystem: IO
  statistics are not reported anymore unless a throttling rule is
  explicitly defined, because the current code only counts bios that are
  actually throttled.

  This behavior change is potentially breaking some user-space 
  applications that are relying on the old behavior (see original bug 
  report below).

  [Test case]

   - mount cgroup v1
   - create a blkio cgroup
   - move a task into the blkio cgroup
   - perform some I/O (i.e., dd)
   - read the IO stats for the cgroup (blkio.throttle.io_serviced and 
blkio.throttle.io_service_bytes in cgroupfs)
   - IO stats are all 0, unless a throttle rule is defined

  Previous behavior (kernel 5.15) was showing I/O statistics even
  without throttling rules defined.

  [Fix]

  Apply / backport this fix:

  
https://lore.kernel.org/lkml/20230507170631.89607-1-hanjinke@bytedance.com/t/

  [Regression potential]

  The fix is affecting the block IO cgroup subsystem, we may see
  potential regressions in this particular cgroup subsystem with this
  fix applied.

  [Original bug report]

  Hi,

  I'm still investigating but, am a bit stuck. Here's what I've found so
  far.

  Today I've upgraded some nodes in AWS EC2 from the previous v5.15
  linux-aws package to the recently pusblished v5.19 package and
  rebooted. It seems that even when there's disk activity, the files:

  /sys/fs/cgroup/blkio/blkio.throttle.io_serviced
  /sys/fs/cgroup/blkio/blkio.throttle.io_service_bytes

  Are only ever populated with 0's. Prior on v5.15 these would reflect
  the actual disk usage. No other system configuration changes were
  applied just the kernel upgrade and reboot. I've also verified that
  simply rebooting a v5.15 where this does work doesn't break the
  reporting. These EC2 instances are running with cgroups v1 due to
  other compatability issues and I suspect that might be the issue. So
  far, I cannot find any differences. mtab shows the same v1 mount
  setup, the kernel options match betwen v5.15 and v5.19.

  I'm more than happy to fetch whatever info would help out here. I'd
  love to get 5.19 working for us but, we really need the data from
  these files.

  Info:
  Prior version that works: Linux ip-10-128-168-154 5.15.0-1031-aws #35-Ubuntu 
SMP Fri Feb 10 02:07:18 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
  Upgraded version that's broken: Linux ip-10-128-166-219 5.19.0-1022-aws 
#23~22.04.1-Ubuntu SMP Fri Mar 17 15:38:24 UTC 2023 x86_64 x86_64 x86_64 
GNU/Linux

  EC2 instances built off of the published 22.04 LTS AMI in us-east-1.

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


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


[Kernel-packages] [Bug 1969959] Re: [nouveau] Weird colors after startup (Ubuntu 22.04)

2023-05-11 Thread Ashu
I am facing the same issue. 
Nividia GTX 1050 Ti. Using Proprietary and tested drivers under Additional 
drivers.
Asked the question here:
https://askubuntu.com/questions/1467556/ubuntu-22-04-lts-yellowish-screen


** Attachment added: "IMG_20230511_100639_new.jpg"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1969959/+attachment/5672516/+files/IMG_20230511_100639_new.jpg

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

Title:
  [nouveau] Weird colors after startup (Ubuntu 22.04)

Status in linux package in Ubuntu:
  Confirmed
Status in linux-hwe-5.19 package in Ubuntu:
  Confirmed
Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  [Workaround/Fix]

  1. When starting the Ubuntu live image, select the option 'Ubuntu
  (safe graphics)' from the boot menu.

  2. During installation be sure to select the third-party software
  option checkbox in order to get the right Nvidia driver installed.

  [Original Description]

  I started Ubuntu 22.04 from a live pen drive. Everything seems fine,
  the usual screen with the options to "Try Ubuntu" or "Install" Ubuntu
  appears. When hitting "Try Ubuntu", the screen turns black for a
  couple of seconds and then re-appears in yellow and brown colors,
  feels like a 4 color display (white, black, yellow and orange) and I
  can hardly see anything - sending this bug report from that live
  system right after starting it up.

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: xorg 1:7.7+23ubuntu2
  ProcVersionSignature: Ubuntu 5.15.0-25.25-generic 5.15.30
  Uname: Linux 5.15.0-25-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu82
  Architecture: amd64
  BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
  CasperMD5CheckResult: pass
  CasperVersion: 1.470
  CompositorRunning: None
  CurrentDesktop: ubuntu:GNOME
  Date: Fri Apr 22 15:54:05 2022
  DistUpgraded: Fresh install
  DistroCodename: jammy
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes
  GraphicsCard:
   NVIDIA Corporation TU117 [GeForce GTX 1650] [10de:1f82] (rev a1) (prog-if 00 
[VGA controller])
     Subsystem: NVIDIA Corporation TU117 [GeForce GTX 1650] [10de:1f82]
   Advanced Micro Devices, Inc. [AMD/ATI] Renoir [1002:1636] (rev d9) (prog-if 
00 [VGA controller])
     Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Renoir [1002:1636]
  LiveMediaBuild: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 (20220419)
  MachineType: Micro-Star International Co., Ltd. MS-7C56
  ProcEnviron:
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/casper/vmlinuz 
file=/cdrom/preseed/username.seed maybe-ubiquity quiet splash ---
  SourcePackage: xorg
  Symptom: display
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/30/2020
  dmi.bios.release: 5.17
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: A.40
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: B550-A PRO (MS-7C56)
  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:bvnAmericanMegatrendsInc.:bvrA.40:bd10/30/2020:br5.17:svnMicro-StarInternationalCo.,Ltd.:pnMS-7C56:pvr1.0:rvnMicro-StarInternationalCo.,Ltd.:rnB550-APRO(MS-7C56):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-7C56
  dmi.product.sku: To be filled by O.E.M.
  dmi.product.version: 1.0
  dmi.sys.vendor: Micro-Star International Co., Ltd.
  version.compiz: compiz N/A
  version.libdrm2: libdrm2 2.4.110-1ubuntu1
  version.libgl1-mesa-dri: libgl1-mesa-dri 22.0.1-1ubuntu2
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core 2:21.1.3-2ubuntu2
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:19.1.0-2build3
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20210115-1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.17-2build1

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


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


[Kernel-packages] [Bug 2019222] Re: [IOTG][RPL] Integrated TSN controller (stmmac) driver enabling

2023-05-11 Thread Philip Cox
After applying all of the patches, it ended up that only 4 are needed,
as the rest are already contained in the kernel (from the SRU process,
from other cherry-picks, or from upstream changes).

** Also affects: linux-intel-iotg (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Changed in: linux-intel-iotg (Ubuntu Jammy)
 Assignee: (unassigned) => Philip Cox (philcox)

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

** Changed in: linux-intel-iotg (Ubuntu Jammy)
   Status: New => In Progress

** Changed in: linux-intel-iotg (Ubuntu Jammy)
   Importance: Undecided => High

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

Title:
  [IOTG][RPL] Integrated TSN controller (stmmac) driver enabling

Status in linux-intel-iotg package in Ubuntu:
  In Progress
Status in linux-intel-iotg source package in Jammy:
  In Progress

Bug description:
  This is a public version of https://bugs.launchpad.net/bugs/1996592

  -

  Description
  Enable Integrated TSN controller (stmmac) driver

  Hardware: Raptor Lake

  Target Release: 22.04
  Target Kernel: TBD

  External links:
  
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.19-linux-221019T120731Z

  0001-igc-Disable-PTM-sequences-when-interface-goes-down.tsn
  0001-taprio-Add-support-for-frame-preemption-offload.tsn
  0002-xsk-add-txtime-field-in-xdp_desc-struct.tsn
  0003-tc-Add-index-of-FPE-QMASK.tsn
  0004-net-pcs-xpcs-enable-xpcs-reset-skipping.tsn
  0007-net-stmmac-add-FPE-preempt-setting-for-TxQ-preemptible.tsn
  0008-net-stmmac-support-recalculating-of-CBS-idle-slope-und.tsn
  0009-net-stmmac-Add-module-param-to-del-keep-est-hw-conf.tsn
  0011-net-stmmac-restructure-Rx-Tx-hardware-timestamping-fun.tsn
  0013-net-stmmac-introduce-AF_XDP-ZC-TX-HW-timestamps.tsn
  0018-net-stmmac-skip-runtime-handling-in-mdio-read-write.tsn
  0019-net-stmmac-Add-support-for-HW-accelerated-VLAN-strippi.tsn
  0025-net-phy-add-wrapper-function-for-setup-master-slave-se.tsn
  0027-net-stmmac-Adjust-mac_capabilities-for-Intel-mGbE-2.5G.tsn
  0031-net-stmmac-fix-deadlock-caused-by-taking-RTNL-in-RPM-r.tsn
  0034-stmmac-intel-Separate-ADL-N-and-RPL-P-device-ID-from-T.tsn
  0038-stmmac-intel-skip-xpcs-reset-for-2.5Gbps-on-Intel-Alde.tsn
  0001-net-phy-marvell10g-Add-check-after-reading-phy-interru.tsn
  0002-taprio-Add-check-for-NULL-struct-before-accessing-the-.tsn
  0001-Revert-igc-Disable-PTM-sequences-when-interface-goes-d.tsn
  0002-igc-Set-the-RX-packet-buffer-size-for-TSN-mode.tsn
  0003-igc-Only-dump-registers-if-configured-to-dump-HW-infor.tsn
  0004-ethtool-Add-support-for-configuring-and-verifying-fram.tsn
  0005-core-Introduce-netdev_tc_map_to_queue_mask.tsn
  0006-taprio-Replace-tc_map_to_queue_mask.tsn
  0007-mqprio-Add-support-for-frame-preemption-offload.tsn
  0008-igc-Add-support-for-enabling-frame-preemption-via-etht.tsn
  0009-ethtool-Add-support-for-configuring-frame-preemption-v.tsn
  0010-igc-Add-support-for-TC_SETUP_PREEMPT.tsn
  0011-igc-Add-support-for-setting-frame-preemption-configura.tsn
  0012-igc-Add-support-for-Frame-Preemption-verification.tsn
  0013-igc-Add-support-for-exposing-frame-preemption-stats-re.tsn
  0014-igc-Optimize-the-packet-buffer-utilization.tsn
  0015-igc-Add-support-for-enabling-all-packets-to-be-receive.tsn
  0016-igc-Fix-race-condition-in-PTP-Tx-code.tsn
  0017-igc-Add-support-for-DMA-timestamp-for-non-PTP-packets.tsn
  0018-igc-Correct-the-launchtime-offset.tsn
  0019-igc-Export-LEDs.tsn --> cf8331825a8d10e46fa574fdf015a65cb5a6db86 
(v5.15-rc1)
  0020-bpf-add-btf-register-unregister-API.tsn
  0021-net-core-XDP-metadata-BTF-netlink-API.tsn
  0022-rtnetlink-Fix-unchecked-return-value-of-dev_xdp_query_.tsn
  0023-rtnetlink-Add-return-value-check.tsn
  0024-tools-bpf-Query-XDP-metadata-BTF-ID.tsn
  0025-tools-bpf-Add-xdp-set-command-for-md-btf.tsn
  0026-igc-Add-BTF-based-metadata-for-XDP.tsn
  0027-igc-Enable-HW-RX-Timestamp-for-AF_XDP-ZC.tsn
  0028-igc-Enable-HW-TX-Timestamp-for-AF_XDP-ZC.tsn
  0029-igc-Enable-trace-for-HW-TX-Timestamp-AF_XDP-ZC.tsn
  0030-igc-Remove-the-CONFIG_DEBUG_MISC-condition-for-trace.tsn
  0031-igc-Take-care-of-DMA-timestamp-rollover.tsn
  0032-igc-Use-strict-cycles-for-LaunchTime-mode.tsn
  0033-igc-Fix-sending-packets-too-early.tsn
  0034-igc-Add-SO_TXTIME-for-AF_XDP-ZC.tsn
  0035-igc-Fix-scheduling-multiple-packets-for-next-cycle.tsn
  0036-igc-Add-context-for-empty-packet.tsn
  0037-igc-Reodering-the-empty-packet-buffers-and-descriptors.tsn
  0038-igc-Add-trace-for-launchtime-calculation-corner-case.tsn
  0039-igc-Configure-BaseT-after-start-and-end-time-queue-reg.tsn
  0040-igc-Remove-PTM-trigger-from-initialization-sequence.tsn
  0001-net-stmmac-update-MAC-capabilities-when-tx-queues-are-.tsn
  0002-net-stmmac-add-check-for-2.5G-mode-to-prevent-MAC-capa.tsn
  0001-Revert-tc-Add-index-of-FPE-QMASK.tsn
  

[Kernel-packages] [Bug 2008751] Re: [SRU] Backport request for hpwdt from upstream 6.1 to Jammy

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  [SRU] Backport request for hpwdt from upstream 6.1 to Jammy

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]

  Please pick up the latest hpwdt from the upstream 6.1 kernel for
  Jammy. This version enables hpwdt on RL300 aarch64.

  [Fix]
  ed835d8171fc watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING

  891862d5ba11 watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems.

  [Test Plan]
  Boot system with the hpwdt enabled on an arm64 system

  [Where Problems Could Occur]

  Regression Risk is Low

  [Other Info]
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2008751_hpwdt_1

  Kinetic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/kinetic/+ref/lp_2008751_hpwdt_kinetic_1

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


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


[Kernel-packages] [Bug 1778891] Re: KVM Instance booting from volume stacktraces

2023-05-11 Thread James Falcon
Tracked in Github Issues as https://github.com/canonical/cloud-
init/issues/3199

** Bug watch added: github.com/canonical/cloud-init/issues #3199
   https://github.com/canonical/cloud-init/issues/3199

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

Title:
  KVM Instance booting from volume stacktraces

Status in cloud-init:
  Invalid
Status in cloud-init package in Ubuntu:
  Invalid
Status in linux package in Ubuntu:
  Expired

Bug description:
  I've booted two instances from the same backing image (http://cloud-
  images.ubuntu.com/trusty/current/trusty-server-cloudimg-
  amd64-disk1.img), one using locally attached storage for the boot
  volume, one using a Cinder volume. The instance booted from cinder
  volume  shows a cloud-init trace in the console log, while the local
  instance works correctly.

  Instance booted from volume:

  Cloud-init v. 0.7.5 running 'init' at Wed, 27 Jun 2018 09:43:10 +. Up 
15.61 seconds.
  ci-info: ++Net device info+++
  ci-info: ++--+--+---+---+
  ci-info: | Device |  Up  |   Address|  Mask | Hw-Address|
  ci-info: ++--+--+---+---+
  ci-info: |   lo   | True |  127.0.0.1   |   255.0.0.0   | . |
  ci-info: |  eth0  | True | 192.168.21.8 | 255.255.255.0 | fa:16:3e:aa:c3:54 |
  ci-info: ++--+--+---+---+
  ci-info: +++Route 
info+++
  ci-info: 
+---+-+--+-+---+---+
  ci-info: | Route |   Destination   |   Gateway| Genmask | 
Interface | Flags |
  ci-info: 
+---+-+--+-+---+---+
  ci-info: |   0   | 0.0.0.0 | 192.168.21.1 | 0.0.0.0 |eth0 
  |   UG  |
  ci-info: |   1   | 169.254.169.254 | 192.168.21.1 | 255.255.255.255 |eth0 
  |  UGH  |
  ci-info: |   2   |   192.168.21.0  |   0.0.0.0|  255.255.255.0  |eth0 
  |   U   |
  ci-info: 
+---+-+--+-+---+---+
  dmesg: write failed: Broken pipe
  Generating public/private rsa key pair.
  Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
  Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
  The key fingerprint is:
  c7:fb:76:96:ae:aa:6e:73:b1:28:ea:38:40:fa:34:75 root@20180627093956
  The key's randomart image is:
  +--[ RSA 2048]+
  | |
  | |
  | |
  | .  . E  .   |
  |o  . .  S o  |
  |o o  ... |
  | + . ..o   . |[   36.260523] general protection fault:  [#1] SMP 
  [   36.260523] Modules linked in: dm_crypt kvm_intel kvm crct10dif_pclmul 
crc32_pclmul ghash_clmulni_intel serio_raw aesni_intel aes_x86_64 glue_helper 
lrw gf128mul ablk_helper cryptd psmouse floppy
  [   36.260523] CPU: 0 PID: 1 Comm: init Not tainted 3.13.0-151-generic 
#201-Ubuntu
  [   36.260523] Hardware name: OpenStack Foundation OpenStack Nova, BIOS 
1.10.2-1ubuntu1~cloud0 04/01/2014
  [   36.260523] task: 88007c088000 ti: 88007c086000 task.ti: 
88007c086000
  [   36.260523] RIP: 0010:[]  [] 
switch_mm_irqs_off+0xbb/0x120
  [   36.260523] RSP: 0018:88007c087ee0  EFLAGS: 00010046
  [   36.260523] RAX: 0001 RBX: 880037a54700 RCX: 
0049
  [   36.260523] RDX:  RSI: 880037a54700 RDI: 
880037a54700
  [   36.260523] RBP: 88007c087f00 R08:  R09: 

  [   36.260523] R10: 0001 R11: 88007b666780 R12: 
8800378d6700
  [   36.260523] R13:  R14: 880037653000 R15: 
880037653000
  [   36.260523] FS:  7f81d6e9a840() GS:88007fc0() 
knlGS:
  [   36.260523] CS:  0010 DS:  ES:  CR0: 80050033
  [   36.260523] CR2: 7ffcc8f0fec0 CR3: 37924000 CR4: 
00360670
  [   36.260523] DR0:  DR1:  DR2: 

  [   36.260523] DR3:  DR6: fffe0ff0 DR7: 
0400
  [   36.260523] Stack:
  [   36.260523]  8800378d6700 88007fc13b40 880037a54700 

  [   36.260523]  88007c087f60 8173c613 88007c088000 
00013b40
  [   36.260523]  88007c087fd8 00013b40 88007c088000 
7ffcc8f10ae0
  [   36.260523] Call Trace:
  [   36.260523]  [] __schedule+0x2b3/0x750
  [   36.260523]  [] schedule_user+0x2e/0xa0
  [   36.260523]  [] sysret_careful+0x14/0x1a
  [   36.260523] Code: 24 e0 02 00 00 75 28 5b 41 5c 41 5d 41 5e 5d c3 48 8b 05 
a5 58 cb 00 48 c1 e8 33 a8 01 74 d7 31 d2 b8 01 00 00 00 b9 49 00 00 00 <0f> 30 
eb c7 

[Kernel-packages] [Bug 2019222] [NEW] [IOTG][RPL] Integrated TSN controller (stmmac) driver enabling

2023-05-11 Thread Philip Cox
Public bug reported:

This is a public version of https://bugs.launchpad.net/bugs/1996592

-

Description
Enable Integrated TSN controller (stmmac) driver

Hardware: Raptor Lake

Target Release: 22.04
Target Kernel: TBD

External links:
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.19-linux-221019T120731Z

0001-igc-Disable-PTM-sequences-when-interface-goes-down.tsn
0001-taprio-Add-support-for-frame-preemption-offload.tsn
0002-xsk-add-txtime-field-in-xdp_desc-struct.tsn
0003-tc-Add-index-of-FPE-QMASK.tsn
0004-net-pcs-xpcs-enable-xpcs-reset-skipping.tsn
0007-net-stmmac-add-FPE-preempt-setting-for-TxQ-preemptible.tsn
0008-net-stmmac-support-recalculating-of-CBS-idle-slope-und.tsn
0009-net-stmmac-Add-module-param-to-del-keep-est-hw-conf.tsn
0011-net-stmmac-restructure-Rx-Tx-hardware-timestamping-fun.tsn
0013-net-stmmac-introduce-AF_XDP-ZC-TX-HW-timestamps.tsn
0018-net-stmmac-skip-runtime-handling-in-mdio-read-write.tsn
0019-net-stmmac-Add-support-for-HW-accelerated-VLAN-strippi.tsn
0025-net-phy-add-wrapper-function-for-setup-master-slave-se.tsn
0027-net-stmmac-Adjust-mac_capabilities-for-Intel-mGbE-2.5G.tsn
0031-net-stmmac-fix-deadlock-caused-by-taking-RTNL-in-RPM-r.tsn
0034-stmmac-intel-Separate-ADL-N-and-RPL-P-device-ID-from-T.tsn
0038-stmmac-intel-skip-xpcs-reset-for-2.5Gbps-on-Intel-Alde.tsn
0001-net-phy-marvell10g-Add-check-after-reading-phy-interru.tsn
0002-taprio-Add-check-for-NULL-struct-before-accessing-the-.tsn
0001-Revert-igc-Disable-PTM-sequences-when-interface-goes-d.tsn
0002-igc-Set-the-RX-packet-buffer-size-for-TSN-mode.tsn
0003-igc-Only-dump-registers-if-configured-to-dump-HW-infor.tsn
0004-ethtool-Add-support-for-configuring-and-verifying-fram.tsn
0005-core-Introduce-netdev_tc_map_to_queue_mask.tsn
0006-taprio-Replace-tc_map_to_queue_mask.tsn
0007-mqprio-Add-support-for-frame-preemption-offload.tsn
0008-igc-Add-support-for-enabling-frame-preemption-via-etht.tsn
0009-ethtool-Add-support-for-configuring-frame-preemption-v.tsn
0010-igc-Add-support-for-TC_SETUP_PREEMPT.tsn
0011-igc-Add-support-for-setting-frame-preemption-configura.tsn
0012-igc-Add-support-for-Frame-Preemption-verification.tsn
0013-igc-Add-support-for-exposing-frame-preemption-stats-re.tsn
0014-igc-Optimize-the-packet-buffer-utilization.tsn
0015-igc-Add-support-for-enabling-all-packets-to-be-receive.tsn
0016-igc-Fix-race-condition-in-PTP-Tx-code.tsn
0017-igc-Add-support-for-DMA-timestamp-for-non-PTP-packets.tsn
0018-igc-Correct-the-launchtime-offset.tsn
0019-igc-Export-LEDs.tsn --> cf8331825a8d10e46fa574fdf015a65cb5a6db86 
(v5.15-rc1)
0020-bpf-add-btf-register-unregister-API.tsn
0021-net-core-XDP-metadata-BTF-netlink-API.tsn
0022-rtnetlink-Fix-unchecked-return-value-of-dev_xdp_query_.tsn
0023-rtnetlink-Add-return-value-check.tsn
0024-tools-bpf-Query-XDP-metadata-BTF-ID.tsn
0025-tools-bpf-Add-xdp-set-command-for-md-btf.tsn
0026-igc-Add-BTF-based-metadata-for-XDP.tsn
0027-igc-Enable-HW-RX-Timestamp-for-AF_XDP-ZC.tsn
0028-igc-Enable-HW-TX-Timestamp-for-AF_XDP-ZC.tsn
0029-igc-Enable-trace-for-HW-TX-Timestamp-AF_XDP-ZC.tsn
0030-igc-Remove-the-CONFIG_DEBUG_MISC-condition-for-trace.tsn
0031-igc-Take-care-of-DMA-timestamp-rollover.tsn
0032-igc-Use-strict-cycles-for-LaunchTime-mode.tsn
0033-igc-Fix-sending-packets-too-early.tsn
0034-igc-Add-SO_TXTIME-for-AF_XDP-ZC.tsn
0035-igc-Fix-scheduling-multiple-packets-for-next-cycle.tsn
0036-igc-Add-context-for-empty-packet.tsn
0037-igc-Reodering-the-empty-packet-buffers-and-descriptors.tsn
0038-igc-Add-trace-for-launchtime-calculation-corner-case.tsn
0039-igc-Configure-BaseT-after-start-and-end-time-queue-reg.tsn
0040-igc-Remove-PTM-trigger-from-initialization-sequence.tsn
0001-net-stmmac-update-MAC-capabilities-when-tx-queues-are-.tsn
0002-net-stmmac-add-check-for-2.5G-mode-to-prevent-MAC-capa.tsn
0001-Revert-tc-Add-index-of-FPE-QMASK.tsn
0002-Revert-ethtool-Add-support-for-configuring-and-verifyi.tsn
0003-Revert-ethtool-Add-support-for-configuring-frame-preem.tsn
0004-ethtool-Add-support-for-configuring-frame-preemption.tsn
0005-ethtool-Add-support-for-Frame-Preemption-verification.tsn
0001-net-stmmac-check-supported-linkmode-request-for-set-ee.tsn

** Affects: linux-intel-iotg (Ubuntu)
 Importance: Undecided
 Assignee: Philip Cox (philcox)
 Status: New

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

Title:
  [IOTG][RPL] Integrated TSN controller (stmmac) driver enabling

Status in linux-intel-iotg package in Ubuntu:
  New

Bug description:
  This is a public version of https://bugs.launchpad.net/bugs/1996592

  -

  Description
  Enable Integrated TSN controller (stmmac) driver

  Hardware: Raptor Lake

  Target Release: 22.04
  Target Kernel: TBD

  External links:
  
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.19-linux-221019T120731Z

  0001-igc-Disable-PTM-sequences-when-interface-goes-down.tsn

Re: [Kernel-packages] [Bug 2009136] Re: No HDMI audio under 5.19.0-35 & -37 (regression from -32)

2023-05-11 Thread koba
@Wiktor,
it still in Jammy-proposed queue, would you like to enable proposed?

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

Title:
  No HDMI audio under 5.19.0-35 & -37 (regression from -32)

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Jammy:
  Invalid
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  [Impact]
  For amdgpu/i915, hdmi audio output device has disappeared.

  [Fix]
  The latest fix for the non-contiguous memalloc helper changed the
  allocation method for a non-IOMMU system to use only the fallback
  allocator.  This should have worked, but it caused a problem sometimes
  when too many non-contiguous pages are allocated that can't be treated
  by HD-audio controller.
  
  As a quirk workaround, go back to the original strategy: use
  dma_alloc_noncontiguous() at first, and apply the fallback only when
  it fails, but only for non-IOMMU case

  [Test Case]
  1. boot with kernel applied the patches.
  2. check the cards in /proc/asound/cards.
 Get the hdmi cards.

   0 [PCH ]: HDA-Intel - HDA Intel PCH
HDA Intel PCH at 0xe232 irq 137
   1 [HDMI ]: HDA-Intel - HDA ATI HDMI
HDA ATI HDMI at 0xe226 irq 134

  [Where problems could occur]
  Low, this is just workaround and may have a better solution in the future.

  [Misc]
  All patches has been landed on OEM-6.1 and lunar.

  ~~
  CLARIFICATION: Just to avoid any confusion for those coming to this bug 
report; the "Jammy: invalid" status above does *not* mean that this bug doesn't 
affect jammy -- it does, and the kernel team is aware of this. All it reflects 
is that the fix has to go into the kinetic kernel package which will then flow 
into the kernel-hwe package implicitly.

  Currently known affected cards:

  * HD 7700 (comment 8)
  * R9 290 (comment 21)
  * RX 550 (LP: #2012141, and comment 27)
  * RX 570 (mine)
  * RX 580 (LP: #2009276, and comment 28)
  * WX 3200 (comment 29)
  * RX 6600 (LP: #2009542)
  * RX 6700 (LP: #2009275)

  [ Original Description ]

  After upgrading my Ubuntu jammy (22.04) desktop to the -35 release of
  the kernel, I found my HDMI audio output device had disappeared.
  Reverting to the -32 release caused it to appear again (hence why I'm
  filing the bug against the kernel rather than pulseaudio). I'm
  attaching the dmesg output from immediately after booting each kernel,
  but after a bit of trimming and diffing I *think* the following lines
  are the salient ones:

  input: HDA ATI HDMI HDMI/DP,pcm=3 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input12
  input: HDA ATI HDMI HDMI/DP,pcm=7 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input13
  input: HDA ATI HDMI HDMI/DP,pcm=8 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input14
  input: HDA ATI HDMI HDMI/DP,pcm=9 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input15
  input: HDA ATI HDMI HDMI/DP,pcm=10 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input16
  input: HDA ATI HDMI HDMI/DP,pcm=11 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input17
  snd_hda_intel :2b:00.1: bound :2b:00.0 (ops 
amdgpu_dm_audio_component_bind_ops [amdgpu])

  These lines appear in the dmesg of the -32 kernel, but not in the -35
  kernel's log. Meanwhile, the following lines appear in the -35
  kernel's log but not in the -32:

  hdaudio hdaudioC0D0: no AFG or MFG node found
  snd_hda_intel :2b:00.1: no codecs initialized

  I'll also attach the output of "pactl list" under each kernel (this
  shows the HDMI audio sink showing up under -32, but not -35) just in
  case that helps shed any light on things.

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


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


[Kernel-packages] [Bug 2018979] Re: Update the 525 UDA NVIDIA driver series in Bionic, Focal, and Kinetic, Lunar

2023-05-11 Thread Alberto Milone
** Also affects: nvidia-graphics-drivers-525 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: nvidia-graphics-drivers-525 (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: nvidia-graphics-drivers-525 (Ubuntu Lunar)
   Importance: Undecided
   Status: New

** Also affects: nvidia-graphics-drivers-525 (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

** Also affects: nvidia-graphics-drivers-525 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Bionic)
   Status: New => In Progress

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Focal)
   Status: New => In Progress

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Jammy)
   Status: New => In Progress

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Kinetic)
   Status: New => In Progress

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Lunar)
   Status: New => In Progress

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Bionic)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Focal)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Jammy)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Kinetic)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Lunar)
 Assignee: (unassigned) => Alberto Milone (albertomilone)

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Bionic)
   Importance: Undecided => High

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Focal)
   Importance: Undecided => High

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Jammy)
   Importance: Undecided => High

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Kinetic)
   Importance: Undecided => High

** Changed in: nvidia-graphics-drivers-525 (Ubuntu Lunar)
   Importance: Undecided => High

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

Title:
  Update the 525 UDA NVIDIA driver series in Bionic, Focal, and Kinetic,
  Lunar

Status in nvidia-graphics-drivers-525 package in Ubuntu:
  In Progress
Status in nvidia-graphics-drivers-525 source package in Bionic:
  In Progress
Status in nvidia-graphics-drivers-525 source package in Focal:
  In Progress
Status in nvidia-graphics-drivers-525 source package in Jammy:
  In Progress
Status in nvidia-graphics-drivers-525 source package in Kinetic:
  In Progress
Status in nvidia-graphics-drivers-525 source package in Lunar:
  In Progress

Bug description:
  [Impact]
  These releases provide both bug fixes and new features, and we would like to
  make sure all of our users have access to these improvements.

  See the changelog entry below for a full list of changes and bugs.

  [Test Case]
  The following development and SRU process was followed:
  https://wiki.ubuntu.com/NVidiaUpdates

  Certification test suite must pass on a range of hardware:
  https://git.launchpad.net/plainbox-provider-sru/tree/units/sru.pxu

  The QA team that executed the tests will be in charge of attaching the
  artifacts and console output of the appropriate run to the bug. nVidia
  maintainers team members will not mark ‘verification-done’ until this
  has happened.

  [Regression Potential]
  In order to mitigate the regression potential, the results of the
  aforementioned system level tests are attached to this bug.

  [Discussion]

  [Changelog]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-525/+bug/2018979/+subscriptions


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


[Kernel-packages] [Bug 2007001] Re: vmwgfx fails to reserve graphics buffer on aarch64 leading to blank display

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  vmwgfx fails to reserve graphics buffer on aarch64 leading to blank
  display

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Kinetic:
  Fix Committed

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

  [Impact]

  Numerous VMWare users have reported that vmwgfx cannot reserve the
  memory region for the graphics framebuffer, leading their VMs to have
  blank screens.

  They see the following in dmesg:

  [ 11.135360] vmwgfx :00:0f.0: BAR 2: can't reserve [mem 
0x7000-0x77ff 64bit pref]
  [ 11.135366] vmwgfx: probe of :00:0f.0 failed with error -16

  And a cat /proc/iomem shows this:

  5000-7fff : PCI Bus :00
7000-77ff : :00:0f.0
  7000-702f : BOOTFB

  The kernel has failed to release this memory region for vmwgfx to
  occupy.

  Most affected users are on aarch64, with the host being Apple silicon
  systems.

  [Fix]

  The regression was introduced by the below commit in
  5.19.0-30-generic:

  commit 5e01376124309b4dbd30d413f43c0d9c2f60edea
  Author: Thomas Zimmermann 
  Date: Mon Jul 18 09:23:18 2022 +0200
  Subject: video/aperture: Disable and unregister sysfb devices via aperture 
helpers
  Link: 
https://github.com/torvalds/linux/commit/5e01376124309b4dbd30d413f43c0d9c2f60edea

  This commit was part of a larger refactoring of the video subsystem,
  and requires the entire series to function correctly. You can review
  the whole series below:

  https://patchwork.freedesktop.org/series/106040/

  The patch series also requires quite a few additional fixups to fix
  bugs introduced by the series, making the size about 15 commits in
  total. The contents of the series don't really fix any bugs, and their
  purpose is to refactor the code for future changes to the fbdev
  subsystem, and really aren't appropriate to be backported to a stable
  kernel series.

  "video/aperture: Disable and unregister sysfb devices via aperture
  helpers" seems to have been selected for -stable by mistake by its
  fixes: tag, and was pulled into upstream stable by a robot with little
  human review.

  The best course of action is to revert. No action needed for Lunar, as
  the entire series is present in that release.

  [Testcase]

  This bug affects users running Ubuntu in VMWare VMs, notably on
  aarch64 devices, like modern Apple computers.

  Start a Kinetic or Jammy-HWE Server or Desktop VM in VMWare Fusion on
  Apple silicon, and see if the display comes up or not.

  Affected users will see a blank screen.

  There is a test kernel available in the following ppa:

  https://launchpad.net/~mruffell/+archive/ubuntu/lp2007001-test

  If you install the test kernel and reboot, you will be able to see the
  screen on your VM like normal.

  [Where problems could occur]

  This commit changes when the sysfb is disabled and memory region for
  the graphics framebuffer is released to the proper device driver.

  If a regression were to occur, then graphics drivers may fail to
  reserve the framebuffer memory, and fail to start, leaving users with
  a blank screen.

  There are no workarounds, other than booting a previous kernel.

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


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


[Kernel-packages] [Bug 2018470] Re: Linux 5.19 amdgpu: NULL pointer on GCN2 and invalid load on GCN1

2023-05-11 Thread Timo Aaltonen
I guess this bug should concentrate on the regression.

** Description changed:

+ [Impact]
+ A regression caused by incomplete stable backports
+ 
+ [Fix]
+ 
+ commit 8273b4048664fff356fd10059033f0e2f5a422a1
+ Author: Arunpravin Paneer Selvam 
+ Date:   Tue Oct 18 07:08:38 2022 -0700
+ 
+ drm/amdgpu: Fix for BO move issue
+ 
+ [Test case]
+ 
+ Install the update, check that display works again on amdgpu
+ 
+ --
+ 
  The day I updated from Ubuntu 22.04 to 22.10 some months ago, I had to
  stick on Linux 5.15 because 5.19 was not working with my computer. The
  last two days I spent time to find a way to run Linux 5.19, and found
  one version working: 5.19.0-23.
  
  Here are the versions I tested:
  
  - 5.19.0-23
  - 5.19.0-29
  - 5.19.0-31
  - 5.19.0-42
  
  In that list, only Linux 5.19.0-23 is working with that computer.
  
  There may be other versions that work I have not tested, but basically
  the breakages occurred after 5.19.0-23.
  
  I face two problems, let's talk about the first one, the graphic one
  still present in 5.19.0-42. It starts to occurs with 5.19.0-31
  (5.19.0-29 is not affected): graphic breaks at the moment it should
  switch from low resolution display to high resolution display at the
  very beginning of startup. The computer is not completely broken, but
  the graphic is dead. X11 cannot start, trying to use the framebuffer,
  meaning the amdgpu driver is not functional).
  
  The second bug is the one I get with the 5.19.0-29 version. Linux
  5.19.0-29 doesn't experience the graphic bug but has another issue that
  makes the computer unusable: some CPU got locked, and some btrfs process
  runs at 100% CPU, syncing never ends, even preventing to reboot. This
  bug is less important because I don't reproduce it on version 5.19.0-42,
  so if 5.19.0-42 fixes the graphic all will be fine.
  
  I have not updated to Ubuntu 23.04 yet because I'm afraid of newer
  kernels from it would leave my computer totally unusable, I have run
  Ubuntu 22.10 with Ubuntu 22.04's 5.15 kernel until today because of that
  fear.
  
  It actually took me two work days to test various combinations to boot
  the computer so I'm sticking on 5.19.0-29 for now, and I have limited
  time to test other options. I also tried various BIOS options, and also
  upgraded the BIOS…, and since that ThreadRipper PRO computer has very
  slow booting BIOS, trying various configurations or software versions
  that requires a reboot quickly eats-up whole hours.
  
  The attached logs may have traces of dkim modules like amdgpu-pro, but
  the first time I experienced the bug I had none of them. I reproduced
  the bug on a 5.19.0-42 kernel free of amdgpu-pro yesterday. I'm simply
  opening the ticket from my working environment, and I decided to not
  spend one more hour just to uninstall amdgpu-pro and reboot only to do
  that ticket.
  
  Here are some details on the hardware:
  
  - MOBO: Gigabyte WRX80-SU8-IPMI rev. 1.0 (BIOS version F5, also named 
WRX80PRO-F1 in dmidecode, dated 08/04/2022) 
https://www.gigabyte.com/Motherboard/WRX80-SU8-IPMI-rev-10
  - RAM: 8× Kingston Server Premier 32GB DDR4 3200 MHz ECC CL22 2Rx8 PC4-25600 
KSM32ED8/32ME 16Gbit Micron E
  - CPU: AMD Ryzen Threadripper PRO 3955WX 16-Cores (Castle Peak, Zen 2)
  - GPU: AMD Radeon R9 390X (Hawaii/Grenada, GCN2, amdgpu driver)
  - GPU: AMD Radeon R7 240 (Oland, GCN1, amdgpu driver)
  - GPU: ASPEED graphic Family rev 41
  
  The ASPEED graphic is a small card integrated in the motherboard and
  part of the BMC, I cannot remove it. This may participate in the
  trouble.
  
  When the graphic works (Linux 5.19.0-23, Linux 5.19.0-29), the boot is
  displayed on all AMD and ASPEED graphic output, then at the moment the
  graphic switches from low resolution to high resolution, the ASPEED
  graphic goes off and the display continue on AMD cards.
  
  When the graphic doesn't work (5.19.0-31, 5.19.0-42), the boot is
  displayed on all AMD and ASPEED graphic output, then at the moment the
  graphic switches from low resolution to high resolution, the AMD cards
  display garbage but the display continue on the ASPEED card. The ASPEED
  card is a very basic integrated card without hardware acceleration and
  featuring only one VGA output so that's unusable. As an additional
  information I know X11 never start on the ASPEED if there are discrete
  cards plugged in (tested last year).
  
  So right now that computer is sticking on Linux 5.19.0-23 which doesn't
  doesn't the graphic and btrfs bugs.
  
  The last kernel to not feature the graphic bug is Linux 5.19.0-29. Linux
  5.19.0-31 is the first one reproducing the graphic bug (the repository
  doesn't provide 5.19.0-30 for me to test).
  
  I also have reproduced the graphic bug when using the radeon driver
  instead of the amdgpu one.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 22.10
  Package: linux-image-generic 5.19.0.42.38
  ProcVersionSignature: Ubuntu 5.19.0-23.24-generic 5.19.7
  Uname: 

[Kernel-packages] [Bug 2012468] Re: Add Intel QAT Gen4 firmware

2023-05-11 Thread Keng-Yu Lin
linux-firmware packages in focal-proposed, jammy-proposed and kinetic-
proposed are verified to fix the bug.

** Tags removed: verification-needed-focal verification-needed-jammy 
verification-needed-kinetic
** Tags added: verification-done-focal verification-done-jammy 
verification-done-kinetic

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

Title:
  Add Intel QAT Gen4 firmware

Status in linux-firmware package in Ubuntu:
  Fix Released
Status in linux-firmware source package in Focal:
  Fix Committed
Status in linux-firmware source package in Jammy:
  Fix Committed
Status in linux-firmware source package in Kinetic:
  Fix Committed
Status in linux-firmware source package in Lunar:
  Fix Released

Bug description:
  [Impact]

  The two Intel QAT Gen4 firmware files are already upstreamed:

    
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/qat_4xxx.bin
    
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/qat_4xxx_mmp.bin

  Please consider to include them.

  Please also nominate to Focal and Jammy since they are LTS.

  [Fix]

  Cherry pick commit 24c9df9b942518717dd53966712df69ac35c8b90.

  [Where Problems Could Occur]

  This is new firmware which will get loaded if the relevant HW is
  present so could result in all sorts of (kernel) problems.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Tim Gardner
** Changed in: linux-meta-azure (Ubuntu)
   Status: New => Invalid

** Changed in: linux-meta-kvm (Ubuntu)
   Status: New => Invalid

** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Also affects: linux (Ubuntu Mantic)
   Importance: Medium
 Assignee: Tim Gardner (timg-tpi)
   Status: In Progress

** Also affects: linux-meta-azure (Ubuntu Mantic)
   Importance: Undecided
   Status: Invalid

** Also affects: linux-meta-kvm (Ubuntu Mantic)
   Importance: Undecided
   Status: Invalid

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

** Also affects: linux-meta-azure (Ubuntu Lunar)
   Importance: Undecided
   Status: New

** Also affects: linux-meta-kvm (Ubuntu Lunar)
   Importance: Undecided
   Status: New

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

** Also affects: linux-meta-azure (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

** Also affects: linux-meta-kvm (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

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

** Also affects: linux-meta-azure (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: linux-meta-kvm (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Changed in: linux (Ubuntu Jammy)
   Importance: Undecided => Medium

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

** Changed in: linux (Ubuntu Jammy)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux (Ubuntu Kinetic)
   Importance: Undecided => Medium

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

** Changed in: linux (Ubuntu Kinetic)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Changed in: linux (Ubuntu Lunar)
   Importance: Undecided => Medium

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

** Changed in: linux (Ubuntu Lunar)
 Assignee: (unassigned) => Tim Gardner (timg-tpi)

** Description changed:

+ SRU Justification
+ 
+ [Impact]
+ 
  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.
+ 
+ [Fix]
  
  Please consider enabling the following kconfigs:
  
  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY
  
  (The latter is needed to ensure that MoK keys can be used to verify dm-
  verity images too, via the machine keyring linked to the secondary
  keyring)
  
  These are already enabled in the 'main' kernel config, and in other
  distros.
  
  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.
+ 
+ [Regression Potential]
+ 
+ MOK keys may not be correctly read.

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  In Progress
Status in linux-meta-azure package in Ubuntu:
  Invalid
Status in linux-meta-kvm package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  In Progress
Status in linux-meta-azure source package in Jammy:
  New
Status in linux-meta-kvm source package in Jammy:
  New
Status in linux source package in Kinetic:
  In Progress
Status in linux-meta-azure source package in Kinetic:
  New
Status in linux-meta-kvm source package in Kinetic:
  New
Status in linux source package in Lunar:
  In Progress
Status in linux-meta-azure source package in Lunar:
  New
Status in linux-meta-kvm source package in Lunar:
  New
Status in linux source package in Mantic:
  In Progress
Status in linux-meta-azure source package in Mantic:
  Invalid
Status in linux-meta-kvm source package in Mantic:
  Invalid

Bug description:
  SRU Justification

  [Impact]

  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  [Fix]

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality 

[Kernel-packages] [Bug 2012335] Re: Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores (256)

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores
  (256)

Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]

  There is a user reporting errors in setup with their Intel E810 NIC with
  error messages saying that the driver cannot allocate enough MSI-X vectors
  on their 256 cpu-count system.

  It seems the ICE ethernet driver has an all or nothing approach to
  allocating MSI-X vectors and could request more MSI-X vectors than it
  finds available, which could lead to the driver failing to initialize and
  start.

  [Fix]

  The patch that fixes this allocates as many MSI-X vectors as it can to 
continue
  functionality by reducing the number of requested MSI-X vectors if it does
  not have enough to do full allocation.

  [Backport]

  In Jammy we do not carry patches for switchdev support in the driver so do not
  allocate the switchdev MSI-X vector for it. Also in Jammy use the older
  way of checking RDMA support by testing the RDMA bit is set as opposed to the 
newer
  ice_is_rdma_ena that the patch uses.

  [Test Plan]

  Install and startup Ice driver with an Intel 800 series NIC and check that we
  do not have the failure:

  Not enough device MSI-X vectors, requested = 260, available = 253

  and check that everything works as expected.

  The backported patch for Jammy has been tested by the original user who
  submited the bug report with their high cpu count system and confirmed no 
errors.

  [Where problems could occur]

  There could be problems with the logic of reducing the MSI-X vector
  usage leading to more errors in the driver, but otherwise minimal
  regression potential as the code is mostly refactoring initial MSI-X
  setup.

  
  --

  System Configuration
  OS: Ubuntu 22.04 LTS
  Kernel: 5.15.0-25-generic
  CPUs: 256
  NIC: Intel E810 NIC with 512 MSIx vectors each function

  Errors
  Not enough device MSI-X vectors, requested = 260, available = 253

  Findings
  (1) the current ice kernel driver (ice_main.c) will pre-allocate all 
required number of msix (even it's not enough for big core CPUs)
  (2) the commit 
https://github.com/torvalds/linux/commit/ce4626131112e1d0066a890371e14d8091323f99
 has improved this logic, and it seems merged into kernel version from v6.1

  So for supporting the new CPUs with more than 252 vCPUs, will Ubuntu
  kernel backport above patch to the current kernel (v5.15) ?

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


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


[Kernel-packages] [Bug 2015972] Re: Dell: Enable speaker mute hotkey LED indicator

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Lunar)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

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

Title:
  Dell: Enable speaker mute hotkey LED indicator

Status in HWE Next:
  New
Status in OEM Priority Project:
  New
Status in alsa-ucm-conf package in Ubuntu:
  Fix Released
Status in linux package in Ubuntu:
  In Progress
Status in linux-oem-6.1 package in Ubuntu:
  Invalid
Status in alsa-ucm-conf source package in Jammy:
  Fix Committed
Status in linux source package in Jammy:
  Fix Committed
Status in linux-oem-6.1 source package in Jammy:
  In Progress
Status in alsa-ucm-conf source package in Kinetic:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed
Status in linux-oem-6.1 source package in Kinetic:
  Invalid
Status in alsa-ucm-conf source package in Lunar:
  Fix Committed
Status in linux source package in Lunar:
  Fix Committed
Status in linux-oem-6.1 source package in Lunar:
  Invalid

Bug description:
  [Feature Description]
  When users press the speaker mute hotkey and the speaker is muted, 
  the speaker mute LED indicator will light up. 
  When the speaker is not muted, 
  the speaker mute LED indicator will light out.

  [Test Case]
  1. run G16 with target kernel.
  2. press the mute hotkey
  3. check if speaker mute led can be switched.

  [Where problems could occur]
  Low, just register a speaker mute led control for dell-laptop.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Luca Boccassi
There's no specific log to share, I've downloaded the kconfig for the
kvm flavour from the linux-
buildinfo-6.2.0-1003-kvm_6.2.0-1003.3_amd64.deb package, extracted
usr/lib/linux/6.2.0-1003-kvm/config and checked for these kconfigs, and
they are not present:

$ grep DM_VERITY config
# CONFIG_DM_VERITY is not set
$ grep IMA_ARCH config
$

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

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  In Progress
Status in linux-meta-azure package in Ubuntu:
  Invalid
Status in linux-meta-kvm package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  In Progress
Status in linux-meta-azure source package in Jammy:
  New
Status in linux-meta-kvm source package in Jammy:
  New
Status in linux source package in Kinetic:
  New
Status in linux-meta-azure source package in Kinetic:
  New
Status in linux-meta-kvm source package in Kinetic:
  New
Status in linux source package in Lunar:
  New
Status in linux-meta-azure source package in Lunar:
  New
Status in linux-meta-kvm source package in Lunar:
  New
Status in linux source package in Mantic:
  In Progress
Status in linux-meta-azure source package in Mantic:
  Invalid
Status in linux-meta-kvm source package in Mantic:
  Invalid

Bug description:
  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

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


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


[Kernel-packages] [Bug 2009136] Re: No HDMI audio under 5.19.0-35 & -37 (regression from -32)

2023-05-11 Thread Wiktor Tomanek
Did -42 come out on Jammy?

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

Title:
  No HDMI audio under 5.19.0-35 & -37 (regression from -32)

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Jammy:
  Invalid
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  [Impact]
  For amdgpu/i915, hdmi audio output device has disappeared.

  [Fix]
  The latest fix for the non-contiguous memalloc helper changed the
  allocation method for a non-IOMMU system to use only the fallback
  allocator.  This should have worked, but it caused a problem sometimes
  when too many non-contiguous pages are allocated that can't be treated
  by HD-audio controller.
  
  As a quirk workaround, go back to the original strategy: use
  dma_alloc_noncontiguous() at first, and apply the fallback only when
  it fails, but only for non-IOMMU case

  [Test Case]
  1. boot with kernel applied the patches.
  2. check the cards in /proc/asound/cards.
 Get the hdmi cards.

   0 [PCH ]: HDA-Intel - HDA Intel PCH
HDA Intel PCH at 0xe232 irq 137
   1 [HDMI ]: HDA-Intel - HDA ATI HDMI
HDA ATI HDMI at 0xe226 irq 134

  [Where problems could occur]
  Low, this is just workaround and may have a better solution in the future.

  [Misc]
  All patches has been landed on OEM-6.1 and lunar.

  ~~
  CLARIFICATION: Just to avoid any confusion for those coming to this bug 
report; the "Jammy: invalid" status above does *not* mean that this bug doesn't 
affect jammy -- it does, and the kernel team is aware of this. All it reflects 
is that the fix has to go into the kinetic kernel package which will then flow 
into the kernel-hwe package implicitly.

  Currently known affected cards:

  * HD 7700 (comment 8)
  * R9 290 (comment 21)
  * RX 550 (LP: #2012141, and comment 27)
  * RX 570 (mine)
  * RX 580 (LP: #2009276, and comment 28)
  * WX 3200 (comment 29)
  * RX 6600 (LP: #2009542)
  * RX 6700 (LP: #2009275)

  [ Original Description ]

  After upgrading my Ubuntu jammy (22.04) desktop to the -35 release of
  the kernel, I found my HDMI audio output device had disappeared.
  Reverting to the -32 release caused it to appear again (hence why I'm
  filing the bug against the kernel rather than pulseaudio). I'm
  attaching the dmesg output from immediately after booting each kernel,
  but after a bit of trimming and diffing I *think* the following lines
  are the salient ones:

  input: HDA ATI HDMI HDMI/DP,pcm=3 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input12
  input: HDA ATI HDMI HDMI/DP,pcm=7 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input13
  input: HDA ATI HDMI HDMI/DP,pcm=8 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input14
  input: HDA ATI HDMI HDMI/DP,pcm=9 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input15
  input: HDA ATI HDMI HDMI/DP,pcm=10 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input16
  input: HDA ATI HDMI HDMI/DP,pcm=11 as 
/devices/pci:00/:00:03.1/:2b:00.1/sound/card0/input17
  snd_hda_intel :2b:00.1: bound :2b:00.0 (ops 
amdgpu_dm_audio_component_bind_ops [amdgpu])

  These lines appear in the dmesg of the -32 kernel, but not in the -35
  kernel's log. Meanwhile, the following lines appear in the -35
  kernel's log but not in the -32:

  hdaudio hdaudioC0D0: no AFG or MFG node found
  snd_hda_intel :2b:00.1: no codecs initialized

  I'll also attach the output of "pactl list" under each kernel (this
  shows the HDMI audio sink showing up under -32, but not -35) just in
  case that helps shed any light on things.

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


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


[Kernel-packages] [Bug 2008527] Re: [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup time is taking longer than expected

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup
  time is taking longer than expected

Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]

  A Dell system that has a profile setting of "Performance Per Watt
  (DAPC)" enabled in the BIOS and running Ubuntu-22.04 does not boot
  into OS as quickly as expected.

  How reproducible:

  Steps to Reproduce:

  1. On the Dell system enable "Performance Per Watt (DAPC)" from BIOS.
  2. Install Ubuntu-22.04
  3. Boot into OS
  4. Check the bootup time

  Expected results:
  OS should boot normally and need to consume less bootup time

  [Fix]

  13fdbc8b8da6 cpufreq: ACPI: Defer setting boost MSRs

  [Test Plan]

  1. Set system profile as "Performance Per Watt (DAPC)" from BIOS setting
  2. Install Ubuntu-22.04
  3. Boot into OS
  4. Check the bootup time

  [Where problems could occur]

  Regression risk: low to medium.

  [Other Info]
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2008527_dapc

  Kinetic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/kinetic/+ref/lp_2008527_dapc_kinetic

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


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


[Kernel-packages] [Bug 2019011] Re: [UBUNTU 20.04] [HPS] Kernel panic with "refcount_t: underflow" in mlx5 driver

2023-05-11 Thread Pedro Principeza
Hi, Vineeth.

The patch in hand is included in the HWE version of the Focal Kernel and
in the LTS version of the Jammy Kernel.  Both are 5.15, FWIW, and the
fix has a different id there:

f0f894f0f636 net/mlx5: Fix handling of entry refcount when command is
not issued to FW

The Focal LTS Kernel is the only one that needs the backport.  Let us
know how testing goes at your end.

BR,
pprincipeza

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

Title:
  [UBUNTU 20.04] [HPS] Kernel panic with "refcount_t: underflow" in mlx5
  driver

Status in linux package in Ubuntu:
  New
Status in linux source package in Focal:
  In Progress

Bug description:
  ---Problem Description---

  Kernel panic with "refcount_t: underflow" in kernel log
   
  Contact Information = rijo...@ibm.com, vineeth.vija...@ibm.com 
   
  ---uname output---
  5.4.0-128-generic
   
  Machine Type = s390x 
   
  ---System Hang---
  Kernel panic and stack-trace as below
   
  ---Debugger---
  A debugger is not configured
   
  Stack trace output:
  [Sat Apr  8 17:52:21 UTC 2023] Call Trace:
  [Sat Apr  8 17:52:21 UTC 2023] ([<002a5939a286>] 
refcount_warn_saturate+0xce/0x140)
  [Sat Apr  8 17:52:21 UTC 2023]  [<03ff805f861e>] cmd_ent_put+0xe6/0xf8 
[mlx5_core]
  [Sat Apr  8 17:52:21 UTC 2023]  [<03ff805f9b6a>] 
mlx5_cmd_comp_handler+0x102/0x4f0 [mlx5_core]
  [Sat Apr  8 17:52:21 UTC 2023]  [<03ff805f9f8a>] 
cmd_comp_notifier+0x32/0x48 [mlx5_core]
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ecf0c6>] 
notifier_call_chain+0x4e/0xa0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ecf17e>] 
atomic_notifier_call_chain+0x2e/0x40
  [Sat Apr  8 17:52:21 UTC 2023]  [<03ff805fe4fc>] 
mlx5_eq_async_int+0x13c/0x200 [mlx5_core]
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ecf0c6>] 
notifier_call_chain+0x4e/0xa0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ecf17e>] 
atomic_notifier_call_chain+0x2e/0x40
  [Sat Apr  8 17:52:21 UTC 2023]  [<03ff8061318e>] 
mlx5_irq_int_handler+0x2e/0x48 [mlx5_core]
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f1455a>] 
__handle_irq_event_percpu+0x6a/0x250
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f14770>] 
handle_irq_event_percpu+0x30/0x78
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f1a0c8>] 
handle_percpu_irq+0x68/0xa0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f134d2>] 
generic_handle_irq+0x3a/0x60
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e960ce>] 
zpci_floating_irq_handler+0xe6/0x1b8
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a594f54a6>] 
do_airq_interrupt+0x96/0x130
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f1455a>] 
__handle_irq_event_percpu+0x6a/0x250
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f14770>] 
handle_irq_event_percpu+0x30/0x78
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f1a0c8>] 
handle_percpu_irq+0x68/0xa0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58f134d2>] 
generic_handle_irq+0x3a/0x60
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e30e42>] do_IRQ+0x7a/0xb0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a5972a408>] 
io_int_handler+0x12c/0x294
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e2752e>] enabled_wait+0x46/0xd8
  [Sat Apr  8 17:52:21 UTC 2023] ([<002a58e2752e>] enabled_wait+0x46/0xd8)
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e278aa>] arch_cpu_idle+0x2a/0x40
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ee1536>] do_idle+0xee/0x1b0
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58ee17a6>] 
cpu_startup_entry+0x36/0x40
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e3ab38>] 
smp_init_secondary+0xc8/0xe8
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a58e3a770>] 
smp_start_secondary+0x88/0x90
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a5972a09c>] 
kernel_thread_starter+0x0/0x10
  [Sat Apr  8 17:52:21 UTC 2023] Last Breaking-Event-Address:
  [Sat Apr  8 17:52:21 UTC 2023]  [<002a5939a286>] 
refcount_warn_saturate+0xce/0x140
  [Sat Apr  8 17:52:21 UTC 2023] ---[ end trace 6ec6f9c6f666ca2d ]---
  [Sat Apr  8 17:52:21 UTC 2023] specification exception: 0006 ilc:3 [#1] SMP
  [Sat Apr  8 17:52:21 UTC 2023] Modules linked in: sysdigcloud_probe(OE) 
vhost_net vhost macvtap macvlan tap rpcsec_gss_krb5 auth_rpcgss nfsv3 nfs_acl 
nfs lockd grace fscache ebtable_broute binfmt_misc nbd veth xt_statistic 
ipt_REJECT nf_reject_ipv4 ip_vs_sh ip_vs_wrr ip_vs_rr ip_vs iptable_mangle 
ip6table_mangle ip6table_nat xt_mark sunrpc lcs ctcm fsm zfcp scsi_transport_fc 
dasd_fba_mod dasd_eckd_mod dasd_mod nf_log_ipv6 nf_log_ipv4 nf_log_common 
xt_LOG xt_limit xt_tcpudp xt_multiport xt_set ip_set_hash_net ip_set_hash_ip 
ip_set tcp_diag inet_diag xt_comment xt_nat act_gact sch_multiq act_mirred 
act_pedit act_tunnel_key cls_flower act_police cls_u32 vxlan ip6_udp_tunnel 
udp_tunnel dummy sch_ingress mlx5_ib ib_uverbs ib_core mlx5_core tls mlxfw ptp 
pps_core xt_MASQUERADE iptable_nat xt_addrtype xt_conntrack br_netfilter bridge 
stp llc aufs ebtable_filter ebtables 

[Kernel-packages] [Bug 1856871] Re: i/o error if next unused loop device is queried

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Bionic)
   Status: In Progress => Fix Committed

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

Title:
  i/o error if next unused loop device is queried

Status in linux package in Ubuntu:
  Fix Released
Status in parted package in Ubuntu:
  Invalid
Status in snapd package in Ubuntu:
  Invalid
Status in systemd package in Ubuntu:
  Invalid
Status in udev package in Ubuntu:
  Invalid
Status in linux source package in Bionic:
  Fix Committed
Status in linux source package in Focal:
  Fix Committed
Status in linux source package in Jammy:
  Fix Released

Bug description:
  
  [Impact]

  * There's an I/O error on fsync() in a detached loop device if it has
  been previously attached. The issue is that write cache is enabled in
  the attach path in loop_configure() but it isn't disabled in the detach
  path; thus it remains enabled in the block device regardless of whether
  it is attached or not.

  * fsync() on detached loop devices can be called by partition tools and
  commands run by sosreport, so the unexpected kernel error message might
  surprise users or even distract from the actual issue being
  investigatedr. It might also trigger alerts in
  logging/monitoring/alerting stacks

  [Fix]

  * Disable write cache in the detach path

  [Test Plan]

  * Attach and detach an image to a loop device and test fsync return
  value aterwards

  # DEV=/dev/loop7

  # IMG=/tmp/image
  # truncate --size 1M $IMG

  # losetup $DEV $IMG
  # losetup -d $DEV

  Before:
  # strace -e fsync parted -s $DEV print 2>&1 | grep fsync
  fsync(3)= -1 EIO (Input/output error)
  Warning: Error fsyncing/closing /dev/loop7: Input/output error
  [  982.529929] blk_update_request: I/O error, dev loop7, sector 0 op 
0x1:(WRITE) flags 0x800 phys_seg 0 prio class 0

  After:
  # strace -e fsync parted -s $DEV print 2>&1 | grep fsync
  fsync(3)= 0

  [Where problems could occur]

  * The detach path for block devices is modified. Worst case scenario
  would be an error when detaching loop devices.

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


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


[Kernel-packages] [Bug 2018470] Re: Linux 5.19 amdgpu: NULL pointer on GCN2 and invalid load on GCN1

2023-05-11 Thread Mario Limonciello
OK here are the fixes for this identified upstream:

Mantic (6.3+):
 * UBSAN issue fixed by 
https://gitlab.freedesktop.org/agd5f/linux/-/commit/3a5fb036af0a18436209fbb16e331edd26a07b3d

Kinetic (5.19):
 * UBSAN issue fixed by 
https://gitlab.freedesktop.org/agd5f/linux/-/commit/3a5fb036af0a18436209fbb16e331edd26a07b3d
 * The hang issue was caused by Canonical backporting 
https://github.com/torvalds/linux/commit/312b4dc11d4f74bfe03ea25ffe04c1f2fdd13cb9
 into 5.19 kernel but not taking the fix 
https://github.com/torvalds/linux/commit/8273b4048664fff356fd10059033f0e2f5a422a1

Canonical team please review these.

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

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

Title:
  Linux 5.19 amdgpu: NULL pointer on GCN2 and invalid load on GCN1

Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Kinetic:
  Confirmed
Status in linux source package in Mantic:
  Confirmed

Bug description:
  The day I updated from Ubuntu 22.04 to 22.10 some months ago, I had to
  stick on Linux 5.15 because 5.19 was not working with my computer. The
  last two days I spent time to find a way to run Linux 5.19, and found
  one version working: 5.19.0-23.

  Here are the versions I tested:

  - 5.19.0-23
  - 5.19.0-29
  - 5.19.0-31
  - 5.19.0-42

  In that list, only Linux 5.19.0-23 is working with that computer.

  There may be other versions that work I have not tested, but basically
  the breakages occurred after 5.19.0-23.

  I face two problems, let's talk about the first one, the graphic one
  still present in 5.19.0-42. It starts to occurs with 5.19.0-31
  (5.19.0-29 is not affected): graphic breaks at the moment it should
  switch from low resolution display to high resolution display at the
  very beginning of startup. The computer is not completely broken, but
  the graphic is dead. X11 cannot start, trying to use the framebuffer,
  meaning the amdgpu driver is not functional).

  The second bug is the one I get with the 5.19.0-29 version. Linux
  5.19.0-29 doesn't experience the graphic bug but has another issue
  that makes the computer unusable: some CPU got locked, and some btrfs
  process runs at 100% CPU, syncing never ends, even preventing to
  reboot. This bug is less important because I don't reproduce it on
  version 5.19.0-42, so if 5.19.0-42 fixes the graphic all will be fine.

  I have not updated to Ubuntu 23.04 yet because I'm afraid of newer
  kernels from it would leave my computer totally unusable, I have run
  Ubuntu 22.10 with Ubuntu 22.04's 5.15 kernel until today because of
  that fear.

  It actually took me two work days to test various combinations to boot
  the computer so I'm sticking on 5.19.0-29 for now, and I have limited
  time to test other options. I also tried various BIOS options, and
  also upgraded the BIOS…, and since that ThreadRipper PRO computer has
  very slow booting BIOS, trying various configurations or software
  versions that requires a reboot quickly eats-up whole hours.

  The attached logs may have traces of dkim modules like amdgpu-pro, but
  the first time I experienced the bug I had none of them. I reproduced
  the bug on a 5.19.0-42 kernel free of amdgpu-pro yesterday. I'm simply
  opening the ticket from my working environment, and I decided to not
  spend one more hour just to uninstall amdgpu-pro and reboot only to do
  that ticket.

  Here are some details on the hardware:

  - MOBO: Gigabyte WRX80-SU8-IPMI rev. 1.0 (BIOS version F5, also named 
WRX80PRO-F1 in dmidecode, dated 08/04/2022) 
https://www.gigabyte.com/Motherboard/WRX80-SU8-IPMI-rev-10
  - RAM: 8× Kingston Server Premier 32GB DDR4 3200 MHz ECC CL22 2Rx8 PC4-25600 
KSM32ED8/32ME 16Gbit Micron E
  - CPU: AMD Ryzen Threadripper PRO 3955WX 16-Cores (Castle Peak, Zen 2)
  - GPU: AMD Radeon R9 390X (Hawaii/Grenada, GCN2, amdgpu driver)
  - GPU: AMD Radeon R7 240 (Oland, GCN1, amdgpu driver)
  - GPU: ASPEED graphic Family rev 41

  The ASPEED graphic is a small card integrated in the motherboard and
  part of the BMC, I cannot remove it. This may participate in the
  trouble.

  When the graphic works (Linux 5.19.0-23, Linux 5.19.0-29), the boot is
  displayed on all AMD and ASPEED graphic output, then at the moment the
  graphic switches from low resolution to high resolution, the ASPEED
  graphic goes off and the display continue on AMD cards.

  When the graphic doesn't work (5.19.0-31, 5.19.0-42), the boot is
  displayed on all AMD and ASPEED graphic output, then at the moment the
  graphic switches from low resolution to high resolution, the AMD cards
  display garbage but the display continue on the ASPEED card. The
  ASPEED card is a very basic integrated card without hardware
  acceleration and featuring only one VGA output so that's unusable. As
  an additional information I know X11 

[Kernel-packages] [Bug 2015297] Re: Update GPU F/W for DCN 3.1.4 products to fix S0i3 issue

2023-05-11 Thread Anson Tsao
Verified the proposed package(lunar-20230323.gitbcdcfbcf-0ubuntu1.1) and
got positive results on the OEM platform, thanks Timo.

** Tags added: verification-done-lunar

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

Title:
  Update GPU F/W for DCN 3.1.4 products to fix S0i3 issue

Status in HWE Next:
  Fix Committed
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Jammy:
  Fix Committed
Status in linux-firmware source package in Kinetic:
  Invalid
Status in linux-firmware source package in Lunar:
  Fix Committed

Bug description:
  [ Impact ]
  The current GPU firmware in place for DCN 3.1.4 based products fails to 
resume from s2idle on newer BIOSes.

  The following GPU F/W stack is confirmed to fix the problem and works
  both with the older BIOSes and newer BIOSes:

  9ee24ce0 amdgpu: Update SDMA 6.0.1 firmware
  7df2a1ae amdgpu: Add PSP 13.0.11 firmware
  f098803d amdgpu: Update PSP 13.0.4 firmware
  2cc9a4d0 amdgpu: Update GC 11.0.1 firmware
  eb13e669 amdgpu: Update DCN 3.1.4 firmware
  898b7def amdgpu: Add GC 11.0.4 firmware

  Those binaries are part of upstream linux-firmware tag 20230404.

  [ Test Plan ]

   * Run s2idle cycle using OEM-6.1 1008 or 1009 kernel on a DCN 3.1.4 platform
   * Verify that display comes back

  [ Where problems could occur ]

   * This GPU F/W is only used for DCN 3.1.4 based products.  These aren't yet 
on the market and there is no risk to regression to any Ubuntu users. 
   * Without this firmware update OEM systems running newer BIOS won't be able 
to be certified.

  [ Other Info ]
   * AMD has found this regression and validated this stack on reference 
hardware.

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


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


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

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

apport-collect 2019040

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

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

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

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

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  Incomplete
Status in linux-meta-azure package in Ubuntu:
  New
Status in linux-meta-kvm package in Ubuntu:
  New

Bug description:
  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Christian Ehrhardt 
** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux package in Ubuntu:
  New
Status in linux-meta-azure package in Ubuntu:
  New
Status in linux-meta-kvm package in Ubuntu:
  New

Bug description:
  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

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


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


[Kernel-packages] [Bug 2019040] Re: linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

2023-05-11 Thread Luca Boccassi
** Summary changed:

- linux-kvm: please enable dm-verity kconfigs
+ linux-*: please enable dm-verity kconfigs to allow MoK/db verified root images

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

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

Title:
  linux-*: please enable dm-verity kconfigs to allow MoK/db verified
  root images

Status in linux-meta-azure package in Ubuntu:
  New
Status in linux-meta-kvm package in Ubuntu:
  New

Bug description:
  The kvm flavours currently do not enable dm-verity. This stops us from
  using integrity protected and verified images in VMs using this kernel
  flavour.

  Please consider enabling the following kconfigs:

  CONFIG_DM_VERITY
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG
  CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING
  CONFIG_IMA_ARCH_POLICY

  (The latter is needed to ensure that MoK keys can be used to verify
  dm-verity images too, via the machine keyring linked to the secondary
  keyring)

  These are already enabled in the 'main' kernel config, and in other
  distros.

  As a specific and explicit use case, in the systemd project we want to
  test functionality provided by systemd that needs these kconfigs on
  Ubuntu machines running the kvm flavour kernel.

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


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


[Kernel-packages] [Bug 1954757] Re: Missing overlays/README

2023-05-11 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the linux-raspi/6.2.0-1005.7
kernel in -proposed solves the problem. Please test the kernel and
update this bug with the results. If the problem is solved, change the
tag 'verification-needed-lunar' to 'verification-done-lunar'. If the
problem still exists, change the tag 'verification-needed-lunar' to
'verification-failed-lunar'.

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

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


** Tags added: kernel-spammed-lunar-linux-raspi verification-needed-lunar

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

Title:
  Missing overlays/README

Status in flash-kernel package in Ubuntu:
  Fix Released
Status in linux-raspi package in Ubuntu:
  Fix Committed
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  Fix Released
Status in linux-raspi source package in Hirsute:
  Won't Fix
Status in linux-raspi source package in Impish:
  Fix Released
Status in flash-kernel source package in Lunar:
  Fix Released
Status in linux-raspi source package in Lunar:
  Fix Committed
Status in linux-raspi2 source package in Lunar:
  Invalid

Bug description:
  [ Impact ]

  overlays/README is used by the 'dtoverlay' command to display info on
  available overlays and params.

  [ Test Case ]

  $ apt install libraspberrypi-bin
  $ dtoverlay -h uart0
  * Help file not found

  With the README present:
  $ dtoverlay -h uart0
  Name:   uart0

  Info:   Change the pin usage of uart0

  Usage:  dtoverlay=uart0,=

  Params: txd0_pinGPIO pin for TXD0 (14, 32 or 36 -
  default 14)

  rxd0_pinGPIO pin for RXD0 (15, 33 or 37 -
  default 15)

  pin_funcAlternative pin function - 4(Alt0) for 14&15,
  7(Alt3) for 32&33, 6(Alt2) for 36&37

  [ Where Problems Could Occur ]

  The output of the `dtoverlay` could be wrong but it's only
  informational so should have no negative impact.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flash-kernel/+bug/1954757/+subscriptions


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


[Kernel-packages] [Bug 2013014] Re: net:l2tp.sh failure with lunar:linux 6.2

2023-05-11 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the linux-raspi/6.2.0-1005.7
kernel in -proposed solves the problem. Please test the kernel and
update this bug with the results. If the problem is solved, change the
tag 'verification-needed-lunar' to 'verification-done-lunar'. If the
problem still exists, change the tag 'verification-needed-lunar' to
'verification-failed-lunar'.

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

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


** Tags added: kernel-spammed-lunar-linux-raspi verification-needed-lunar

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

Title:
  net:l2tp.sh failure with lunar:linux 6.2

Status in ubuntu-kernel-tests:
  New
Status in linux package in Ubuntu:
  Fix Released
Status in linux source package in Lunar:
  Fix Released

Bug description:
  [Impact]

  Kernel selftest net:l2tp.sh is failing with the latest lunar/linux 6.2
  kernel, the error is the following:

RTNETLINK answers: Protocol not supported

  Using `bash -x` we can see that the last command executed is the
  following:

ip -netns host-1 l2tp add tunnel tunnel_id 1041 peer_tunnel_id 1042
  encap ip local 10.1.1.1 remote 10.1.2.1

  [Test case]

  From the kernel source directory run:

   $ sudo ./tools/testing/selftests/net/l2tp.sh

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-kernel-tests/+bug/2013014/+subscriptions


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


[Kernel-packages] [Bug 2013209] Re: expoline.o is packaged unconditionally for s390x

2023-05-11 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the linux-raspi/6.2.0-1005.7
kernel in -proposed solves the problem. Please test the kernel and
update this bug with the results. If the problem is solved, change the
tag 'verification-needed-lunar' to 'verification-done-lunar'. If the
problem still exists, change the tag 'verification-needed-lunar' to
'verification-failed-lunar'.

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

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


** Tags added: kernel-spammed-lunar-linux-raspi verification-needed-lunar

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

Title:
  expoline.o is packaged unconditionally for s390x

Status in linux package in Ubuntu:
  Fix Released
Status in linux-hwe-5.15 package in Ubuntu:
  New
Status in linux-hwe-5.15 source package in Focal:
  Fix Released
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed
Status in linux source package in Lunar:
  Fix Released

Bug description:
  https://bugs.launchpad.net/bugs/1639924 enabled CONFIG_EXPOLINE_EXTERN
  for s390x in Jammy. While this works as expected on Jammy, it won't
  work on some derivatives of it: for example focal:hwe-5.15. On Focal,
  this config can't be enabled due to the GCC version it comes with.
  CONFIG_EXPOLINE_EXTERN requires >= 110200 while Focal comes with
  90400.

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


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


[Kernel-packages] [Bug 2015361] Re: FTBFS with different dkms or when makeflags are set

2023-05-11 Thread Ubuntu Kernel Bot
This bug is awaiting verification that the linux-raspi/6.2.0-1005.7
kernel in -proposed solves the problem. Please test the kernel and
update this bug with the results. If the problem is solved, change the
tag 'verification-needed-lunar' to 'verification-done-lunar'. If the
problem still exists, change the tag 'verification-needed-lunar' to
'verification-failed-lunar'.

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

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


** Tags added: kernel-spammed-lunar-linux-raspi verification-needed-lunar

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

Title:
  FTBFS with different dkms or when makeflags are set

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  build_dkms fails

  1) if updated dkms is used that changes return code for skip from 9 to 77
  2) if MAKEFLAGS are exported that remove implicit variables, which dkms 
module submake invocations may require

  fix those things for lunar release.

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


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


[Kernel-packages] [Bug 2007745] Re: [SRU][Jammy] CONFIG_PCI_MESON is not enabled

2023-05-11 Thread Luke Nowakowski-Krijger
** Also affects: linux (Ubuntu Lunar)
   Importance: Undecided
   Status: New

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

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

** Changed in: linux (Ubuntu Jammy)
   Status: New => Fix Committed

** Changed in: linux (Ubuntu Kinetic)
   Status: New => Fix Committed

** Changed in: linux (Ubuntu Lunar)
   Status: New => Fix Committed

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

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

Title:
  [SRU][Jammy] CONFIG_PCI_MESON is not enabled

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Jammy:
  Fix Committed
Status in linux source package in Kinetic:
  Fix Committed
Status in linux source package in Lunar:
  Fix Committed

Bug description:
  SRU justification:

  [ Impact ]

  The PCI driver for the amlogic-based Meson platforms
  (CONFIG_PCI_MESON) is not enabled as a module in the kernel
  configuration: https://git.launchpad.net/~ubuntu-
  
kernel/ubuntu/+source/linux/+git/focal/tree/debian.master/config/config.common.ubuntu?h=master#n7036

  [ Test Plan ]

  Check if pci_meson.ko is compiled and present in the linux-modules
  package.

  [ Where problems could occur ]

  * Enabling the driver could enable undesired dependencies 
  * Kernel module does not compile and breaks the build

  [ Other Info ]

  This driver is important for systems like the ODROID HC4, which uses a
  PCIE-SATA bridge to provide a storage interface. This system is fully
  supported by the kernel (including a device tree), except for the fact
  that this PCI driver is disabled.

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


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


[Kernel-packages] [Bug 2018948] Re: Kinetic update: upstream stable patchset 2023-05-08

2023-05-11 Thread Luke Nowakowski-Krijger
** Changed in: linux (Ubuntu Kinetic)
   Status: In Progress => Fix Committed

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

Title:
  Kinetic update: upstream stable patchset 2023-05-08

Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Kinetic:
  Fix Committed

Bug description:
  SRU Justification

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

     upstream stable patchset 2023-05-08

  Ported from the following upstream stable releases:
  v5.15.98,
  v5.15.99, v6.1.16

     from git://git.kernel.org/

  HID: asus: use spinlock to protect concurrent accesses
  HID: asus: use spinlock to safely schedule workers
  powerpc/mm: Rearrange if-else block to avoid clang warning
  ARM: OMAP2+: Fix memory leak in realtime_counter_init()
  arm64: dts: qcom: qcs404: use symbol names for PCIe resets
  arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up
  arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k
  arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings
  arm64: dts: imx8m: Align SoC unique ID node unit address
  ARM: zynq: Fix refcount leak in zynq_early_slcr_init
  arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description
  arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name
  arm64: dts: qcom: sc7180: correct SPMI bus address cells
  arm64: dts: qcom: sc7280: correct SPMI bus address cells
  arm64: dts: meson-gx: Fix Ethernet MAC address unit name
  arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name
  arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address
  arm64: dts: msm8992-bullhead: add memory hole region
  arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size
  arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem
  arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names
  arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY
  arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges
  arm64: dts: qcom: ipq8074: fix Gen3 PCIe node
  arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names
  arm64: dts: meson: remove CPU opps below 1GHz for G12A boards
  ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init()
  ARM: bcm2835_defconfig: Enable the framebuffer
  ARM: s3c: fix s3c64xx_set_timer_source prototype
  arm64: dts: ti: k3-j7200: Fix wakeup pinmux range
  ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato
  ARM: imx: Call ida_simple_remove() for ida_simple_get
  arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name
  arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name
  arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible
  arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names 
property
  arm64: dts: amlogic: meson-gx: add missing unit address to rng node name
  arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node 
name
  arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name
  arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names
  arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name
  arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name
  arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip
  locking/rwsem: Disable preemption in all down_read*() and up_read() code paths
  arm64: dts: renesas: beacon-renesom: Fix gpio expander reference
  arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN
  ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference
  ARM: dts: imx7s: correct iomuxc gpr mux controller cells
  arm64: dts: mt8192: Fix CPU map for single-cluster SoC
  arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node
  blk-mq: avoid sleep in blk_mq_alloc_request_hctx
  blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx
  blk-mq: correct stale comment of .get_budget
  arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM 
and MPSS memory regions
  s390/dasd: Fix potential memleak in dasd_eckd_init()
  sched/rt: pick_next_rt_entity(): check list_entry
  x86/perf/zhaoxin: Add stepping check for ZXC
  KEYS: asymmetric: Fix ECDSA use via keyctl uapi
  arm64: dts: qcom: pmk8350: Specify PBS register for PON
  arm64: dts: qcom: pmk8350: Use the correct PON compatible
  block: bio-integrity: Copy flags when bio_integrity_payload is cloned
  wifi: 

[Kernel-packages] [Bug 1991130] Re: Add lrm autogenerated transitional independent of variants

2023-05-11 Thread Timo Aaltonen
** Also affects: linux-restricted-modules (Ubuntu Mantic)
   Importance: Undecided
   Status: New

** Also affects: linux-restricted-modules-hwe-5.15 (Ubuntu Mantic)
   Importance: Undecided
   Status: Invalid

** Also affects: linux-restricted-modules (Ubuntu Lunar)
   Importance: Undecided
   Status: New

** Also affects: linux-restricted-modules-hwe-5.15 (Ubuntu Lunar)
   Importance: Undecided
   Status: New

** Changed in: linux-restricted-modules-hwe-5.15 (Ubuntu Lunar)
   Status: New => Invalid

** Also affects: linux-restricted-modules-hwe-5.19 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: linux-restricted-modules (Ubuntu Lunar)
   Status: New => Invalid

** Changed in: linux-restricted-modules-hwe-5.19 (Ubuntu Focal)
   Status: New => Invalid

** Also affects: linux-restricted-modules (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: linux-restricted-modules-hwe-5.15 (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Also affects: linux-restricted-modules-hwe-5.19 (Ubuntu Jammy)
   Importance: Undecided
   Status: New

** Changed in: linux-restricted-modules (Ubuntu Jammy)
   Status: New => Invalid

** Changed in: linux-restricted-modules-hwe-5.15 (Ubuntu Jammy)
   Status: New => Invalid

** Changed in: linux-restricted-modules-hwe-5.19 (Ubuntu Lunar)
   Status: New => Invalid

** Changed in: linux-restricted-modules-hwe-5.19 (Ubuntu Mantic)
   Status: New => Invalid

** Changed in: linux-restricted-modules-hwe-5.19 (Ubuntu Jammy)
   Status: New => In Progress

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

Title:
  Add lrm autogenerated transitional independent of variants

Status in linux-restricted-modules package in Ubuntu:
  New
Status in linux-restricted-modules-hwe-5.15 package in Ubuntu:
  Invalid
Status in linux-restricted-modules-hwe-5.19 package in Ubuntu:
  Invalid
Status in linux-restricted-modules source package in Focal:
  Invalid
Status in linux-restricted-modules-hwe-5.15 source package in Focal:
  Fix Released
Status in linux-restricted-modules-hwe-5.19 source package in Focal:
  Invalid
Status in linux-restricted-modules source package in Jammy:
  Invalid
Status in linux-restricted-modules-hwe-5.15 source package in Jammy:
  Invalid
Status in linux-restricted-modules-hwe-5.19 source package in Jammy:
  In Progress
Status in linux-restricted-modules source package in Lunar:
  Invalid
Status in linux-restricted-modules-hwe-5.15 source package in Lunar:
  Invalid
Status in linux-restricted-modules-hwe-5.19 source package in Lunar:
  Invalid
Status in linux-restricted-modules source package in Mantic:
  New
Status in linux-restricted-modules-hwe-5.15 source package in Mantic:
  Invalid
Status in linux-restricted-modules-hwe-5.19 source package in Mantic:
  Invalid

Bug description:
  [Impact]

  The kernel lrm packages have a mechanism to auto-generate transitional
  packages by adding a line to 'debian/package.config' in the following
  format

  transitional   

  Example:

  transitional 450-oem-20.04 450-generic amd64

  When being processed by 'debian/scripts/gen-rules.lrm' the
  autogenerated contents are added to 'debian/control.d/transitionals-
  local'. However, this file is not included in the final
  'debian/control' for packages which does not contain the default
  variant '--' (see debian/rules.in). This is intentional to prevent
  unwanted transitionals.

  However, there are some cases where we want to transition packages to
  kernels which are not the default variant in a series (e.g. hwe
  kernels).

  [Fix]

  The proposed fix is to add a new command "migrate", which does exactly
  what "transitional" does but adding the content to
  'debian/control.d/migrate-local' which would get added to the final
  'debian/control' independently of the source's variants.

  [Test Case]

  Add "migrate" entries to 'debian/package.config' and check whether
  they get added to 'debian/control' even for non default variant
  packages.

  [Where problems could occur]

  If not used correctly, unwanted transitionals could be generated
  causing issues to the archive. However, this is a new command and
  should not impact any of the previously set transitionals and it needs
  to be explicitly used.

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


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


[Kernel-packages] [Bug 2015297] Please test proposed package

2023-05-11 Thread Timo Aaltonen
Hello Mario, or anyone else affected,

Accepted linux-firmware into lunar-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/20230323.gitbcdcfbcf-0ubuntu1.1 in a few hours, and then in the
-proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, what testing has been
performed on the package and change the tag from verification-needed-
lunar to verification-done-lunar. If it does not fix the bug for you,
please add a comment stating that, and change the tag to verification-
failed-lunar. In either case, without details of your testing we will
not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

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

Title:
  Update GPU F/W for DCN 3.1.4 products to fix S0i3 issue

Status in HWE Next:
  Fix Committed
Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Jammy:
  Fix Committed
Status in linux-firmware source package in Kinetic:
  Invalid
Status in linux-firmware source package in Lunar:
  Fix Committed

Bug description:
  [ Impact ]
  The current GPU firmware in place for DCN 3.1.4 based products fails to 
resume from s2idle on newer BIOSes.

  The following GPU F/W stack is confirmed to fix the problem and works
  both with the older BIOSes and newer BIOSes:

  9ee24ce0 amdgpu: Update SDMA 6.0.1 firmware
  7df2a1ae amdgpu: Add PSP 13.0.11 firmware
  f098803d amdgpu: Update PSP 13.0.4 firmware
  2cc9a4d0 amdgpu: Update GC 11.0.1 firmware
  eb13e669 amdgpu: Update DCN 3.1.4 firmware
  898b7def amdgpu: Add GC 11.0.4 firmware

  Those binaries are part of upstream linux-firmware tag 20230404.

  [ Test Plan ]

   * Run s2idle cycle using OEM-6.1 1008 or 1009 kernel on a DCN 3.1.4 platform
   * Verify that display comes back

  [ Where problems could occur ]

   * This GPU F/W is only used for DCN 3.1.4 based products.  These aren't yet 
on the market and there is no risk to regression to any Ubuntu users. 
   * Without this firmware update OEM systems running newer BIOS won't be able 
to be certified.

  [ Other Info ]
   * AMD has found this regression and validated this stack on reference 
hardware.

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


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


[Kernel-packages] [Bug 2016700] Please test proposed package

2023-05-11 Thread Timo Aaltonen
Hello Juerg, or anyone else affected,

Accepted linux-firmware into lunar-proposed. The package will build now
and be available at https://launchpad.net/ubuntu/+source/linux-
firmware/20230323.gitbcdcfbcf-0ubuntu1.1 in a few hours, and then in the
-proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation on how
to enable and use -proposed.  Your feedback will aid us getting this
update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, what testing has been
performed on the package and change the tag from verification-needed-
lunar to verification-done-lunar. If it does not fix the bug for you,
please add a comment stating that, and change the tag to verification-
failed-lunar. In either case, without details of your testing we will
not be able to proceed.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance for helping!

N.B. The updated package will be released to -updates after the bug(s)
fixed by this package have been verified and the package has been in
-proposed for a minimum of 7 days.

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

Title:
  Add support for X13s wifi

Status in linux-firmware package in Ubuntu:
  Fix Committed
Status in linux-firmware source package in Lunar:
  Fix Committed

Bug description:
  [Impact]

  Wifi on a Lenovo X13s is not coming up. The board ID is unknown.

  [Fix]

  Uptream commit d1dc30480fef ("ath11k: WCN6855 hw2.0: update
  board-2.bin")

  [Test Case]

  Check that wifi comes up.

  [Where Problems Could Occur]

  ath11k based machines could experince Wifi issues if that upstream
  binary is broken.

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


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


[Kernel-packages] [Bug 2018711] Re: Non-Responsive Ubuntu System

2023-05-11 Thread Paul White
** Package changed: linux (Ubuntu) => linux-signed-hwe-5.19 (Ubuntu)

** Changed in: linux-signed-hwe-5.19 (Ubuntu)
   Status: Incomplete => New

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

Title:
  Non-Responsive Ubuntu System

Status in linux-signed-hwe-5.19 package in Ubuntu:
  New

Bug description:
  I use Ubuntu. Sometimes, the system does not have any response with
  mouse and keyboard. Is there any way to solve this problem except
  hitting the reset or power button on the machine?

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.19.0-41-generic 5.19.0-41.42~22.04.1
  ProcVersionSignature: Ubuntu 5.19.0-41.42~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.4
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon May  8 13:59:43 2023
  InstallationDate: Installed on 2023-02-18 (78 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  SourcePackage: linux-signed-hwe-5.19
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2019152] Re: Bluetooth crashes in Ubunti 23.04

2023-05-11 Thread Paul White
** Package changed: ubuntu => bluez (Ubuntu)

** Tags added: lunar

** Summary changed:

- Bluetooth crashes in Ubunti 23.04
+ Bluetooth crashes in Ubuntu 23.04

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

Title:
  Bluetooth crashes in Ubuntu 23.04

Status in bluez package in Ubuntu:
  New

Bug description:
  Bluetooth stops working.
  Mouse (logitech M720) stopped mid scroll. Never had any problems with this 
mouse under Ubuntu before.

  Workaround:
  Reboot fixes the problem.
  Switching in and out of airplane mode gets bluetooth working again 

  Frequency:
  Second time this has happened since upgrade from 22.10 (about 2 weeks ago)

  Limited knowledge fault tracing:

  >sudo systemctl restart bluetooth 
  doesn't make any difference

  >rfkill
  shows no bluetooth device

  >lspci
  ...
  3b:00.0 Network controller: Intel Corporation Wireless 8265 / 8275 (rev 78)
  ...

  Ubuntu settings - show bluetooth is off, but I didn't disable it and
  it can't be re-enabled.

  So I assume the driver has crashed, but I don't know how to find out
  more about this. Could collect some more info next time it happens if
  someone tells me what to do.

  >lsb_release -rd
  No LSB modules are available.
  Description:  Ubuntu 23.04
  Release:  23.04

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


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


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

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

apport-collect 2018711

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

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

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

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

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

Title:
  Non-Responsive Ubuntu System

Status in linux-signed-hwe-5.19 package in Ubuntu:
  New

Bug description:
  I use Ubuntu. Sometimes, the system does not have any response with
  mouse and keyboard. Is there any way to solve this problem except
  hitting the reset or power button on the machine?

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.19.0-41-generic 5.19.0-41.42~22.04.1
  ProcVersionSignature: Ubuntu 5.19.0-41.42~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.4
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon May  8 13:59:43 2023
  InstallationDate: Installed on 2023-02-18 (78 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  SourcePackage: linux-signed-hwe-5.19
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2018711] Re: Non-Responsive Ubuntu System

2023-05-11 Thread Paul White
Angga, it appears you attempted to report your problem against the
'linux' package but it has not reached that package. I'm moving this to
'linux'. If this is still an issue then please provide any additional
information that you might be asked for.

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

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

Title:
  Non-Responsive Ubuntu System

Status in linux-signed-hwe-5.19 package in Ubuntu:
  New

Bug description:
  I use Ubuntu. Sometimes, the system does not have any response with
  mouse and keyboard. Is there any way to solve this problem except
  hitting the reset or power button on the machine?

  ProblemType: Bug
  DistroRelease: Ubuntu 22.04
  Package: linux-image-5.19.0-41-generic 5.19.0-41.42~22.04.1
  ProcVersionSignature: Ubuntu 5.19.0-41.42~22.04.1-generic 5.19.17
  Uname: Linux 5.19.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu82.4
  Architecture: amd64
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  Date: Mon May  8 13:59:43 2023
  InstallationDate: Installed on 2023-02-18 (78 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  SourcePackage: linux-signed-hwe-5.19
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 1968604] Re: rtl8761b usb bluetooth doesn't work following reboot until unplug/replug

2023-05-11 Thread Juerg Haefliger
** Also affects: linux-firmware (Ubuntu Kinetic)
   Importance: Undecided
   Status: New

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

Title:
  rtl8761b usb bluetooth doesn't work following reboot until
  unplug/replug

Status in linux-firmware package in Ubuntu:
  Confirmed
Status in linux-firmware source package in Jammy:
  Confirmed
Status in linux-firmware source package in Kinetic:
  New
Status in linux-firmware source package in Lunar:
  Confirmed

Bug description:
  [Impact]

  I have usb bluetooth 5.0 dongle which uses Realtek RTL8761B chip.
  0bda:8771 Realtek Semiconductor Corp. Bluetooth Radio

  USB adapter very often stops working, can't connect or find other
  bluetooth devices. The adapter can't work even after reboots.

  The following entries appear in the log:
  апр 11 13:47:14 desktop kernel: Bluetooth: hci0: command 0x2005 tx timeout
  апр 11 13:47:16 desktop kernel: Bluetooth: hci0: command 0x2041 tx timeout
  апр 11 13:47:18 desktop kernel: Bluetooth: hci0: command 0x2042 tx timeout

  Firmware loaded correctly, but something is not working.
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: examining hci_ver=0a 
hci_rev=000b lmp_ver=0a lmp_subver=8761
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: rom_version status=0 
version=1
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_fw.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_config.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 27814

  1) I use:
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  2) linux-firmware: 20220329.git681281e4-0ubuntu1
  3) What you expected to happen? I expect a well working bluetooth adapter.
  4) What happened instead? My bluetooth adapter may work, may not. The adapter 
may stop finding and connecting to other devices.

  I've found the same bug https://bugzilla.kernel.org/show_bug.cgi?id=214111#c1
  I've downloaded Windows's archive 
http://download.windowsupdate.com/d/msdownload/update/driver/drvs/2021/05/ca0e770c-6a5d-4de0-b37a-f4b91cccd8c3_7778831d2b9d721cf94d5a8d8c0676ff1b96c874.cab
  I've unpacked file rtl8761b_mp_chip_bt40_fw_asic_rom_patch_new.dll and 
replaced /usr/lib/firmware/rtl_bt/rtl8761bu_fw.bin and deleted 
rtl8761bu_config.bin
  After I changed firmware my usb dongle work fine.

  Could you change firmware rtl8761bu_fw.bin rtl8761bu_config.bin to other 
correct version?
  Could you move Realtek's rtl_bt firmware or RTL8761B's firmware into separate 
packages. I will remove the RTL8761B firmware package and put them manually.

  bluetoothctl --version
  bluetoothctl: 5.64

  hci0:   Type: Primary  Bus: USB
  BD Address: 00:E0:4C:FC:E2:03  ACL MTU: 1021:6  SCO MTU: 255:12
  UP RUNNING
  RX bytes:5751 acl:49 sco:0 events:489 errors:0
  TX bytes:219114 acl:398 sco:0 commands:83 errors:0
  Features: 0xff 0xff 0xff 0xfe 0xdb 0xfd 0x7b 0x87
  Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
  Link policy: RSWITCH HOLD SNIFF PARK
  Link mode: PERIPHERAL ACCEPT
  Name: 'desktop'
  Class: 0x7c0104
  Service Classes: Rendering, Capturing, Object Transfer, Audio, 
Telephony
  Device Class: Computer, Desktop workstation
  HCI Version: 5.1 (0xa)  Revision: 0x97b
  LMP Version: 5.1 (0xa)  Subversion: 0xec43
  Manufacturer: Realtek Semiconductor Corporation (93)

  rfkill list
  0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no

  Realtek's worker updated these bad firmware.
  
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/?id=45dc5f0b8e2f2d43312d22511cb26658b9ee2c80

  [Test Case]

  Connect to and use a bluetooth device connected to a RTL8761B base USB
  BT controller.

  [Fix]

  Use latest rtl8761bu firmware blobs updates from linux-firmware.

  [Where Problems Could Occur]

  These firmwares are specific for the rtl8671b chips. So users of USB
  or UART BT controllers based on that chip could see problems when
  trying to connect to and use bluetooth devices.

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


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


[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-11 Thread Giuliano Lotta
Sorry,
it was for @wtq (wtq-wtq)

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

Title:
  UVC  Quanta 0408:4035  camera PROBLEM

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I bought a Acer Nitro 5 AN517-55 with Quanta ACER HD User Facing',
  USB 0408:4035.

  The camera is reported to have problems by many users:  
  https://linux-hardware.org/?id=usb:0408-4035
  The uvc camera Quanta 0408:4035 does not work with ubuntu 22,04. the camera 
is “recongized” but fails installation.

  My console commands report similar info to other users: 
  
https://unix.stackexchange.com/questions/723504/integrated-camera-not-detected-working-on-acer-nitro-5-an515-58

  
  PROPOSED SOLUTION 
  I got in contact with laurent.pinch...@ideasonboard.com   and with 
riba...@chromium.org , and subscribed to https://www.linuxtv.org/lists. And  
me...@vger.kernel.org mailinglist.

  Laurent proposed me a fix and I modified the 5,15 uvc_driver.c
  version, and loaded it on github

  https://github.com/Giuliano69/uvc_driver-for-Quanta-HD-User-
  Facing-0x0408-0x4035-/blob/main/uvc_driver.c

  I offered to test the fix, so I tried to compile the module with the
  new source.

  COMPILING PROBLEMS
  I’m running **Ubuntu 22.04.1 LTS, with kernel 
  giuliano@Astra2A:/usr/src$ cat /proc/version_signature
  Ubuntu 5.15.0-56.62-generic 5.15.64

  BUT  the linux-source that I found installed seems to be different
  tgiuliano@Astra2A:/usr/src$ ls -al linux-so*
  lrwxrwxrwx 1 root root 47 nov 22 16:08 linux-source-5.15.0.tar.bz2 -> 
linux-source-5.15.0/linux-source-5.15.0.tar.bz2

  I expanded  the tar file, configured the IDE and compiled without error  any 
errors… 
  I manually copied the uvcvideo.ko in 
  /lib/modules/5.15.0-56-
  sudo cp…...

  then tryed to intall the new uvcvideo.ko module
  sudo rmmod uvcvideo && sudo modprobe uvcvideo

  BUT… IT FAILS
  giuliano@Astra2A:~$ sudo rmmod uvcvideo && sudo modprobe uvcvideo
  modprobe: ERROR: could not insert 'uvcvideo': Exec format error

  and dmesg shows
  [25961.151982] usbcore: registered new interface driver uvcvideo
  [26323.125534] usbcore: deregistering interface driver uvcvideo
  [26323.189294] uvcvideo: disagrees about version of symbol module_layout


  These are the TWO modinfo from the old and new uvcvideo modules
  https://pastebin.com/tSj8Exm6
  Basically
  OLD module: vermagic: 5.15.0-56-generic SMP mod_unload modversions 
  NEW module: vermagic: 5.15.64 SMP mod_unload modversions


  -kindly ASK

  HOW can FORCE the uvcdriver.c to match mi kernel version ?
  Have I got OTHER ways to make the kernel module I’m compiling, match my 
running system ?

  I would like to test the module so to confirm the patch and let it
  enter the kernel main stream...

  
  BR
  Giuliano

  PS
  btw…. to allow Eclipse to compile the kernel, I had to pass this commands
  scripts/config --disable CONFIG_SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_TRUSTED_KEYS

  hope that this does not affect the module layout & checking
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  giuliano   2142 F pulseaudio
   /dev/snd/pcmC1D0p:   giuliano   2142 F...m pulseaudio
   /dev/snd/controlC0:  giuliano   2142 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-11-03 (66 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  MachineType: Acer Nitro AN517-55
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-57-generic 
root=UUID=f07e25f9-07e7-4a29-a15e-f481aa0ee0f2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-57.63-generic 5.15.74
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-57-generic N/A
   linux-backports-modules-5.15.0-57-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.9
  Tags:  jammy
  Uname: Linux 5.15.0-57-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 04/20/2022
  dmi.bios.release: 1.6
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.06
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: Ignis_ADH
  dmi.board.vendor: ADL
  dmi.board.version: V1.06
  dmi.chassis.type: 10
  dmi.chassis.vendor: Acer
  dmi.chassis.version: V1.06
  dmi.ec.firmware.release: 1.6
  

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-11 Thread Giuliano Lotta
@blind0
EACH kernel version requires a new build of the module. 
Not only for Major release, but also for minor realese... 

Which is your kernel version ?

uname -r

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

Title:
  UVC  Quanta 0408:4035  camera PROBLEM

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I bought a Acer Nitro 5 AN517-55 with Quanta ACER HD User Facing',
  USB 0408:4035.

  The camera is reported to have problems by many users:  
  https://linux-hardware.org/?id=usb:0408-4035
  The uvc camera Quanta 0408:4035 does not work with ubuntu 22,04. the camera 
is “recongized” but fails installation.

  My console commands report similar info to other users: 
  
https://unix.stackexchange.com/questions/723504/integrated-camera-not-detected-working-on-acer-nitro-5-an515-58

  
  PROPOSED SOLUTION 
  I got in contact with laurent.pinch...@ideasonboard.com   and with 
riba...@chromium.org , and subscribed to https://www.linuxtv.org/lists. And  
me...@vger.kernel.org mailinglist.

  Laurent proposed me a fix and I modified the 5,15 uvc_driver.c
  version, and loaded it on github

  https://github.com/Giuliano69/uvc_driver-for-Quanta-HD-User-
  Facing-0x0408-0x4035-/blob/main/uvc_driver.c

  I offered to test the fix, so I tried to compile the module with the
  new source.

  COMPILING PROBLEMS
  I’m running **Ubuntu 22.04.1 LTS, with kernel 
  giuliano@Astra2A:/usr/src$ cat /proc/version_signature
  Ubuntu 5.15.0-56.62-generic 5.15.64

  BUT  the linux-source that I found installed seems to be different
  tgiuliano@Astra2A:/usr/src$ ls -al linux-so*
  lrwxrwxrwx 1 root root 47 nov 22 16:08 linux-source-5.15.0.tar.bz2 -> 
linux-source-5.15.0/linux-source-5.15.0.tar.bz2

  I expanded  the tar file, configured the IDE and compiled without error  any 
errors… 
  I manually copied the uvcvideo.ko in 
  /lib/modules/5.15.0-56-
  sudo cp…...

  then tryed to intall the new uvcvideo.ko module
  sudo rmmod uvcvideo && sudo modprobe uvcvideo

  BUT… IT FAILS
  giuliano@Astra2A:~$ sudo rmmod uvcvideo && sudo modprobe uvcvideo
  modprobe: ERROR: could not insert 'uvcvideo': Exec format error

  and dmesg shows
  [25961.151982] usbcore: registered new interface driver uvcvideo
  [26323.125534] usbcore: deregistering interface driver uvcvideo
  [26323.189294] uvcvideo: disagrees about version of symbol module_layout


  These are the TWO modinfo from the old and new uvcvideo modules
  https://pastebin.com/tSj8Exm6
  Basically
  OLD module: vermagic: 5.15.0-56-generic SMP mod_unload modversions 
  NEW module: vermagic: 5.15.64 SMP mod_unload modversions


  -kindly ASK

  HOW can FORCE the uvcdriver.c to match mi kernel version ?
  Have I got OTHER ways to make the kernel module I’m compiling, match my 
running system ?

  I would like to test the module so to confirm the patch and let it
  enter the kernel main stream...

  
  BR
  Giuliano

  PS
  btw…. to allow Eclipse to compile the kernel, I had to pass this commands
  scripts/config --disable CONFIG_SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_TRUSTED_KEYS

  hope that this does not affect the module layout & checking
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  giuliano   2142 F pulseaudio
   /dev/snd/pcmC1D0p:   giuliano   2142 F...m pulseaudio
   /dev/snd/controlC0:  giuliano   2142 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-11-03 (66 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  MachineType: Acer Nitro AN517-55
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-57-generic 
root=UUID=f07e25f9-07e7-4a29-a15e-f481aa0ee0f2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-57.63-generic 5.15.74
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-57-generic N/A
   linux-backports-modules-5.15.0-57-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.9
  Tags:  jammy
  Uname: Linux 5.15.0-57-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 04/20/2022
  dmi.bios.release: 1.6
  dmi.bios.vendor: Insyde Corp.
  dmi.bios.version: V1.06
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: Ignis_ADH
  dmi.board.vendor: ADL
  

[Kernel-packages] [Bug 1968604] Re: rtl8761b usb bluetooth doesn't work following reboot until unplug/replug

2023-05-11 Thread Juerg Haefliger
** Description changed:

+ [Impact]
+ 
  I have usb bluetooth 5.0 dongle which uses Realtek RTL8761B chip.
  0bda:8771 Realtek Semiconductor Corp. Bluetooth Radio
  
  USB adapter very often stops working, can't connect or find other
  bluetooth devices. The adapter can't work even after reboots.
  
  The following entries appear in the log:
  апр 11 13:47:14 desktop kernel: Bluetooth: hci0: command 0x2005 tx timeout
  апр 11 13:47:16 desktop kernel: Bluetooth: hci0: command 0x2041 tx timeout
  апр 11 13:47:18 desktop kernel: Bluetooth: hci0: command 0x2042 tx timeout
  
  Firmware loaded correctly, but something is not working.
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: examining hci_ver=0a 
hci_rev=000b lmp_ver=0a lmp_subver=8761
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: rom_version status=0 
version=1
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_fw.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_config.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 27814
  
  1) I use:
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  2) linux-firmware: 20220329.git681281e4-0ubuntu1
  3) What you expected to happen? I expect a well working bluetooth adapter.
  4) What happened instead? My bluetooth adapter may work, may not. The adapter 
may stop finding and connecting to other devices.
  
  I've found the same bug https://bugzilla.kernel.org/show_bug.cgi?id=214111#c1
  I've downloaded Windows's archive 
http://download.windowsupdate.com/d/msdownload/update/driver/drvs/2021/05/ca0e770c-6a5d-4de0-b37a-f4b91cccd8c3_7778831d2b9d721cf94d5a8d8c0676ff1b96c874.cab
  I've unpacked file rtl8761b_mp_chip_bt40_fw_asic_rom_patch_new.dll and 
replaced /usr/lib/firmware/rtl_bt/rtl8761bu_fw.bin and deleted 
rtl8761bu_config.bin
  After I changed firmware my usb dongle work fine.
  
  Could you change firmware rtl8761bu_fw.bin rtl8761bu_config.bin to other 
correct version?
  Could you move Realtek's rtl_bt firmware or RTL8761B's firmware into separate 
packages. I will remove the RTL8761B firmware package and put them manually.
  
  bluetoothctl --version
  bluetoothctl: 5.64
  
  hci0:   Type: Primary  Bus: USB
  BD Address: 00:E0:4C:FC:E2:03  ACL MTU: 1021:6  SCO MTU: 255:12
  UP RUNNING
  RX bytes:5751 acl:49 sco:0 events:489 errors:0
  TX bytes:219114 acl:398 sco:0 commands:83 errors:0
  Features: 0xff 0xff 0xff 0xfe 0xdb 0xfd 0x7b 0x87
  Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
  Link policy: RSWITCH HOLD SNIFF PARK
  Link mode: PERIPHERAL ACCEPT
  Name: 'desktop'
  Class: 0x7c0104
  Service Classes: Rendering, Capturing, Object Transfer, Audio, 
Telephony
  Device Class: Computer, Desktop workstation
  HCI Version: 5.1 (0xa)  Revision: 0x97b
  LMP Version: 5.1 (0xa)  Subversion: 0xec43
  Manufacturer: Realtek Semiconductor Corporation (93)
  
  rfkill list
  0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no
  
  Realtek's worker updated these bad firmware.
  
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/?id=45dc5f0b8e2f2d43312d22511cb26658b9ee2c80
+ 
+ [Test Case]
+ 
+ Connect to and use a bluetooth device connected to a RTL8761B base USB
+ BT controller.
+ 
+ [Fix]
+ 
+ Use latest rtl8761bu firmware blobs updates from linux-firmware.
+ 
+ [Where Problems Could Occur]
+ 
+ These firmwares are specific for the rtl8671b chips. So users of USB or
+ UART BT controllers based on that chip could see problems when trying to
+ connect to and use bluetooth devices.

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

Title:
  rtl8761b usb bluetooth doesn't work following reboot until
  unplug/replug

Status in linux-firmware package in Ubuntu:
  Confirmed
Status in linux-firmware source package in Jammy:
  Confirmed
Status in linux-firmware source package in Lunar:
  Confirmed

Bug description:
  [Impact]

  I have usb bluetooth 5.0 dongle which uses Realtek RTL8761B chip.
  0bda:8771 Realtek Semiconductor Corp. Bluetooth Radio

  USB adapter very often stops working, can't connect or find other
  bluetooth devices. The adapter can't work even after reboots.

  The following entries appear in the log:
  апр 11 13:47:14 desktop kernel: Bluetooth: hci0: command 0x2005 tx timeout
  апр 11 13:47:16 desktop kernel: Bluetooth: hci0: command 0x2041 tx timeout
  апр 11 13:47:18 desktop kernel: Bluetooth: hci0: command 0x2042 tx timeout

  Firmware loaded correctly, but something is not working.
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: examining hci_ver=0a 
hci_rev=000b lmp_ver=0a lmp_subver=8761
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: 

[Kernel-packages] [Bug 1968604] Re: rtl8761b usb bluetooth doesn't work following reboot until unplug/replug

2023-05-11 Thread Juerg Haefliger
** Also affects: linux-firmware (Ubuntu Lunar)
   Importance: Undecided
   Status: New

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

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

** Also affects: linux-firmware (Ubuntu Mantic)
   Importance: Undecided
   Status: Confirmed

** No longer affects: linux-firmware (Ubuntu Focal)

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

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

** No longer affects: linux-firmware (Ubuntu Mantic)

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

Title:
  rtl8761b usb bluetooth doesn't work following reboot until
  unplug/replug

Status in linux-firmware package in Ubuntu:
  Confirmed
Status in linux-firmware source package in Jammy:
  Confirmed
Status in linux-firmware source package in Lunar:
  Confirmed

Bug description:
  I have usb bluetooth 5.0 dongle which uses Realtek RTL8761B chip.
  0bda:8771 Realtek Semiconductor Corp. Bluetooth Radio

  USB adapter very often stops working, can't connect or find other
  bluetooth devices. The adapter can't work even after reboots.

  The following entries appear in the log:
  апр 11 13:47:14 desktop kernel: Bluetooth: hci0: command 0x2005 tx timeout
  апр 11 13:47:16 desktop kernel: Bluetooth: hci0: command 0x2041 tx timeout
  апр 11 13:47:18 desktop kernel: Bluetooth: hci0: command 0x2042 tx timeout

  Firmware loaded correctly, but something is not working.
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: examining hci_ver=0a 
hci_rev=000b lmp_ver=0a lmp_subver=8761
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: rom_version status=0 
version=1
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_fw.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: loading 
rtl_bt/rtl8761bu_config.bin
  апр 11 13:46:54 desktop kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 27814

  1) I use:
  Description:Ubuntu Jammy Jellyfish (development branch)
  Release:22.04
  2) linux-firmware: 20220329.git681281e4-0ubuntu1
  3) What you expected to happen? I expect a well working bluetooth adapter.
  4) What happened instead? My bluetooth adapter may work, may not. The adapter 
may stop finding and connecting to other devices.

  I've found the same bug https://bugzilla.kernel.org/show_bug.cgi?id=214111#c1
  I've downloaded Windows's archive 
http://download.windowsupdate.com/d/msdownload/update/driver/drvs/2021/05/ca0e770c-6a5d-4de0-b37a-f4b91cccd8c3_7778831d2b9d721cf94d5a8d8c0676ff1b96c874.cab
  I've unpacked file rtl8761b_mp_chip_bt40_fw_asic_rom_patch_new.dll and 
replaced /usr/lib/firmware/rtl_bt/rtl8761bu_fw.bin and deleted 
rtl8761bu_config.bin
  After I changed firmware my usb dongle work fine.

  Could you change firmware rtl8761bu_fw.bin rtl8761bu_config.bin to other 
correct version?
  Could you move Realtek's rtl_bt firmware or RTL8761B's firmware into separate 
packages. I will remove the RTL8761B firmware package and put them manually.

  bluetoothctl --version
  bluetoothctl: 5.64

  hci0:   Type: Primary  Bus: USB
  BD Address: 00:E0:4C:FC:E2:03  ACL MTU: 1021:6  SCO MTU: 255:12
  UP RUNNING
  RX bytes:5751 acl:49 sco:0 events:489 errors:0
  TX bytes:219114 acl:398 sco:0 commands:83 errors:0
  Features: 0xff 0xff 0xff 0xfe 0xdb 0xfd 0x7b 0x87
  Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
  Link policy: RSWITCH HOLD SNIFF PARK
  Link mode: PERIPHERAL ACCEPT
  Name: 'desktop'
  Class: 0x7c0104
  Service Classes: Rendering, Capturing, Object Transfer, Audio, 
Telephony
  Device Class: Computer, Desktop workstation
  HCI Version: 5.1 (0xa)  Revision: 0x97b
  LMP Version: 5.1 (0xa)  Subversion: 0xec43
  Manufacturer: Realtek Semiconductor Corporation (93)

  rfkill list
  0: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no

  Realtek's worker updated these bad firmware.
  
https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/?id=45dc5f0b8e2f2d43312d22511cb26658b9ee2c80

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


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


[Kernel-packages] [Bug 2009442] Re: glibc fails for bionic-kvm 4.15.0-1136.141

2023-05-11 Thread Roxana Nicolescu
** Changed in: autopkgtest (Ubuntu)
 Assignee: Roxana Nicolescu (roxanan) => (unassigned)

** Changed in: linux-kvm (Ubuntu Bionic)
 Assignee: (unassigned) => Roxana Nicolescu (roxanan)

** Changed in: linux-kvm (Ubuntu Focal)
 Assignee: (unassigned) => Roxana Nicolescu (roxanan)

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

Title:
  glibc fails for bionic-kvm 4.15.0-1136.141

Status in autopkgtest package in Ubuntu:
  Invalid
Status in linux-kvm package in Ubuntu:
  Invalid
Status in autopkgtest source package in Bionic:
  Invalid
Status in linux-kvm source package in Bionic:
  Fix Committed
Status in autopkgtest source package in Focal:
  Invalid
Status in linux-kvm source package in Focal:
  Fix Committed

Bug description:
  SRU Justification:

  [Impact]
  bionic linux-kvm failure 
https://autopkgtest.ubuntu.com/results/autopkgtest-bionic/bionic/amd64/g/glibc/20230213_154436_b51c9@/log.gz

  From logs
  FAIL: misc/tst-bz21269
  original exit status 1
  error: ../sysdeps/unix/sysv/linux/i386/tst-bz21269.c:55: not true: syscall 
(SYS_modify_ldt, 1, ptr, bytecount) == 0
  error: 1 test failures

  Syscall modify_ldt is not enabled because CONFIG_MODIFY_LDT_SYSCALL=n
  for bionic-kvm, even though generic and newer versions (even kvm
  derivativatives) have it enabled.

  [Fix]
  Custom patch to bionic-kvm to enable CONFIG_MODIFY_LDT_SYSCALL

  [Test Plan]
  Before the fix, autopkgtest for glibc will fail with 
  +-+
  | Encountered regressions that don't match expected failures. |
  +-+
  FAIL: misc/tst-bz21269

  After the fix, it should pass

  [Where problems could occur]
  Regression probability is pretty low, we are adding functionality not 
previously present but looking at focal,jammy this test was fine.

  Note: Not sure why this was not enabled for bionic-kvm, even though
  newer versions of linux kvm has it enabled.

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


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


[Kernel-packages] [Bug 2019108] Re: XSAVE consistency problem disabling avx on KVM guests

2023-05-11 Thread gberche
** Summary changed:

- XSAVE consistency problem preventing avx on KVM guests
+ XSAVE consistency problem disabling avx on KVM guests

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

Title:
  XSAVE consistency problem disabling avx on KVM guests

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  On an openstack KVM guest VM the following kernel message is
  displayed: "XSAVE consistency problem: size 2560 != kernel_size 0"
  (see further traces collected through "ubuntu-bug linux" command)

  As a result, the avx feature isn't enabled in the kernel, failing some
  programs that require it (e.g mongodb requires avx instruction set).

  This problem reproduces on 23.04 Lunar kernel (6.2.0-20), 22.04 Jammy
  HWE kernel (5.19.0-35) but not on Jammy GA kernel (5.15.0-71.78).

  I'm suspecting a kernel regression since v>5.15 that would be more
  strict with possibly QEMU emulated XSAVE CPUID features.

  Related yet unanswered support question:
  https://askubuntu.com/questions/1467238/xsave-consistency-problem-
  preventing-avx-on-kvm-guests-running-jammy-hwe

  This looks similar to the following kernel thread
  
https://lore.kernel.org/lkml/a60333b9-6b42-4730-6509-cf1a0cd5c...@citrix.com/T/

  Although I don't yet have access to the KVM hypervisor host, I'd like
  to know if there is a possible workaround by fixing KVM/QEMU
  configuration or by upgrading KVM/QEMU version.

  Full diagnostics performed so far at https://github.com/orange-
  cloudfoundry/paas-templates/issues/1960#issuecomment-1534484042

  ProblemType: Bug
  DistroRelease: Ubuntu 23.04
  Package: linux-image-6.2.0-20-generic 6.2.0-20.20
  ProcVersionSignature: Ubuntu 6.2.0-20.20-generic 6.2.6
  Uname: Linux 6.2.0-20-generic x86_64
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May 10 09:35 seq
   crw-rw 1 root audio 116, 33 May 10 09:35 timer
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CRDA: N/A
  CasperMD5CheckResult: unknown
  Date: Wed May 10 12:31:18 2023
  IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig'
  Lspci: Error: [Errno 2] No such file or directory: 'lspci'
  Lspci-vt: Error: [Errno 2] No such file or directory: 'lspci'
  Lsusb: Error: [Errno 2] No such file or directory: 'lsusb'
  Lsusb-t: Error: [Errno 2] No such file or directory: 'lsusb'
  Lsusb-v: Error: [Errno 2] No such file or directory: 'lsusb'
  MachineType: OpenStack Foundation OpenStack Nova
  PciMultimedia:

  ProcFB: 0 cirrusdrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-6.2.0-20-generic 
root=UUID=03a4e7a1-715a-4ceb-8fa6-d86a817a7092 ro vconsole.keymap=us 
net.ifnames=0 biosdevname=0 crashkernel=auto selinux=0 plymouth.enable=0 
console=ttyS0,115200n8 earlyprintk=ttyS0 rootdelay=300 ipv6.disable=1 audit=1 
cgroup_enable=memory swapaccount=1 systemd.unified_cgroup_hierarchy=false quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-6.2.0-20-generic N/A
   linux-backports-modules-6.2.0-20-generic  N/A
   linux-firmware20230323.gitbcdcfbcf-0ubuntu1
  RfKill: Error: [Errno 2] No such file or directory: 'rfkill'
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/01/2014
  dmi.bios.release: 0.0
  dmi.bios.vendor: SeaBIOS
  dmi.bios.version: rel-1.10.2-0-g5f4c7b1-20181220_00-szxrtosci1
  dmi.chassis.type: 1
  dmi.chassis.vendor: QEMU
  dmi.chassis.version: pc-i440fx-2.8
  dmi.modalias: 
dmi:bvnSeaBIOS:bvrrel-1.10.2-0-g5f4c7b1-20181220_00-szxrtosci1:bd04/01/2014:br0.0:svnOpenStackFoundation:pnOpenStackNova:pvr13.2.1-20220808115737_bd245dd:cvnQEMU:ct1:cvrpc-i440fx-2.8:sku:
  dmi.product.family: Virtual Machine
  dmi.product.name: OpenStack Nova
  dmi.product.version: 13.2.1-20220808115737_bd245dd
  dmi.sys.vendor: OpenStack Foundation
  ---
  ProblemType: Bug
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May 10 09:35 seq
   crw-rw 1 root audio 116, 33 May 10 09:35 timer
  AplayDevices: Error: [Errno 2] No such file or directory: 'aplay'
  ApportVersion: 2.26.1-0ubuntu2
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory: 'arecord'
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  CRDA: N/A
  CasperMD5CheckResult: unknown
  DistroRelease: Ubuntu 23.04
  IwConfig: Error: [Errno 2] No such file or directory: 'iwconfig'
  Lspci: Error: [Errno 2] No such file or directory: 'lspci'
  Lspci-vt: Error: [Errno 2] No such file or directory: 'lspci'
  Lsusb: Error: [Errno 2] No such file or directory: 'lsusb'
  

[Kernel-packages] [Bug 2000947] Re: UVC Quanta 0408:4035 camera PROBLEM

2023-05-11 Thread BlindB0
@wtq (wtq-wtq)
Hi!
I made this build on clean ubuntu-server 23.04 in VirtualBox.
All I have to do after setup OS:

sudo apt-get install build-essential
git clone https://github.com/Kvalme/uvc.git
cd ./uvc/
git checkout 5ea688c
make

After that I copy uvcvideo.ko to laptop.
If you still have troubles, I can share lib that I build:
https://file.io/KqhwWWkelkTe

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

Title:
  UVC  Quanta 0408:4035  camera PROBLEM

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I bought a Acer Nitro 5 AN517-55 with Quanta ACER HD User Facing',
  USB 0408:4035.

  The camera is reported to have problems by many users:  
  https://linux-hardware.org/?id=usb:0408-4035
  The uvc camera Quanta 0408:4035 does not work with ubuntu 22,04. the camera 
is “recongized” but fails installation.

  My console commands report similar info to other users: 
  
https://unix.stackexchange.com/questions/723504/integrated-camera-not-detected-working-on-acer-nitro-5-an515-58

  
  PROPOSED SOLUTION 
  I got in contact with laurent.pinch...@ideasonboard.com   and with 
riba...@chromium.org , and subscribed to https://www.linuxtv.org/lists. And  
me...@vger.kernel.org mailinglist.

  Laurent proposed me a fix and I modified the 5,15 uvc_driver.c
  version, and loaded it on github

  https://github.com/Giuliano69/uvc_driver-for-Quanta-HD-User-
  Facing-0x0408-0x4035-/blob/main/uvc_driver.c

  I offered to test the fix, so I tried to compile the module with the
  new source.

  COMPILING PROBLEMS
  I’m running **Ubuntu 22.04.1 LTS, with kernel 
  giuliano@Astra2A:/usr/src$ cat /proc/version_signature
  Ubuntu 5.15.0-56.62-generic 5.15.64

  BUT  the linux-source that I found installed seems to be different
  tgiuliano@Astra2A:/usr/src$ ls -al linux-so*
  lrwxrwxrwx 1 root root 47 nov 22 16:08 linux-source-5.15.0.tar.bz2 -> 
linux-source-5.15.0/linux-source-5.15.0.tar.bz2

  I expanded  the tar file, configured the IDE and compiled without error  any 
errors… 
  I manually copied the uvcvideo.ko in 
  /lib/modules/5.15.0-56-
  sudo cp…...

  then tryed to intall the new uvcvideo.ko module
  sudo rmmod uvcvideo && sudo modprobe uvcvideo

  BUT… IT FAILS
  giuliano@Astra2A:~$ sudo rmmod uvcvideo && sudo modprobe uvcvideo
  modprobe: ERROR: could not insert 'uvcvideo': Exec format error

  and dmesg shows
  [25961.151982] usbcore: registered new interface driver uvcvideo
  [26323.125534] usbcore: deregistering interface driver uvcvideo
  [26323.189294] uvcvideo: disagrees about version of symbol module_layout


  These are the TWO modinfo from the old and new uvcvideo modules
  https://pastebin.com/tSj8Exm6
  Basically
  OLD module: vermagic: 5.15.0-56-generic SMP mod_unload modversions 
  NEW module: vermagic: 5.15.64 SMP mod_unload modversions


  -kindly ASK

  HOW can FORCE the uvcdriver.c to match mi kernel version ?
  Have I got OTHER ways to make the kernel module I’m compiling, match my 
running system ?

  I would like to test the module so to confirm the patch and let it
  enter the kernel main stream...

  
  BR
  Giuliano

  PS
  btw…. to allow Eclipse to compile the kernel, I had to pass this commands
  scripts/config --disable CONFIG_SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_REVOCATION_KEYS
  scripts/config --disable SYSTEM_TRUSTED_KEYS

  hope that this does not affect the module layout & checking
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82.3
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  giuliano   2142 F pulseaudio
   /dev/snd/pcmC1D0p:   giuliano   2142 F...m pulseaudio
   /dev/snd/controlC0:  giuliano   2142 F pulseaudio
  CRDA: N/A
  CasperMD5CheckResult: pass
  CurrentDesktop: ubuntu:GNOME
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2022-11-03 (66 days ago)
  InstallationMedia: Ubuntu 22.04.1 LTS "Jammy Jellyfish" - Release amd64 
(20220809.1)
  MachineType: Acer Nitro AN517-55
  NonfreeKernelModules: nvidia_modeset nvidia
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-5.15.0-57-generic 
root=UUID=f07e25f9-07e7-4a29-a15e-f481aa0ee0f2 ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  ProcVersionSignature: Ubuntu 5.15.0-57.63-generic 5.15.74
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-57-generic N/A
   linux-backports-modules-5.15.0-57-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu3.9
  Tags:  jammy
  Uname: Linux 5.15.0-57-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo wireshark
  _MarkForUpload: True
  dmi.bios.date: 

[Kernel-packages] [Bug 2013198] Re: Fix (+follow-up) needed for SEV-SNP vulnerability

2023-05-11 Thread Stefan Bader
** Changed in: linux (Ubuntu Kinetic)
   Importance: Undecided => Medium

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

Title:
  Fix (+follow-up) needed for SEV-SNP vulnerability

Status in linux package in Ubuntu:
  Incomplete
Status in linux-gcp package in Ubuntu:
  New
Status in linux-gcp source package in Jammy:
  New
Status in linux source package in Kinetic:
  New

Bug description:
  From email discussions with Dionna Glazee from Google:

  
  > This email details a critical vulnerability in SEV-SNP attestation
  > report integrity protection that must be patched in SEV-SNP-enabled
  > kernels.
  >
  > I'm reaching out since I've been tracking our progress towards a
  > stable offering of customer access to SEV-SNP "guest requests". I'd
  > like to know how or if y'all test the /dev/sev-guest driver.
  >
  > The reason I ask is because our host KVM injects failures into the
  > guest if requests come too frequently. Test suites that request
  > attestation reports in quick succession will fail without very recent
  > patches or workaround code in user space.
  >
  > Technical details, tl;dr
  > * Nov 21, 2022: Linux Kernel 6.1 included a security patch 47894e0fa
  > that will cause attestation to fail frequently (in GCE). Peter found
  > and patched this vulnerability.
  >
  > Details of security patch 47894e0fa:
  > This patch to sev-guest causes more fail-closed situations. All VMM
  > errors other than INVALID_LEN will wipe out the VMPCK and close the
  > guest's ability to communicate with the security processor.
  > Ratelimit failures will also cause a fail-closed situation.
  >
  > As you may know, guest requests are encrypted by the guest with
  > AES_GCM (not AES_GCM_SIV) and then passed through unencrypted memory
  > to the host's KVM. KVM forwards that to the crypto/ccp driver to
  > deliver to the AMD secure processor to respond to. When the VMM
  > returns an error instead of forwarding a request to the secure
  > processor, then the guest driver *does not* increment its IV. It can
  > therefore reuse an IV on multiple messages with different contents.
  > This breaks AES_GCM's security guarantees.
  >
  > Ratelimiting looks to the guest not as a stalled vCPU, but rather a
  > special error response that AMD will include in their next published
  > version of the GHCB protocol (I believe v2.02). This allows the guest
  > VM to schedule other threads and remain productive while waiting up to
  > 2 seconds for a request to be serviced. The special error code to an
  > unpatched kernel is just forwarded to the guest as an EIO. User space
  > may continue to issue requests, even if it is unsafe to do so.

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


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


  1   2   >