[Kernel-packages] [Bug 2064549] [NEW] pull-request: Fixes: b2b56a163230 ("gpio: tegra186: Check GPIO pin permission before access.")

2024-05-01 Thread Brad Figg
Public bug reported:

The controller has several register bits describing access control
information for a given GPIO pin. When SCR_SEC_[R|W]EN is unset, it
means we have full read/write access to all the registers for given GPIO
pin. When SCR_SEC[R|W]EN is set, it means we need to further check the
accompanying SCR_SEC_G1[R|W] bit to determine read/write access to all
the registers for given GPIO pin.

This check was previously declaring that a GPIO pin was accessible
only if either of the following conditions were met:

  - SCR_SEC_REN + SCR_SEC_WEN both set

or

  - SCR_SEC_REN + SCR_SEC_WEN both set and
SCR_SEC_G1R + SCR_SEC_G1W both set

Update the check to properly handle cases where only one of
SCR_SEC_REN or SCR_SEC_WEN is set.

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

Title:
  pull-request: Fixes: b2b56a163230 ("gpio: tegra186: Check GPIO pin
  permission before access.")

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  The controller has several register bits describing access control
  information for a given GPIO pin. When SCR_SEC_[R|W]EN is unset, it
  means we have full read/write access to all the registers for given GPIO
  pin. When SCR_SEC[R|W]EN is set, it means we need to further check the
  accompanying SCR_SEC_G1[R|W] bit to determine read/write access to all
  the registers for given GPIO pin.

  This check was previously declaring that a GPIO pin was accessible
  only if either of the following conditions were met:

- SCR_SEC_REN + SCR_SEC_WEN both set

  or

- SCR_SEC_REN + SCR_SEC_WEN both set and
  SCR_SEC_G1R + SCR_SEC_G1W both set

  Update the check to properly handle cases where only one of
  SCR_SEC_REN or SCR_SEC_WEN is set.

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


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


[Kernel-packages] [Bug 2063461] [NEW] Perf-stat tool does not support ipc and ipc_rate monitoring on NVIDIA Grace system

2024-04-25 Thread Brad Figg
Public bug reported:

PROBLEM:

While trying to monitor the ipc group for using perf-stat tool, despite it 
being supported, I get the following errors:
$ sudo perf list | grep ipc
  ipc
  ipc_rate
  retired_ipc
  spec_ipc


$ sudo -S perf stat -a -M ipc -- sudo -S stress-ng --cpu 0  -t 10s
Error:
The sys_perf_event_open() syscall returned with 22 (Invalid argument) for event 
(instructions).
/bin/dmesg | grep -i perf may provide additional information.
$ sudo -S perf stat -a -M ipc_rate -- sudo -S stress-ng --cpu 0  -t 10s
Error:
The sys_perf_event_open() syscall returned with 22 (Invalid argument) for event 
(instructions).
/bin/dmesg | grep -i perf may provide additional information.


However, I can get the groups retired_ipc and spec_ipc to work: 
$ sudo -S perf stat -a -M retired_ipc  -- sudo -S stress-ng --cpu 0  -t 10s
Value 0  contains non-numeric: ' '

 Performance counter stats for 'system wide':

96,818,964  INST_RETIRED # 0.58 retired_ipc 
  
   166,601,455  CPU_CYCLES  
  

   0.013516186 seconds time elapsed


$ sudo -S perf stat -a -M spec_ipc  -- sudo -S stress-ng --cpu 0  -t 10s
Value 0  contains non-numeric: ' '

 Performance counter stats for 'system wide':

91,053,297  INST_SPEC# 0.58 spec_ipc
  
   156,558,810  CPU_CYCLES  
  

   0.009877355 seconds time elapsed

SOLUTION:
Please accept the pull request which cherry-picks the following two upstream 
commits:

d43f5491210197196458c1454f2be0eb66d3e4d1 perf vendor events arm64: Update 
stall_slot workaround
 for N2 r0p3
4473949074c35072f598bd525ae51d5455f05745 perf vendor events arm64: Update N2 
and V2 metrics and
 events using Arm telemetry repo

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

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

Title:
  Perf-stat tool does not support ipc and ipc_rate monitoring on NVIDIA
  Grace system

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

Bug description:
  PROBLEM:

  While trying to monitor the ipc group for using perf-stat tool, despite it 
being supported, I get the following errors:
  $ sudo perf list | grep ipc
ipc
ipc_rate
retired_ipc
spec_ipc

  
  $ sudo -S perf stat -a -M ipc -- sudo -S stress-ng --cpu 0  -t 10s
  Error:
  The sys_perf_event_open() syscall returned with 22 (Invalid argument) for 
event (instructions).
  /bin/dmesg | grep -i perf may provide additional information.
  $ sudo -S perf stat -a -M ipc_rate -- sudo -S stress-ng --cpu 0  -t 10s
  Error:
  The sys_perf_event_open() syscall returned with 22 (Invalid argument) for 
event (instructions).
  /bin/dmesg | grep -i perf may provide additional information.


  However, I can get the groups retired_ipc and spec_ipc to work: 
  $ sudo -S perf stat -a -M retired_ipc  -- sudo -S stress-ng --cpu 0  -t 10s
  Value 0  contains non-numeric: ' '

   Performance counter stats for 'system wide':

  96,818,964  INST_RETIRED # 0.58 
retired_ipc   
 166,601,455  CPU_CYCLES


 0.013516186 seconds time elapsed

  
  $ sudo -S perf stat -a -M spec_ipc  -- sudo -S stress-ng --cpu 0  -t 10s
  Value 0  contains non-numeric: ' '

   Performance counter stats for 'system wide':

  91,053,297  INST_SPEC# 0.58 spec_ipc  

 156,558,810  CPU_CYCLES


 0.009877355 seconds time elapsed

  SOLUTION:
  Please accept the pull request which cherry-picks the following two upstream 
commits:

  d43f5491210197196458c1454f2be0eb66d3e4d1 perf vendor events arm64: Update 
stall_slot workaround
   for N2 r0p3
  4473949074c35072f598bd525ae51d5455f05745 perf vendor events arm64: Update N2 
and V2 metrics and
   events using Arm telemetry repo

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


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


[Kernel-packages] [Bug 2061900] Re: apply NVIDIA patches April 6-16, 2024

2024-04-16 Thread Brad Griffis
** Also affects: linux-nvidia-tegra (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  apply NVIDIA patches April 6-16, 2024

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

Bug description:
  Apply NVIDIA patches April 6-16, 2024:

  
  NVIDIA: SAUCE: phy: xusb: Disable USB2 tracking for T234
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3115016

  NVIDIA: SAUCE: enable handling of macronix block protection
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3114006

  PCI: dwc: Restore MSI Receiver mask during resume
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3116302

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


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


[Kernel-packages] [Bug 2061900] [NEW] apply NVIDIA patches April 6-16, 2024

2024-04-16 Thread Brad Griffis
Public bug reported:

Apply NVIDIA patches April 6-16, 2024:


NVIDIA: SAUCE: phy: xusb: Disable USB2 tracking for T234
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3115016

NVIDIA: SAUCE: enable handling of macronix block protection
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3114006

PCI: dwc: Restore MSI Receiver mask during resume
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3116302

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

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

Title:
  apply NVIDIA patches April 6-16, 2024

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

Bug description:
  Apply NVIDIA patches April 6-16, 2024:

  
  NVIDIA: SAUCE: phy: xusb: Disable USB2 tracking for T234
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3115016

  NVIDIA: SAUCE: enable handling of macronix block protection
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3114006

  PCI: dwc: Restore MSI Receiver mask during resume
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3116302

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


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


[Kernel-packages] [Bug 2048942] Re: Openvswitch matching broken for nat packets in the related state

2024-04-09 Thread Brad Cowie
Fixed by linux 6.5.0-27.28

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

Title:
  Openvswitch matching broken for nat packets in the related state

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Linux kernel commit ebddb1404900 ("net: move the nat function to
  nf_nat_ovs for ovs and tc") introduced a regression into the kernel
  openvswitch datapath which prevented the match key from being updated
  when nat was undone for packets in the related conntrack state. This
  issue caused these packets (usually ICMP/ICMPv6 error packets) to
  match the wrong openflow rule when processed by openvswitch.
  This commit is present in Ubuntu kernel versions v6.2 and v6.5.

  This issue was fixed in upstream linux kernel commit e6345d2824a3 ("netfilter:
  nf_nat: fix action not being set for all ct states"). Which is included
  in upstream linux kernel versions v6.7 and v6.6.11. This commit can be found
  in the kernel stable tree:

  
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e6345d2824a3f58aab82428d11645e0da861ac13

  Discussion for this patch can be found on this netdev mailing list
  thread:

  https://lore.kernel.org/netdev/20231221224311.130319-1-b...@faucet.nz/T/

  Test cases to reproduce the bug with both the openvswitch test suite
  and linux kernel self-tests can be found on the ovs-dev mailing list:

  https://mail.openvswitch.org/pipermail/ovs-
  dev/2024-January/410476.html

  Can commit e6345d2824a3 be considered for SRU in jammy-hwe, lunar and
  mantic?

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


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


[Kernel-packages] [Bug 2060337] [NEW] apply NVIDIA patches Mar 22 - April 5, 2024

2024-04-06 Thread Brad Griffis
Public bug reported:

NVIDIA patches Mar 22 - April 5, 2024.

NVIDIA tracking details

soc/tegra: fuse: Remove security_mode fuse from keepout list
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107228

soc/tegra: fuse: Update Tegra234 nvmem keepout list
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107227

arm64: configs: Enable CONFIG_CRYPTO_USER_API_* as module
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107255

arm64: defconfig: Enable DMATEST
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3105125

PCI: tegra194: Fix probe path for Endpoint mode
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3104622

arm64: configs: enable hidraw
https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3103367

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

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

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

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

Title:
  apply NVIDIA patches Mar 22 - April 5, 2024

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

Bug description:
  NVIDIA patches Mar 22 - April 5, 2024.

  NVIDIA tracking details

  soc/tegra: fuse: Remove security_mode fuse from keepout list
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107228

  soc/tegra: fuse: Update Tegra234 nvmem keepout list
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107227

  arm64: configs: Enable CONFIG_CRYPTO_USER_API_* as module
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3107255

  arm64: defconfig: Enable DMATEST
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3105125

  PCI: tegra194: Fix probe path for Endpoint mode
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3104622

  arm64: configs: enable hidraw
  https://git-master.nvidia.com/r/c/3rdparty/canonical/linux-jammy/+/3103367

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


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


[Kernel-packages] [Bug 2060327] [NEW] Reapply the linux-nvidia kernel config options from the 5.15 and 6.5 kernels

2024-04-06 Thread Brad Figg
Public bug reported:

There are a number of configuration options that were set in the 5.15.
and 6.5 nvidia kernels. When the 6.8  based linux-nvidia kernel was
created those config options were not brought forward. This patch set
brings them into the 6.8 kernel.

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

Title:
  Reapply the linux-nvidia kernel config options from the 5.15 and 6.5
  kernels

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are a number of configuration options that were set in the 5.15.
  and 6.5 nvidia kernels. When the 6.8  based linux-nvidia kernel was
  created those config options were not brought forward. This patch set
  brings them into the 6.8 kernel.

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


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


[Kernel-packages] [Bug 2059814] [NEW] Enable GDS in the 6.8 based linux-nvidia kernel

2024-03-29 Thread Brad Figg
Public bug reported:

GDS enables a direct data path for direct memory access (DMA) transfers
between GPU memory and storage, which avoids a bounce buffer through the
CPU. This direct path increases system bandwidth and decreases the
latency and utilization load on the CPU.

This functionality has been enabled in all previous kernel versions and
needs to be in this kernel so there is no loss of functionality for
users.

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

Title:
  Enable GDS in the 6.8 based linux-nvidia kernel

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  GDS enables a direct data path for direct memory access (DMA)
  transfers between GPU memory and storage, which avoids a bounce buffer
  through the CPU. This direct path increases system bandwidth and
  decreases the latency and utilization load on the CPU.

  This functionality has been enabled in all previous kernel versions
  and needs to be in this kernel so there is no loss of functionality
  for users.

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


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


[Kernel-packages] [Bug 2059178] Re: Pull request to fully enable nvidia-fs NVMe support

2024-03-26 Thread Brad Figg
** Changed in: linux-nvidia-6.5 (Ubuntu)
   Status: New => Invalid

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

Title:
  Pull request to fully enable nvidia-fs NVMe support

Status in linux-nvidia-6.5 package in Ubuntu:
  Invalid

Bug description:
  This pull request addresses a missing patch which fully enables GDS
  functionality using NVMe devices.

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


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


[Kernel-packages] [Bug 2059178] [NEW] Pull request to fully enable nvidia-fs NVMe support

2024-03-26 Thread Brad Figg
Public bug reported:

This pull request addresses a missing patch which fully enables GDS
functionality using NVMe devices.

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

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

Title:
  Pull request to fully enable nvidia-fs NVMe support

Status in linux-nvidia-6.5 package in Ubuntu:
  Invalid

Bug description:
  This pull request addresses a missing patch which fully enables GDS
  functionality using NVMe devices.

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


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


[Kernel-packages] [Bug 2058706] [NEW] Tegra234 SD card corruption after rebooting some number of times

2024-03-22 Thread Brad Griffis
Public bug reported:

The SD card is being observed to get corrupted after some number of
reboots, e.g. often in the neighborhood of 10-50 iterations.

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

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

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

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

Title:
  Tegra234 SD card corruption after rebooting some number of times

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

Bug description:
  The SD card is being observed to get corrupted after some number of
  reboots, e.g. often in the neighborhood of 10-50 iterations.

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


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


[Kernel-packages] [Bug 2058550] [NEW] apply nvidia-tegra patches 2024 Mar 9-20

2024-03-20 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-tegra
and linux-nvida-tegra-igx).

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

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

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

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

Title:
  apply nvidia-tegra patches 2024 Mar 9-20

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

Bug description:
  Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-
  tegra and linux-nvida-tegra-igx).

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


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


[Kernel-packages] [Bug 2056498] Re: Kernel crash in amd gpu driver

2024-03-08 Thread Brad Figg
The above crash was happening with large downloads of img files or git
clones of large repositories (Ubuntu kernels) over wifi. I have changed
to hard wired ethernet and I've not been able to reproduce it. With Wifi
it's been very reproduceable.

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

Title:
  Kernel crash in amd gpu driver

Status in linux-signed-hwe-6.5 package in Ubuntu:
  New

Bug description:
  Mar  7 19:07:10 ripper kernel: [9.873519] UBSAN: 
array-index-out-of-bounds in 
/build/linux-hwe-6.5-YpKOvT/linux-hwe-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_hwmgr.c:3676:4
  Mar  7 19:07:10 ripper kernel: [9.873531] index 7 is out of range for 
type 'ATOM_Polaris_SCLK_Dependency_Record [1]'
  Mar  7 19:07:10 ripper kernel: [9.873538] CPU: 4 PID: 849 Comm: 
systemd-udevd Not tainted 6.5.0-17-generic #17~22.04.1-Ubuntu
  Mar  7 19:07:10 ripper kernel: [9.873542] Hardware name: LENOVO 
30E1S3VV00/1046, BIOS S07KT45A 01/20/2022
  Mar  7 19:07:10 ripper kernel: [9.873544] Call Trace:
  Mar  7 19:07:10 ripper kernel: [9.873545]  
  Mar  7 19:07:10 ripper kernel: [9.873547]  dump_stack_lvl+0x48/0x70
  Mar  7 19:07:10 ripper kernel: [9.873551]  dump_stack+0x10/0x20
  Mar  7 19:07:10 ripper kernel: [9.873554]  
__ubsan_handle_out_of_bounds+0xc6/0x110
  Mar  7 19:07:10 ripper kernel: [9.873560]  
smu7_get_pp_table_entry_callback_func_v1+0x9b7/0xa00 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.873897]  ? srso_return_thunk+0x5/0x10
  Mar  7 19:07:10 ripper kernel: [9.873900]  ? vi_pcie_rreg+0x6e/0x90 
[amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.874187]  ? 
__pfx_smu7_get_pp_table_entry_callback_func_v1+0x10/0x10 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.874515]  
get_powerplay_table_entry_v1_0+0xf8/0x490 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.874842]  
smu7_get_pp_table_entry_v1+0x41/0x4c0 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.875169]  
smu7_get_pp_table_entry+0x3d/0x50 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.875495]  
psm_init_power_state_table+0x161/0x250 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.875826]  hwmgr_hw_init+0xe3/0x1e0 
[amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.876150]  pp_hw_init+0x16/0x50 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.876484]  
amdgpu_device_ip_init+0x48d/0x960 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.876749]  
amdgpu_device_init+0x9a2/0x1150 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.877014]  
amdgpu_driver_load_kms+0x1a/0x1c0 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.877278]  amdgpu_pci_probe+0x182/0x450 
[amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.877541]  local_pci_probe+0x47/0xb0
  Mar  7 19:07:10 ripper kernel: [9.877545]  pci_call_probe+0x55/0x190
  Mar  7 19:07:10 ripper kernel: [9.877550]  pci_device_probe+0x84/0x120
  Mar  7 19:07:10 ripper kernel: [9.877553]  ? srso_return_thunk+0x5/0x10
  Mar  7 19:07:10 ripper kernel: [9.877557]  really_probe+0x1cc/0x430
  Mar  7 19:07:10 ripper kernel: [9.877560]  
__driver_probe_device+0x8c/0x190
  Mar  7 19:07:10 ripper kernel: [9.877563]  driver_probe_device+0x24/0xd0
  Mar  7 19:07:10 ripper kernel: [9.877566]  __driver_attach+0x10b/0x210
  Mar  7 19:07:10 ripper kernel: [9.877569]  ? 
__pfx___driver_attach+0x10/0x10
  Mar  7 19:07:10 ripper kernel: [9.877572]  bus_for_each_dev+0x8d/0xf0
  Mar  7 19:07:10 ripper kernel: [9.877576]  driver_attach+0x1e/0x30
  Mar  7 19:07:10 ripper kernel: [9.877579]  bus_add_driver+0x127/0x240
  Mar  7 19:07:10 ripper kernel: [9.877583]  driver_register+0x5e/0x130
  Mar  7 19:07:10 ripper kernel: [9.877586]  ? __pfx_amdgpu_init+0x10/0x10 
[amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.877849]  __pci_register_driver+0x62/0x70
  Mar  7 19:07:10 ripper kernel: [9.877852]  amdgpu_init+0x69/0xff0 [amdgpu]
  Mar  7 19:07:10 ripper kernel: [9.878111]  ? srso_return_thunk+0x5/0x10
  Mar  7 19:07:10 ripper kernel: [9.878114]  do_one_initcall+0x5e/0x340
  Mar  7 19:07:10 ripper kernel: [9.878120]  do_init_module+0x68/0x260
  Mar  7 19:07:10 ripper kernel: [9.878123]  load_module+0xb85/0xcd0
  Mar  7 19:07:10 ripper kernel: [9.878128]  ? srso_return_thunk+0x5/0x10
  Mar  7 19:07:10 ripper kernel: [9.878131]  ? 
security_kernel_post_read_file+0x75/0x90
  Mar  7 19:07:10 ripper kernel: [9.878136]  
init_module_from_file+0x96/0x100
  Mar  7 19:07:10 ripper kernel: [9.878139]  ? srso_return_thunk+0x5/0x10
  Mar  7 19:07:10 ripper kernel: [9.878142]  ? 
init_module_from_file+0x96/0x100
  Mar  7 19:07:10 ripper kernel: [9.878149]  
idempotent_init_module+0x11c/0x2b0
  Mar  7 19:07:10 ripper kernel: [9.878155]  
__x64_sys_finit_module+0x64/0xd0
  Mar  7 19:07:10 ripper kernel: [9.878159]  do_syscall_64+0x5b/0x90
  Mar  7 

[Kernel-packages] [Bug 2056594] [NEW] apply nvidia-tegra patches 2024 Mar 8

2024-03-08 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-tegra
and linux-nvida-tegra-igx).

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

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

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

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

Title:
  apply nvidia-tegra patches 2024 Mar 8

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

Bug description:
  Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-
  tegra and linux-nvida-tegra-igx).

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


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


[Kernel-packages] [Bug 2056498] [NEW] Kernel crash in amd gpu driver

2024-03-07 Thread Brad Figg
Public bug reported:

Mar  7 19:07:10 ripper kernel: [9.873519] UBSAN: array-index-out-of-bounds 
in 
/build/linux-hwe-6.5-YpKOvT/linux-hwe-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_hwmgr.c:3676:4
Mar  7 19:07:10 ripper kernel: [9.873531] index 7 is out of range for type 
'ATOM_Polaris_SCLK_Dependency_Record [1]'
Mar  7 19:07:10 ripper kernel: [9.873538] CPU: 4 PID: 849 Comm: 
systemd-udevd Not tainted 6.5.0-17-generic #17~22.04.1-Ubuntu
Mar  7 19:07:10 ripper kernel: [9.873542] Hardware name: LENOVO 
30E1S3VV00/1046, BIOS S07KT45A 01/20/2022
Mar  7 19:07:10 ripper kernel: [9.873544] Call Trace:
Mar  7 19:07:10 ripper kernel: [9.873545]  
Mar  7 19:07:10 ripper kernel: [9.873547]  dump_stack_lvl+0x48/0x70
Mar  7 19:07:10 ripper kernel: [9.873551]  dump_stack+0x10/0x20
Mar  7 19:07:10 ripper kernel: [9.873554]  
__ubsan_handle_out_of_bounds+0xc6/0x110
Mar  7 19:07:10 ripper kernel: [9.873560]  
smu7_get_pp_table_entry_callback_func_v1+0x9b7/0xa00 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.873897]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.873900]  ? vi_pcie_rreg+0x6e/0x90 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.874187]  ? 
__pfx_smu7_get_pp_table_entry_callback_func_v1+0x10/0x10 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.874515]  
get_powerplay_table_entry_v1_0+0xf8/0x490 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.874842]  
smu7_get_pp_table_entry_v1+0x41/0x4c0 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.875169]  
smu7_get_pp_table_entry+0x3d/0x50 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.875495]  
psm_init_power_state_table+0x161/0x250 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.875826]  hwmgr_hw_init+0xe3/0x1e0 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.876150]  pp_hw_init+0x16/0x50 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.876484]  
amdgpu_device_ip_init+0x48d/0x960 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.876749]  amdgpu_device_init+0x9a2/0x1150 
[amdgpu]
Mar  7 19:07:10 ripper kernel: [9.877014]  
amdgpu_driver_load_kms+0x1a/0x1c0 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.877278]  amdgpu_pci_probe+0x182/0x450 
[amdgpu]
Mar  7 19:07:10 ripper kernel: [9.877541]  local_pci_probe+0x47/0xb0
Mar  7 19:07:10 ripper kernel: [9.877545]  pci_call_probe+0x55/0x190
Mar  7 19:07:10 ripper kernel: [9.877550]  pci_device_probe+0x84/0x120
Mar  7 19:07:10 ripper kernel: [9.877553]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.877557]  really_probe+0x1cc/0x430
Mar  7 19:07:10 ripper kernel: [9.877560]  __driver_probe_device+0x8c/0x190
Mar  7 19:07:10 ripper kernel: [9.877563]  driver_probe_device+0x24/0xd0
Mar  7 19:07:10 ripper kernel: [9.877566]  __driver_attach+0x10b/0x210
Mar  7 19:07:10 ripper kernel: [9.877569]  ? __pfx___driver_attach+0x10/0x10
Mar  7 19:07:10 ripper kernel: [9.877572]  bus_for_each_dev+0x8d/0xf0
Mar  7 19:07:10 ripper kernel: [9.877576]  driver_attach+0x1e/0x30
Mar  7 19:07:10 ripper kernel: [9.877579]  bus_add_driver+0x127/0x240
Mar  7 19:07:10 ripper kernel: [9.877583]  driver_register+0x5e/0x130
Mar  7 19:07:10 ripper kernel: [9.877586]  ? __pfx_amdgpu_init+0x10/0x10 
[amdgpu]
Mar  7 19:07:10 ripper kernel: [9.877849]  __pci_register_driver+0x62/0x70
Mar  7 19:07:10 ripper kernel: [9.877852]  amdgpu_init+0x69/0xff0 [amdgpu]
Mar  7 19:07:10 ripper kernel: [9.878111]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878114]  do_one_initcall+0x5e/0x340
Mar  7 19:07:10 ripper kernel: [9.878120]  do_init_module+0x68/0x260
Mar  7 19:07:10 ripper kernel: [9.878123]  load_module+0xb85/0xcd0
Mar  7 19:07:10 ripper kernel: [9.878128]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878131]  ? 
security_kernel_post_read_file+0x75/0x90
Mar  7 19:07:10 ripper kernel: [9.878136]  init_module_from_file+0x96/0x100
Mar  7 19:07:10 ripper kernel: [9.878139]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878142]  ? 
init_module_from_file+0x96/0x100
Mar  7 19:07:10 ripper kernel: [9.878149]  
idempotent_init_module+0x11c/0x2b0
Mar  7 19:07:10 ripper kernel: [9.878155]  __x64_sys_finit_module+0x64/0xd0
Mar  7 19:07:10 ripper kernel: [9.878159]  do_syscall_64+0x5b/0x90
Mar  7 19:07:10 ripper kernel: [9.878161]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878164]  ? ksys_mmap_pgoff+0x120/0x270
Mar  7 19:07:10 ripper kernel: [9.878167]  ? __secure_computing+0x89/0xf0
Mar  7 19:07:10 ripper kernel: [9.878170]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878173]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878176]  ? 
exit_to_user_mode_prepare+0x30/0xb0
Mar  7 19:07:10 ripper kernel: [9.878179]  ? srso_return_thunk+0x5/0x10
Mar  7 19:07:10 ripper kernel: [9.878181]  ? 
syscall_exit_to_user_mode+0x37/0x60
Mar  7 

[Kernel-packages] [Bug 2056486] [NEW] apply nvidia-tegra patches 2024 Mar 1-7

2024-03-07 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-tegra
and linux-nvida-tegra-igx).

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

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

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

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

Title:
  apply nvidia-tegra patches 2024 Mar 1-7

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

Bug description:
  Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-
  tegra and linux-nvida-tegra-igx).

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


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


[Kernel-packages] [Bug 2055712] [NEW] Pull-request to address bug in mm/page_alloc.c

2024-03-01 Thread Brad Figg
Public bug reported:


The current calculation of min_free_kbytes only uses ZONE_DMA and
ZONE_NORMAL pages,but the ZONE_MOVABLE zone->_watermark[WMARK_MIN] will
also divide part of min_free_kbytes.This will cause the min watermark of
ZONE_NORMAL to be too small in the presence of ZONE_MOVEABLE.

__GFP_HIGH and PF_MEMALLOC allocations usually don't need movable zone
pages, so just like ZONE_HIGHMEM, cap pages_min to a small value in
__setup_per_zone_wmarks().

On my testing machine with 16GB of memory (transparent hugepage is turned
off by default, and movablecore=12G is configured) The following is a
comparative test data of watermark_min

no patchadd patch
ZONE_DMA1   8
ZONE_DMA32  151 709
ZONE_NORMAL 233 1113
ZONE_MOVABLE1434128
min_free_kbytes 72887326

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

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

Title:
  Pull-request to address bug in mm/page_alloc.c

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

Bug description:
  
  The current calculation of min_free_kbytes only uses ZONE_DMA and
  ZONE_NORMAL pages,but the ZONE_MOVABLE zone->_watermark[WMARK_MIN] will
  also divide part of min_free_kbytes.This will cause the min watermark of
  ZONE_NORMAL to be too small in the presence of ZONE_MOVEABLE.

  __GFP_HIGH and PF_MEMALLOC allocations usually don't need movable zone
  pages, so just like ZONE_HIGHMEM, cap pages_min to a small value in
  __setup_per_zone_wmarks().

  On my testing machine with 16GB of memory (transparent hugepage is turned
  off by default, and movablecore=12G is configured) The following is a
  comparative test data of watermark_min

  no patchadd patch
  ZONE_DMA1   8
  ZONE_DMA32  151 709
  ZONE_NORMAL 233 1113
  ZONE_MOVABLE1434128
  min_free_kbytes 72887326

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


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


[Kernel-packages] [Bug 2055468] [NEW] apply nvidia-tegra patches 2024 Feb 6-29

2024-02-29 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-tegra
and linux-nvida-tegra-igx).

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

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

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

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

Title:
  apply nvidia-tegra patches 2024 Feb 6-29

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

Bug description:
  Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-
  tegra and linux-nvida-tegra-igx).

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


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


[Kernel-packages] [Bug 2055060] [NEW] Pull-request: Apply mm/mglru patches to fix soft lockup

2024-02-26 Thread Brad Figg
Public bug reported:

[ 1918.995157] watchdog: BUG: soft lockup - CPU#0 stuck for 1725s! [kswapd0:42]
[ 1919.002366] Modules linked in: raid10 raid456 libcrc32c async_raid6_recov 
async_memcpy async_pq async_xor xor xor_neon async_tx raid6_pq raid1 raid0 
multipath linear scsi_dh_alua scsi_dh_emc scsi_dh_rdac nvme nvme_core 
nvme_common
[ 1919.023319] CPU: 0 PID: 42 Comm: kswapd0 Tainted: G L 
6.5.0-1011-nvidia #11-Ubuntu
[ 1919.032483] Hardware name: NVIDIA Grace Hopper x4 P4496/UT2.1 DP Chassis, 
BIOS 01.02.00 20240120
[ 1919.042180] pstate: 8349 (Nzcv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
[ 1919.049300] pc : __rcu_read_unlock+0x10/0x70
[ 1919.053666] lr : shrink_many+0x280/0x468
[ 1919.057675] sp : 80008149bb70
[ 1919.061060] x29: 80008149bb70 x28: 3ddfa600 x27: deee387571e0
[ 1919.068366] x26: deee383154f8 x25: 0001 x24: 301c90bf4400
[ 1919.075671] x23:  x22:  x21: 301c90bf4400
[ 1919.082975] x20: 02d3 x19: 80008149bd68 x18: 
[ 1919.090281] x17:  x16:  x15: 
[ 1919.097585] x14:  x13:  x12: 
[ 1919.104890] x11:  x10:  x9 : deee355c2008
[ 1919.112195] x8 : 80008149bde0 x7 :  x6 : 0020
[ 1919.119500] x5 : 0001 x4 :  x3 : 
[ 1919.126804] x2 :  x1 : 0001 x0 : 301c90bf4400
[ 1919.134109] Call trace:
[ 1919.136606]  __rcu_read_unlock+0x10/0x70
[ 1919.140615]  lru_gen_shrink_node+0x180/0x218
[ 1919.144979]  shrink_node+0x400/0x470
[ 1919.148633]  balance_pgdat+0x2c8/0x810
[ 1919.152464]  kswapd+0x12c/0x268
[ 1919.155672]  kthread+0x104/0x110
[ 1919.158970]  ret_from_fork+0x10/0x20
[ 1942.995157] watchdog: BUG: soft lockup - CPU#0 stuck for 1747s! [kswapd0:42]
[ 1943.002366] Modules linked in: raid10 raid456 libcrc32c async_raid6_recov 
async_memcpy async_pq async_xor xor xor_neon async_tx raid6_pq raid1 raid0 
multipath linear scsi_dh_alua scsi_dh_emc scsi_dh_rdac nvme nvme_core 
nvme_common
[ 1943.023319] CPU: 0 PID: 42 Comm: kswapd0 Tainted: G L 
6.5.0-1011-nvidia #11-Ubuntu
[ 1943.032483] Hardware name: NVIDIA Grace Hopper x4 P4496/UT2.1 DP Chassis, 
BIOS 01.02.00 20240120
[ 1943.042180] pstate: 6349 (nZCv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
[ 1943.049300] pc : lru_gen_shrink_node+0x60/0x218
[ 1943.053932] lr : lru_gen_shrink_node+0x1b8/0x218
[ 1943.058651] sp : 80008149bbf0
[ 1943.062037] x29: 80008149bbf0 x28: 3ddfa600 x27: deee387571e0
[ 1943.069342] x26: deee383154f8 x25: 80008149bde0 x24: 07c0
[ 1943.076647] x23: 0001 x22:  x21: 3ddfe600
[ 1943.083952] x20: 3ddfa600 x19: 80008149bd68 x18: 
[ 1943.091257] x17:  x16:  x15: 
[ 1943.098562] x14:  x13:  x12: 
[ 1943.105867] x11:  x10:  x9 : deee359e4bb8
[ 1943.113172] x8 : 80008149bde0 x7 :  x6 : 
[ 1943.120477] x5 :  x4 :  x3 : 
[ 1943.127782] x2 :  x1 :  x0 : 301c90bf4400
[ 1943.135086] Call trace:
[ 1943.137583]  lru_gen_shrink_node+0x60/0x218
[ 1943.141858]  shrink_node+0x400/0x470
[ 1943.145511]  balance_pgdat+0x2c8/0x810
[ 1943.149342]  kswapd+0x12c/0x268
[ 1943.152551]  kthread+0x104/0x110
[ 1943.155849]  ret_from_fork+0x10/0x20

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

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

Title:
  Pull-request: Apply mm/mglru patches to fix soft lockup

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

Bug description:
  [ 1918.995157] watchdog: BUG: soft lockup - CPU#0 stuck for 1725s! 
[kswapd0:42]
  [ 1919.002366] Modules linked in: raid10 raid456 libcrc32c async_raid6_recov 
async_memcpy async_pq async_xor xor xor_neon async_tx raid6_pq raid1 raid0 
multipath linear scsi_dh_alua scsi_dh_emc scsi_dh_rdac nvme nvme_core 
nvme_common
  [ 1919.023319] CPU: 0 PID: 42 Comm: kswapd0 Tainted: G L 
6.5.0-1011-nvidia #11-Ubuntu
  [ 1919.032483] Hardware name: NVIDIA Grace Hopper x4 P4496/UT2.1 DP Chassis, 
BIOS 01.02.00 20240120
  [ 1919.042180] pstate: 8349 (Nzcv daif +PAN -UAO +TCO +DIT -SSBS BTYPE=--)
  [ 1919.049300] pc : __rcu_read_unlock+0x10/0x70
  [ 1919.053666] lr : shrink_many+0x280/0x468
  [ 1919.057675] sp : 80008149bb70
  [ 1919.061060] x29: 80008149bb70 x28: 3ddfa600 x27: 
deee387571e0
  [ 1919.068366] x26: deee383154f8 x25: 

[Kernel-packages] [Bug 2055057] [NEW] Pull-request: apply upstream patch to reject events meant for other PMUs

2024-02-26 Thread Brad Figg
Public bug reported:


Coresight PMU driver didn't reject events meant for other PMUs.
This caused some of the Core PMU events disappearing from
the output of "perf list". In addition, trying to run e.g.

 $ perf stat -e r2 sleep 1

made Coresight PMU driver to handle the event instead of letting
Core PMU driver to deal with it.

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

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

Title:
  Pull-request: apply upstream patch to reject events meant for other
  PMUs

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

Bug description:
  
  Coresight PMU driver didn't reject events meant for other PMUs.
  This caused some of the Core PMU events disappearing from
  the output of "perf list". In addition, trying to run e.g.

   $ perf stat -e r2 sleep 1

  made Coresight PMU driver to handle the event instead of letting
  Core PMU driver to deal with it.

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


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


[Kernel-packages] [Bug 2054984] [NEW] Pull request: Enable support of ETE and TRBE in ACPI environment.

2024-02-25 Thread Brad Figg
Public bug reported:

This series enables detection of ACPI based TRBE devices via a stand alone
purpose built representative platform device. But as a pre-requisite this
changes coresight_platform_data structure assignment for the TRBE device.

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

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

Title:
  Pull request: Enable support of ETE and TRBE in ACPI environment.

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

Bug description:
  This series enables detection of ACPI based TRBE devices via a stand alone
  purpose built representative platform device. But as a pre-requisite this
  changes coresight_platform_data structure assignment for the TRBE device.

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


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


[Kernel-packages] [Bug 2053148] [NEW] Pull request: address GPIO initialization regression on Grace systems

2024-02-14 Thread Brad Figg
Public bug reported:

 The tegra186_gpio_is_accessible() function
incorrectly declares GPIO lines that have only one of
TEGRA186_GPIO_SCR_SEC_REN _or_ TEGRA186_GPIO_SCR_SEC_WEN set as being
inaccessible.

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

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

Title:
  Pull request: address GPIO initialization regression  on Grace systems

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

Bug description:
   The tegra186_gpio_is_accessible() function
  incorrectly declares GPIO lines that have only one of
  TEGRA186_GPIO_SCR_SEC_REN _or_ TEGRA186_GPIO_SCR_SEC_WEN set as being
  inaccessible.

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


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


[Kernel-packages] [Bug 2052479] [NEW] apply nvidia-tegra patches 2024 Jan 16-Feb 5

2024-02-05 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra and linux-nvida-tegra-igx.

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

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

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

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

Title:
  apply nvidia-tegra patches 2024 Jan 16-Feb 5

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

Bug description:
  Apply patches to linux-nvidia-tegra and linux-nvida-tegra-igx.

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


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


[Kernel-packages] [Bug 2049537] [NEW] Pull request for: peer-memory, ACPI thermal issues and coresight etm4x issues

2024-01-16 Thread Brad Figg
Public bug reported:

* Add support of "Thermal fast Sampling Period (_TFP)" for passive cooling.
* Finer grained CPU throttling
* The peer_memory_client scheme allows a driver to register with the ib_umem
system that it has the ability to understand user virtual address ranges that 
are not compatible with get_user_pages(). For instance VMAs created with 
io_remap_pfn_range(), or other driver special VMA.

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

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

Title:
  Pull request for: peer-memory, ACPI thermal issues and coresight
  etm4x issues

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

Bug description:
  * Add support of "Thermal fast Sampling Period (_TFP)" for passive cooling.
  * Finer grained CPU throttling
  * The peer_memory_client scheme allows a driver to register with the ib_umem
  system that it has the ability to understand user virtual address ranges that 
are not compatible with get_user_pages(). For instance VMAs created with 
io_remap_pfn_range(), or other driver special VMA.

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


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


[Kernel-packages] [Bug 2049536] [NEW] apply nvidia-tegra patches 2024 Jan 1-15

2024-01-16 Thread Brad Griffis
Public bug reported:

Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-tegra
and linux-nvida-tegra-igx).

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

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

Title:
  apply nvidia-tegra patches 2024 Jan 1-15

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

Bug description:
  Apply patches to linux-nvidia-tegra (for use in both linux-nvidia-
  tegra and linux-nvida-tegra-igx).

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


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


[Kernel-packages] [Bug 2048942] [NEW] Openvswitch matching broken for nat packets in the related state

2024-01-10 Thread Brad Cowie
Public bug reported:

Linux kernel commit ebddb1404900 ("net: move the nat function to
nf_nat_ovs for ovs and tc") introduced a regression into the kernel
openvswitch datapath which prevented the match key from being updated
when nat was undone for packets in the related conntrack state. This
issue caused these packets (usually ICMP/ICMPv6 error packets) to
match the wrong openflow rule when processed by openvswitch.
This commit is present in Ubuntu kernel versions v6.2 and v6.5.

This issue was fixed in upstream linux kernel commit e6345d2824a3 ("netfilter:
nf_nat: fix action not being set for all ct states"). Which is included
in upstream linux kernel versions v6.7 and v6.6.11. This commit can be found
in the kernel stable tree:

https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e6345d2824a3f58aab82428d11645e0da861ac13

Discussion for this patch can be found on this netdev mailing list
thread:

https://lore.kernel.org/netdev/20231221224311.130319-1-b...@faucet.nz/T/

Test cases to reproduce the bug with both the openvswitch test suite
and linux kernel self-tests can be found on the ovs-dev mailing list:

https://mail.openvswitch.org/pipermail/ovs-dev/2024-January/410476.html

Can commit e6345d2824a3 be considered for SRU in jammy-hwe, lunar and
mantic?

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

Title:
  Openvswitch matching broken for nat packets in the related state

Status in linux package in Ubuntu:
  New

Bug description:
  Linux kernel commit ebddb1404900 ("net: move the nat function to
  nf_nat_ovs for ovs and tc") introduced a regression into the kernel
  openvswitch datapath which prevented the match key from being updated
  when nat was undone for packets in the related conntrack state. This
  issue caused these packets (usually ICMP/ICMPv6 error packets) to
  match the wrong openflow rule when processed by openvswitch.
  This commit is present in Ubuntu kernel versions v6.2 and v6.5.

  This issue was fixed in upstream linux kernel commit e6345d2824a3 ("netfilter:
  nf_nat: fix action not being set for all ct states"). Which is included
  in upstream linux kernel versions v6.7 and v6.6.11. This commit can be found
  in the kernel stable tree:

  
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e6345d2824a3f58aab82428d11645e0da861ac13

  Discussion for this patch can be found on this netdev mailing list
  thread:

  https://lore.kernel.org/netdev/20231221224311.130319-1-b...@faucet.nz/T/

  Test cases to reproduce the bug with both the openvswitch test suite
  and linux kernel self-tests can be found on the ovs-dev mailing list:

  https://mail.openvswitch.org/pipermail/ovs-
  dev/2024-January/410476.html

  Can commit e6345d2824a3 be considered for SRU in jammy-hwe, lunar and
  mantic?

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


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


[Kernel-packages] [Bug 2048815] [NEW] Pull request to address TPM SPI devices

2024-01-09 Thread Brad Figg
Public bug reported:

TPM devices may insert wait state on last clock cycle of ADDR phase.
For SPI controllers that support full-duplex transfers, this can be
detected using software by reading the MISO line. For SPI controllers
that only support half-duplex transfers, such as the Tegra QSPI, it is
not possible to detect the wait signal from software.

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

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

Title:
  Pull request to address TPM SPI devices

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

Bug description:
  TPM devices may insert wait state on last clock cycle of ADDR phase.
  For SPI controllers that support full-duplex transfers, this can be
  detected using software by reading the MISO line. For SPI controllers
  that only support half-duplex transfers, such as the Tegra QSPI, it is
  not possible to detect the wait signal from software.

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


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


[Kernel-packages] [Bug 2030100] Re: zfs-dkms 2.1.5-1ubuntu6~22.04.1: zfs kernel module failed to build

2023-12-11 Thread Brad Stancel
@cement_head - This is what I did just yesterday to solve the issue. I
am using kernel Linux 6.2.0-37-generic x86_64 on Ubuntu 22.04. Mind you,
my ZFS pool is *not* on the same disk that is running my OS. That disk
runs ext4 and I have six disks in a raidz2-0 array that I use for
storage.


If you are running a kernel put out by one of the Ubuntu apt repo's like I am, 
then you can do the following:

- Write down the names of each of your ZFS pools (for instance, I have one 
called "z-storage" in a raidz2-0 array)
- Uninstall the zfs-dkms package from the Ubuntu repos since it only handles 
kernels up to 5.19 (sudo apt remove zfs-dkms)
- Now re-import your ZFS pool (sudo zpool import ) (i.e. 
for me - sudo zpool import z-storage)
- Reboot
- Once your OS comes back up, check the status of any ZFS pools (sudo zpool 
status -v), or just list them if you prefer (sudo zpool list)
- If your ZFS pool does not show up, make sure to check the settings in file 
"/etc/default/zfs" to make sure that ZFS is loading the key, mounting and 
unmounting, sharing and unsharing. If not then adjust those settings, reimport 
the ZFS pool and reboot like above and you should be good to go.

Hope that helps and works for you and anyone else that also has this
issue.

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

Title:
  zfs-dkms 2.1.5-1ubuntu6~22.04.1: zfs kernel module failed to build

Status in zfs-linux package in Ubuntu:
  Confirmed

Bug description:
  After this mornings update to Linux Kernel 6.2

  ProblemType: Package
  DistroRelease: Ubuntu 22.04
  Package: zfs-dkms 2.1.5-1ubuntu6~22.04.1
  ProcVersionSignature: Ubuntu 6.2.0-26.26~22.04.1-generic 6.2.13
  Uname: Linux 6.2.0-26-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  ApportVersion: 2.20.11-0ubuntu82.5
  Architecture: amd64
  CasperMD5CheckResult: pass
  DKMSBuildLog:
   DKMS make.log for zfs-2.1.5 for kernel 6.2.0-26-generic (x86_64)
   Fri Aug  4 10:17:48 AM PDT 2023
   make: *** No targets specified and no makefile found.  Stop.
  DKMSKernelVersion: 6.2.0-26-generic
  Date: Fri Aug  4 10:17:49 2023
  InstallationDate: Installed on 2022-11-19 (258 days ago)
  InstallationMedia: Ubuntu 22.04 LTS "Jammy Jellyfish" - Release amd64 
(20220419)
  PackageArchitecture: all
  PackageVersion: 2.1.5-1ubuntu6~22.04.1
  Python3Details: /usr/bin/python3.10, Python 3.10.12, python3-minimal, 
3.10.6-1~22.04
  PythonDetails: N/A
  RelatedPackageVersions:
   dpkg 1.21.1ubuntu2.2
   apt  2.4.9
  SourcePackage: zfs-linux
  Title: zfs-dkms 2.1.5-1ubuntu6~22.04.1: zfs kernel module failed to build
  UpgradeStatus: No upgrade log present (probably fresh install)

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


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


[Kernel-packages] [Bug 2046011] [NEW] apply nvidia igx patches for Nov 29 - Dec 8 2023

2023-12-08 Thread Brad Griffis
Public bug reported:

Additional patches for IGX kernel.

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

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

Title:
  apply nvidia igx patches for Nov 29 - Dec 8 2023

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

Bug description:
  Additional patches for IGX kernel.

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


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


[Kernel-packages] [Bug 2045080] [NEW] apply nvidia igx patches for Oct 19 - Nov 28 2023

2023-11-28 Thread Brad Griffis
Public bug reported:

Patches for IGX.  These are intended for releases that come after the
r36.2 DP release.

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

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

Title:
  apply nvidia igx patches for Oct 19 - Nov 28 2023

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

Bug description:
  Patches for IGX.  These are intended for releases that come after the
  r36.2 DP release.

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


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


[Kernel-packages] [Bug 2043132] [NEW] Pull request to enable GDS optimization in the Grace enablement kernel

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

These are the same patches that have been applied to the 5.19 and 6.2
kernels to enable GDS. NVIDIA is requesting they be applied to the 6.5
kernel which is used for Grace enablement.

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

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

Title:
  Pull request to enable GDS optimization in the Grace enablement kernel

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

Bug description:
  These are the same patches that have been applied to the 5.19 and 6.2
  kernels to enable GDS. NVIDIA is requesting they be applied to the 6.5
  kernel which is used for Grace enablement.

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


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


[Kernel-packages] [Bug 2043059] [NEW] Installation errors out when installing in a chroot

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

Processing triggers for linux-image-5.15.0-1040-nvidia (5.15.0-1040.40) ...
/etc/kernel/postinst.d/dkms:
 * dkms: running auto installation service for kernel 5.15.0-1040-nvidia
   ...done.
/etc/kernel/postinst.d/initramfs-tools:
update-initramfs: Generating /boot/initrd.img-5.15.0-1040-nvidia
cryptsetup: WARNING: Couldn't determine root device
W: Couldn't identify type of root file system for fsck hook
cp: cannot stat '/etc/iscsi/initiatorname.iscsi': No such file or directory
/etc/kernel/postinst.d/kdump-tools:
kdump-tools: Generating /var/lib/kdump/initrd.img-5.15.0-1040-nvidia
mkinitramfs: failed to determine device for /
mkinitramfs: workaround is MODULES=most, check:
grep -r MODULES /var/lib/kdump/initramfs-tools

Error please report bug on initramfs-tools
Include the output of 'mount' and 'cat /proc/mounts'
update-initramfs: failed for /var/lib/kdump/initrd.img-5.15.0-1040-nvidia with 
1.
run-parts: /etc/kernel/postinst.d/kdump-tools exited with return code 1
dpkg: error processing package linux-image-5.15.0-1040-nvidia (--configure):
 installed linux-image-5.15.0-1040-nvidia package post-installation script 
subprocess returned error exit status 1
Errors were encountered while processing:
 linux-image-5.15.0-1040-nvidia
E: Sub-process /usr/bin/dpkg returned an error code (1)

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

Title:
  Installation errors out when installing in a chroot

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  Processing triggers for linux-image-5.15.0-1040-nvidia (5.15.0-1040.40) ...
  /etc/kernel/postinst.d/dkms:
   * dkms: running auto installation service for kernel 5.15.0-1040-nvidia
 ...done.
  /etc/kernel/postinst.d/initramfs-tools:
  update-initramfs: Generating /boot/initrd.img-5.15.0-1040-nvidia
  cryptsetup: WARNING: Couldn't determine root device
  W: Couldn't identify type of root file system for fsck hook
  cp: cannot stat '/etc/iscsi/initiatorname.iscsi': No such file or directory
  /etc/kernel/postinst.d/kdump-tools:
  kdump-tools: Generating /var/lib/kdump/initrd.img-5.15.0-1040-nvidia
  mkinitramfs: failed to determine device for /
  mkinitramfs: workaround is MODULES=most, check:
  grep -r MODULES /var/lib/kdump/initramfs-tools

  Error please report bug on initramfs-tools
  Include the output of 'mount' and 'cat /proc/mounts'
  update-initramfs: failed for /var/lib/kdump/initrd.img-5.15.0-1040-nvidia 
with 1.
  run-parts: /etc/kernel/postinst.d/kdump-tools exited with return code 1
  dpkg: error processing package linux-image-5.15.0-1040-nvidia (--configure):
   installed linux-image-5.15.0-1040-nvidia package post-installation script 
subprocess returned error exit status 1
  Errors were encountered while processing:
   linux-image-5.15.0-1040-nvidia
  E: Sub-process /usr/bin/dpkg returned an error code (1)

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


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


[Kernel-packages] [Bug 2042697] [NEW] Pull request to address thermal core issues

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

The Grace development team has not been testing the 6.2 Ubuntu kernel
but instead a newer kernel. When they run their thermal tests on a 6.2
kernel they are running into failures. Investigations have turned up
several missing kernel patches. These patches are clean cherry-picks and
have been tested and confirmed to fix the thermal issues we are seeing.

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

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

Title:
  Pull request to address thermal core issues

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

Bug description:
  The Grace development team has not been testing the 6.2 Ubuntu kernel
  but instead a newer kernel. When they run their thermal tests on a 6.2
  kernel they are running into failures. Investigations have turned up
  several missing kernel patches. These patches are clean cherry-picks
  and have been tested and confirmed to fix the thermal issues we are
  seeing.

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


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


[Kernel-packages] [Bug 2039730] [NEW] apply nvidia igx patches for Sep 30 - Oct 18

2023-10-18 Thread Brad Griffis
Public bug reported:

Need to update the latest kernel patches for IGX.  There are 4 new
patches.

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

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

Title:
  apply nvidia igx patches for Sep 30 - Oct 18

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

Bug description:
  Need to update the latest kernel patches for IGX.  There are 4 new
  patches.

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


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


[Kernel-packages] [Bug 2038165] Re: apply nvidia igx patches for Sep 20-29

2023-10-02 Thread Brad Griffis
** Summary changed:

- apply nvidia igx patches for Aug 29 - Sep 19
+ apply nvidia igx patches for Sep 20-29

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

Title:
  apply nvidia igx patches for Sep 20-29

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

Bug description:
  Most of these patches relate to simpledrm support. Notably I am NOT
  sending the config change that enables simpledrm. That is expected to
  happen in the future.

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


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


[Kernel-packages] [Bug 2038165] [NEW] apply nvidia igx patches for Aug 29 - Sep 19

2023-10-02 Thread Brad Griffis
Public bug reported:

Most of these patches relate to simpledrm support. Notably I am NOT
sending the config change that enables simpledrm. That is expected to
happen in the future.

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

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

Title:
  apply nvidia igx patches for Aug 29 - Sep 19

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

Bug description:
  Most of these patches relate to simpledrm support. Notably I am NOT
  sending the config change that enables simpledrm. That is expected to
  happen in the future.

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


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


[Kernel-packages] [Bug 2038099] [NEW] Enable building and signing of the nvidia-fs out-of-tree kernel module.

2023-10-02 Thread Brad Figg
Public bug reported:

[Issue]

The nvidia-fs kernel module is a must have for Nvidia optimized kernels.
There is now a version that is compatible with the Grace processor.
Integrate the changes necessary to build and sign this out-of-tree
kernel module.

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

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

Title:
  Enable building and signing of the nvidia-fs out-of-tree kernel
  module.

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

Bug description:
  [Issue]

  The nvidia-fs kernel module is a must have for Nvidia optimized
  kernels. There is now a version that is compatible with the Grace
  processor. Integrate the changes necessary to build and sign this out-
  of-tree kernel module.

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


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


[Kernel-packages] [Bug 2037688] [NEW] Pull-request to address TPM bypass issue

2023-09-29 Thread Brad Figg
Public bug reported:

NVIDIA: [Config]: Ensure the TPM is available before IMA initializes

Set the following configs:

  CONFIG_SPI_TEGRA210_QUAD=y
  CONFIG_TCG_TIS_SPI=y

On Grace systems, the IMA driver emits the following log:

  ima: No TPM chip found, activating TPM-bypass!

This occurs because the IMA driver initializes before we are able to detect
the TPM. This will always be the case when the drivers required to
communicate with the TPM, spi_tegra210_quad and tpm_tis_spi, are built as
modules.

Having these drivers as built-ins ensures that the TPM is available before
the IMA driver initializes.

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

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

Title:
  Pull-request to address TPM bypass issue

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

Bug description:
  NVIDIA: [Config]: Ensure the TPM is available before IMA
  initializes

  Set the following configs:

CONFIG_SPI_TEGRA210_QUAD=y
CONFIG_TCG_TIS_SPI=y

  On Grace systems, the IMA driver emits the following log:

ima: No TPM chip found, activating TPM-bypass!

  This occurs because the IMA driver initializes before we are able to 
detect
  the TPM. This will always be the case when the drivers required to
  communicate with the TPM, spi_tegra210_quad and tpm_tis_spi, are built as
  modules.

  Having these drivers as built-ins ensures that the TPM is available before
  the IMA driver initializes.

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


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


[Kernel-packages] [Bug 2030815] Re: apply nvidia igx patches for Aug 1-7

2023-09-19 Thread Brad Griffis
** Tags removed: verification-needed-jammy-linux-nvidia-tegra-igx
** Tags added: verification-done-jammy-linux-nvidia-tegra-igx

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

Title:
  apply nvidia igx patches for Aug 1-7

Status in linux-nvidia-tegra-igx package in Ubuntu:
  Fix Committed

Bug description:
  Set of 7 patches for igx kernel.

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


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


[Kernel-packages] [Bug 2033315] Re: apply nvidia igx patches for Aug 22-28

2023-09-19 Thread Brad Griffis
** Tags removed: verification-needed-jammy-linux-nvidia-tegra-igx
** Tags added: verification-done-jammy-linux-nvidia-tegra-igx

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

Title:
  apply nvidia igx patches for Aug 22-28

Status in linux-nvidia-tegra-igx package in Ubuntu:
  Fix Committed

Bug description:
  2 patches for Aug 22-28, 2023

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


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


[Kernel-packages] [Bug 2036672] [NEW] apply nvidia igx patches for Aug 29 - Sep 19

2023-09-19 Thread Brad Griffis
Public bug reported:

Patches to apply on top of the new 1004.4 tag.

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

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

Title:
  apply nvidia igx patches for Aug 29 - Sep 19

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

Bug description:
  Patches to apply on top of the new 1004.4 tag.

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


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


[Kernel-packages] [Bug 2033685] [NEW] Pull-request to address ARM CoreSoght PMU issues

2023-08-31 Thread Brad Figg
Public bug reported:

[issue]

This patch set addresses several CoreSight PMU issues. These are all
upstream patches.


Commit Summary

2940a5e perf: arm_cspmu: Fix variable dereference warning
06f6951 perf: arm_cspmu: Set irq affinitiy only if overflow interrupt is used
292771d perf/arm_cspmu: Fix event attribute type
6992931 ACPI/APMT: Don't register invalid resource
48f4b92 perf/arm_cspmu: Clean up ACPI dependency
7da1852 perf/arm_cspmu: Decouple APMT dependency
d3d56a4 perf: arm_cspmu: Add missing MODULE_DEVICE_TABLE

File Changes (4 files)

M drivers/acpi/arm64/apmt.c (10)
M drivers/perf/arm_cspmu/Kconfig (3)
M drivers/perf/arm_cspmu/arm_cspmu.c (95)
M drivers/perf/arm_cspmu/arm_cspmu.h (5)

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

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

Title:
  Pull-request to address ARM CoreSoght PMU issues

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

Bug description:
  [issue]

  This patch set addresses several CoreSight PMU issues. These are all
  upstream patches.

  
  Commit Summary

  2940a5e perf: arm_cspmu: Fix variable dereference warning
  06f6951 perf: arm_cspmu: Set irq affinitiy only if overflow interrupt is used
  292771d perf/arm_cspmu: Fix event attribute type
  6992931 ACPI/APMT: Don't register invalid resource
  48f4b92 perf/arm_cspmu: Clean up ACPI dependency
  7da1852 perf/arm_cspmu: Decouple APMT dependency
  d3d56a4 perf: arm_cspmu: Add missing MODULE_DEVICE_TABLE

  File Changes (4 files)

  M drivers/acpi/arm64/apmt.c (10)
  M drivers/perf/arm_cspmu/Kconfig (3)
  M drivers/perf/arm_cspmu/arm_cspmu.c (95)
  M drivers/perf/arm_cspmu/arm_cspmu.h (5)

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


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


[Kernel-packages] [Bug 2033315] [NEW] apply nvidia igx patches for Aug 22-28

2023-08-28 Thread Brad Griffis
Public bug reported:

2 patches for Aug 22-28, 2023

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

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

Title:
  apply nvidia igx patches for Aug 22-28

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

Bug description:
  2 patches for Aug 22-28, 2023

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


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


[Kernel-packages] [Bug 2028576] [NEW] Pull-request for setting CPU frequency gov to performance

2023-07-24 Thread Brad Figg
Public bug reported:

[issue]
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set so it's using ondemand. We 
want to be using PERFORMANCE

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

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

Title:
  Pull-request for setting CPU frequency gov to performance

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

Bug description:
  [issue]
  CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set so it's using ondemand. We 
want to be using PERFORMANCE

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


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


[Kernel-packages] [Bug 1982519] Re: GDS: Add NFS patches to optimized kernel

2023-07-19 Thread Brad Figg
** Also affects: linux-nvidia-5.19 (Ubuntu)
   Importance: Undecided
   Status: New

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

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

Title:
  GDS: Add NFS patches to optimized kernel

Status in linux-nvidia package in Ubuntu:
  New
Status in linux-nvidia-5.19 package in Ubuntu:
  New
Status in linux-nvidia-6.2 package in Ubuntu:
  New
Status in linux-nvidia source package in Jammy:
  Fix Released
Status in linux-nvidia-5.19 source package in Jammy:
  New
Status in linux-nvidia-6.2 source package in Jammy:
  New

Bug description:
   [Impact]
  Adding these changes will enable GDS functionality NFS drivers.

   [Fix]
  This is a not a fix but a new feature being to NFS driver.

   [Test]
  
  Tested the NFS driver on a hpe system as I did not have a setup with BASEOS6.
   1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
   2) Downloaded the optimized kernel.
   3) Applied the patches to the optimized kernel
   4) Replaced the NFS modules on the system with the one's built on 
optimized kernel.
   5) Ran gds and compat mode tests on a  NFS mount with the patched NFS 
driver. All tests went fine.
   
  Attaching the results

  Compat mode tests
  ==
  **
  API Tests, : 72 /  72 tests passed
  **
  Testsuite : 211 / 211 tests passed
  done tests:Thu Jul 21 08:27:58 PM UTC 2022

  GDS mode tests
  ==
  **
  NVFS IOCTL negative Tests, : 23 /  23 tests passed
  **
  Testsuite : 249 / 249 tests passed
  End: nvidia-fs:
  GDS Version: 1.4.0.31
  NVFS statistics(ver: 4.0)

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


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


[Kernel-packages] [Bug 2026891] Re: linux-nvidia-6.2 on DGX servers: "WARNING: CPU: 0 PID: 0 at init/main.c:1065 start_kernel+0x4da/0x540"

2023-07-15 Thread Brad Figg
The following changes since commit
3d28f6c10d6940b0c6a497482fe90cc4dbd5549a:

  UBUNTU: Ubuntu-nvidia-6.2-6.2.0-1004.4~22.04.1 (2023-07-03 10:01:31
-0700)

are available in the Git repository at:

  https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/pull/new/bfigg-
lp2026891

for you to fetch changes up to 8029e7fc883e8a86076e1bb4379f8d6d0236ab97:

  mm, slab/slub: Ensure kmem_cache_alloc_bulk() is available early
(2023-07-15 19:30:31 -0700)


Thomas Gleixner (1):
  mm, slab/slub: Ensure kmem_cache_alloc_bulk() is available early

 mm/slab.c | 18 ++
 mm/slub.c |  9 +
 2 files changed, 15 insertions(+), 12 deletions(-)

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

Title:
  linux-nvidia-6.2 on DGX servers: "WARNING: CPU: 0 PID: 0 at
  init/main.c:1065 start_kernel+0x4da/0x540"

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

Bug description:
  We started testing the jammy/linux-nvidia-6.2 kernels on the nvidia
  servers (DGX-1/DGX-2/H100) and hit the following warning during boot:

  [7.690486] [ cut here ]
  [7.690487] Interrupts were enabled early
  [7.690490] WARNING: CPU: 0 PID: 0 at init/main.c:1065 
start_kernel+0x4da/0x540
  [7.690498] Modules linked in:
  [7.690501] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 6.2.0-1004-nvidia 
#4~22.04.1-Ubuntu
  [7.690504] Hardware name: NVIDIA NVIDIA DGX-2/NVIDIA DGX-2, BIOS 0.29 
06/07/2021
  [7.690505] RIP: 0010:start_kernel+0x4da/0x540
  [7.690508] Code: ff 48 c7 c7 e8 26 f0 97 e8 b3 59 a8 fd 0f 0b e9 96 fd ff 
ff e8 a7 1d 04 00 e9 7c fe ff ff 48 c7 c7 18 27 f0 97 e8 96 59 a8 fd <0f> 0b e9 
ed fd ff ff 48 c7 c7 b0 26 f0 97 e8 83 59 a8 fd 0f 0b ff
  [7.690510] RSP: :98803f08 EFLAGS: 00010246
  [7.690512] RAX:  RBX:  RCX: 

  [7.690513] RDX:  RSI:  RDI: 

  [7.690514] RBP: 98803f20 R08:  R09: 

  [7.690515] R10:  R11:  R12: 
00e0
  [7.690516] R13: 5a1ccde0 R14: 5a1c7469 R15: 
5a1d7ee0
  [7.690518] FS:  () GS:96490060() 
knlGS:
  [7.690520] CS:  0010 DS:  ES:  CR0: 80050033
  [7.690521] CR2: 970bf000 CR3: 00ecd7810001 CR4: 
000606f0
  [7.690522] DR0:  DR1:  DR2: 

  [7.690523] DR3:  DR6: fffe0ff0 DR7: 
0400
  [7.690524] Call Trace:
  [7.690526]  
  [7.690529]  x86_64_start_kernel+0x102/0x180
  [7.690536]  secondary_startup_64_no_verify+0xe5/0xeb
  [7.690544]  
  [7.690544] ---[ end trace  ]---

  I also see pretty much the same thing on some Ampere based arm64
  servers:

  [0.000519] [ cut here ]
  [0.000521] Interrupts were enabled early
  [0.000525] WARNING: CPU: 0 PID: 0 at init/main.c:1065 
start_kernel+0x3ac/0x514
  [0.000531] Modules linked in:
  [0.000535] CPU: 0 PID: 0 Comm: swapper/0 Not tainted 6.2.0-1004-nvidia 
#4~22.04.1-Ubuntu
  [0.000538] pstate: 6049 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
  [0.000540] pc : start_kernel+0x3ac/0x514
  [0.000543] lr : start_kernel+0x3ac/0x514
  [0.000545] sp : dec5ff733e60
  [0.000546] x29: dec5ff733e60 x28: 0819aa09baac x27: 
403ffdd124e0
  [0.000549] x26: bfdf3788 x25: 9b6fc000 x24: 
001dba7b
  [0.000552] x23: 5ec57c98 x22: 0819ab2a x21: 
dec5ff749140
  [0.000555] x20: dec5ff73d9c0 x19: dec5ffbe4000 x18: 
dec5ff74a1c8
  [0.000558] x17:  x16:  x15: 

  [0.000560] x14:  x13: 0a796c7261652064 x12: 
656c62616e652065
  [0.000563] x11: 656820747563205b x10: 2d2d2d2d2d2d2d2d x9 : 

  [0.000565] x8 :  x7 :  x6 : 

  [0.000568] x5 :  x4 :  x3 : 

  [0.000571] x2 :  x1 :  x0 : 

  [0.000573] Call trace:
  [0.000574]  start_kernel+0x3ac/0x514
  [0.000577]  __primary_switched+0xc0/0xc8
  [0.000580] ---[ end trace  ]---

  The warning does not appear on an older thunderx2 server.

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


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

[Kernel-packages] [Bug 2027837] Re: Pull request to address missing NVIDIA Grace SOC patches

2023-07-14 Thread Brad Figg
** Description changed:

  [Impact]
  
  There are a number of fixes for Grace SOC enablement in the related pull
  request. Application of this pull-request is appreciated. These patches
  have been reviewed and tested, confirming they address these issues.
+ 
+ Akhil R (2):
+   i2c: tegra: Set ACPI node as primary fwnode
+   i2c: tegra: Fix PEC support for SMBUS block read
+ 
+ Krishna Yarlagadda (6):
+   spi: tegra210-quad: set half duplex flag
+   spi: tegra210-quad: Fix validate combined sequence
+   spi: tegra210-quad: Fix iterator outside loop
+   spi: Add TPM HW flow flag
+   spi: tegra210-quad: Enable TPM wait polling
+   tpm_tis-spi: Add hardware wait polling
+ 
+ Nícolas F. R. A. Prado (1):
+   arm64: defconfig: Enable missing configs for mt8183-jacuzzi-juniper
+ 
+ Samuel Holland (1):
+   genirq: GENERIC_IRQ_EFFECTIVE_AFF_MASK depends on SMP
+ 
+ Shanker Donthineni (1):
+   irqchip/gicv3: Workaround for NVIDIA erratum T241-FABRIC-4
+ 
+ Tushar Dave (2):
+   Revert "UBUNTU: SAUCE: tpm: tegra: Support SPI tpm wait state detect"
+   Revert "UBUNTU: SAUCE: spi: tegra210-quad: Enable TPM wait polling"

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

Title:
  Pull request to address missing NVIDIA Grace SOC patches

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

Bug description:
  [Impact]

  There are a number of fixes for Grace SOC enablement in the related
  pull request. Application of this pull-request is appreciated. These
  patches have been reviewed and tested, confirming they address these
  issues.

  Akhil R (2):
i2c: tegra: Set ACPI node as primary fwnode
i2c: tegra: Fix PEC support for SMBUS block read

  Krishna Yarlagadda (6):
spi: tegra210-quad: set half duplex flag
spi: tegra210-quad: Fix validate combined sequence
spi: tegra210-quad: Fix iterator outside loop
spi: Add TPM HW flow flag
spi: tegra210-quad: Enable TPM wait polling
tpm_tis-spi: Add hardware wait polling

  Nícolas F. R. A. Prado (1):
arm64: defconfig: Enable missing configs for mt8183-jacuzzi-juniper

  Samuel Holland (1):
genirq: GENERIC_IRQ_EFFECTIVE_AFF_MASK depends on SMP

  Shanker Donthineni (1):
irqchip/gicv3: Workaround for NVIDIA erratum T241-FABRIC-4

  Tushar Dave (2):
Revert "UBUNTU: SAUCE: tpm: tegra: Support SPI tpm wait state detect"
Revert "UBUNTU: SAUCE: spi: tegra210-quad: Enable TPM wait polling"

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


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


[Kernel-packages] [Bug 2027837] [NEW] Pull request to address missing NVIDIA Grace SOC patches

2023-07-14 Thread Brad Figg
Public bug reported:

[Impact]

There are a number of fixes for Grace SOC enablement in the related pull
request. Application of this pull-request is appreciated. These patches
have been reviewed and tested, confirming they address these issues.

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

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

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

Title:
  Pull request to address missing NVIDIA Grace SOC patches

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

Bug description:
  [Impact]

  There are a number of fixes for Grace SOC enablement in the related
  pull request. Application of this pull-request is appreciated. These
  patches have been reviewed and tested, confirming they address these
  issues.

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


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


[Kernel-packages] [Bug 2026776] Re: arm64+ast2600: No Output from BMC's VGA port

2023-07-10 Thread Brad Figg
There is no need for kernel logs, we've already diagnosed the problem
and are providing the solution.

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

Title:
  arm64+ast2600: No Output from BMC's VGA port

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

Bug description:
  [Issue]

  On systems that have the following combination of hardware...:

  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/

  .. we see no output when connecting a display to the BMC's VGA port.

  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228

  [Action]

  Please apply the following two backports to the appropriate Ubuntu HWE
  kernels:

  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

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


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


[Kernel-packages] [Bug 2026776] Re: arm64+ast2600: No Output from BMC's VGA port

2023-07-10 Thread Brad Figg
** Also affects: linux-hwe-6.2 (Ubuntu)
   Importance: Undecided
   Status: New

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

** Description changed:

  Hello,
  
  On systems that have the following combination of hardware...:
  
  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/
  
  .. we see no output when connecting a display to the BMC's VGA port.
  
  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228
  
  Would it be possible to apply this patch to affected kernels?  Using the
  aforementioned combination, the ast driver is broken without this patch.
+ 
+ 
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
+ 
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

** Description changed:

  Hello,
  
  On systems that have the following combination of hardware...:
  
  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/
  
  .. we see no output when connecting a display to the BMC's VGA port.
  
  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228
  
- Would it be possible to apply this patch to affected kernels?  Using the
- aforementioned combination, the ast driver is broken without this patch.
+ [Action]
  
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

** Description changed:

- Hello,
+ [Issue]
  
  On systems that have the following combination of hardware...:
  
  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/
  
  .. we see no output when connecting a display to the BMC's VGA port.
  
  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228
  
  [Action]
  
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

** Description changed:

  [Issue]
  
  On systems that have the following combination of hardware...:
  
  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/
  
  .. we see no output when connecting a display to the BMC's VGA port.
  
  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228
  
  [Action]
  
+ Please apply the following two backports to the appropriate Ubuntu HWE
+ kernels:
+ 
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

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

Title:
  arm64+ast2600: No Output from BMC's VGA port

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

Bug description:
  [Issue]

  On systems that have the following combination of hardware...:

  1) arm64 CPU
  2) ASPEED AST2600 BMC: https://www.aspeedtech.com/server_ast2600/

  .. we see no output when connecting a display to the BMC's VGA port.

  Upon further investigation, we see that applying the following patch
  fixes this issue:
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/gpu/drm/ast?h=v6.4-rc6=4327a6137ed43a091d900b1ac833345d60f32228

  [Action]

  Please apply the following two backports to the appropriate Ubuntu HWE
  kernels:

  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-5.19/commit/055c9ec3739d7df1179db3ba054b00f3dd684560
  
https://github.com/NVIDIA-BaseOS-6/linux-nvidia-6.2/commit/8ab3253c6a59eee3424fe0c60b1fc6dc9f2d73b7

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


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


[Kernel-packages] [Bug 2024857] [NEW] Request application of pull-request for Grace SOC enablement

2023-06-22 Thread Brad Figg
Public bug reported:

[Impact]

We are starting work on the new 6.2 based, HWE kernel for supporting the
NVIDIA Grace SOC. A setup of patches needs to be pulled in to address
issues. All of these patches are found in more recent upstream kernel
versions.

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

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

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

Title:
  Request application of pull-request for Grace SOC enablement

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

Bug description:
  [Impact]

  We are starting work on the new 6.2 based, HWE kernel for supporting
  the NVIDIA Grace SOC. A setup of patches needs to be pulled in to
  address issues. All of these patches are found in more recent upstream
  kernel versions.

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


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


[Kernel-packages] [Bug 2021535] [NEW] Request application of upstream patch to address drm/ast ARM compatibility issue

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

[impact]
This patch addresses a drm/ast compatibility issue with ARM architecture. The 
patch is in the upstream Linux kernel as sha1 
4327a6137ed43a091d900b1ac833345d60f32228. The issue was found during 
development testing and application of this commit has been confirmed to 
resolve the issue.

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

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

Title:
  Request application of upstream patch to address drm/ast ARM
  compatibility issue

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

Bug description:
  [impact]
  This patch addresses a drm/ast compatibility issue with ARM architecture. The 
patch is in the upstream Linux kernel as sha1 
4327a6137ed43a091d900b1ac833345d60f32228. The issue was found during 
development testing and application of this commit has been confirmed to 
resolve the issue.

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


-- 
Mailing list: https://launchpad.net/~kernel-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


[Kernel-packages] [Bug 2016177] [NEW] Pull-request to remove NOUVEAU configuration and address annotations

2023-04-13 Thread Brad Figg
Public bug reported:

[Impact]
This patch set removes the NOUVEAU driver configuration settings. On BaseOS 
we normally blacklist the driver. This configuration change makes that 
unnecessary.

Also, annotations have been effectively disabled for this kernel.
This patch set makes a number of configuration changes to reflect the
current state of the annotations file as well as updating the
annotations file to get it closer to being able to enable enforcement
again.

[Patches]
The following changes since commit e6d6e51ecc26e049ae80ca5ef965d3b8fae98fdd:

  UBUNTU: Ubuntu-nvidia-5.15.0-1020.20 (2023-04-09 21:13:44 -0700)

are available in the Git repository at:

  https://github.com/NVIDIA-BaseOS-6/linux-nvidia/pull/new/bfigg-nouveau

for you to fetch changes up to d4c2afee98a9371d18411ba1171cadeab8cff664:

  NVIDIA: [Config] Remove the backport-iwlwifi-dkms driver (2023-04-13
12:09:10 -0700)


Brad Figg (6):
  NVIDIA: [Config] change CONFIG_DRM_NOUVEAU and 
CONFIG_DRM_NOUVEAU_BACKLIGHT to is not set
  NVIDIA: [Config] changed CONFIG_VIDEO_OV01A1S to is not set
  NVIDIA: [Config] set CONFIG_POWER_CTRL_LOGIC=m
  NVIDIA: [Config] set CONFIG_VIDEO_HM11B1=m and CONFIG_VIDEO_OV01A1S=m
  NVIDIA: [Config] Resolve a number of annotations vs config conflicts.
  NVIDIA: [Config] Remove the backport-iwlwifi-dkms driver

 debian.nvidia/abi/amd64/nvidia-lowlatency.modules |  1 -
 debian.nvidia/abi/amd64/nvidia.modules|  1 -
 debian.nvidia/config/annotations  | 45 
+
 debian.nvidia/config/config.common.ubuntu |  9 ++---
 debian/dkms-versions  |  1 -
 5 files changed, 51 insertions(+), 6 deletions(-)

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

** Description changed:

  [Impact]
- This patch set removes the NOUVEAU driver configuration settings. On 
BaseOS we normally blacklist the driver. This configuration change makes that 
unnecessary.
+ This patch set removes the NOUVEAU driver configuration settings. On 
BaseOS we normally blacklist the driver. This configuration change makes that 
unnecessary.
  
- Also, annotations have been effectively disabled for this kernel.
+ Also, annotations have been effectively disabled for this kernel.
  This patch set makes a number of configuration changes to reflect the
  current state of the annotations file as well as updating the
  annotations file to get it closer to being able to enable enforcement
  again.
  
  [Patches]
+ The following changes since commit e6d6e51ecc26e049ae80ca5ef965d3b8fae98fdd:
+ 
+   UBUNTU: Ubuntu-nvidia-5.15.0-1020.20 (2023-04-09 21:13:44 -0700)
+ 
+ are available in the Git repository at:
+ 
+   https://github.com/NVIDIA-BaseOS-6/linux-nvidia/pull/new/bfigg-nouveau
+ 
+ for you to fetch changes up to d4c2afee98a9371d18411ba1171cadeab8cff664:
+ 
+   NVIDIA: [Config] Remove the backport-iwlwifi-dkms driver (2023-04-13
+ 12:09:10 -0700)
+ 
+ 
+ Brad Figg (6):
+   NVIDIA: [Config] change CONFIG_DRM_NOUVEAU and 
CONFIG_DRM_NOUVEAU_BACKLIGHT to is not set
+   NVIDIA: [Config] changed CONFIG_VIDEO_OV01A1S to is not set
+   NVIDIA: [Config] set CONFIG_POWER_CTRL_LOGIC=m
+   NVIDIA: [Config] set CONFIG_VIDEO_HM11B1=m and CONFIG_VIDEO_OV01A1S=m
+   NVIDIA: [Config] Resolve a number of annotations vs config conflicts.
+   NVIDIA: [Config] Remove the backport-iwlwifi-dkms driver
+ 
+  debian.nvidia/abi/amd64/nvidia-lowlatency.modules |  1 -
+  debian.nvidia/abi/amd64/nvidia.modules|  1 -
+  debian.nvidia/config/annotations  | 45 
+
+  debian.nvidia/config/config.common.ubuntu |  9 ++---
+  debian/dkms-versions  |  1 -
+  5 files changed, 51 insertions(+), 6 deletions(-)

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

Title:
  Pull-request to remove NOUVEAU configuration and address annotations

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  [Impact]
  This patch set removes the NOUVEAU driver configuration settings. On 
BaseOS we normally blacklist the driver. This configuration change makes that 
unnecessary.

  Also, annotations have been effectively disabled for this kernel.
  This patch set makes a number of configuration changes to reflect the
  current state of the annotations file as well as updating the
  annotations file to get it closer to being able to enable enforcement
  again.

  [Patches]
  The following changes since commit e6d6e51ecc26e049ae80ca5ef965d3b8fae98fdd:

UBUNTU: Ubuntu-nvidia-5.15.0-1020.20 (2023-04-09 21:13:44 -0700

[Kernel-packages] [Bug 2015755] [NEW] Pull-request to address mgbe ethernet driver on AGX Orin

2023-04-10 Thread Brad Figg
Public bug reported:

[Impact]
This patch set is intended to address 
https://bugs.launchpad.net/riverside/+bug/2011636

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

Title:
  Pull-request to address mgbe ethernet driver on AGX Orin

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  [Impact]
  This patch set is intended to address 
https://bugs.launchpad.net/riverside/+bug/2011636

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


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


[Kernel-packages] [Bug 2012939] [NEW] Pull-request to address a number of issues in the nvidia-tegra -1010.10

2023-03-27 Thread Brad Figg
Public bug reported:

[Impact]
Adding these patches address a number of differences between the Ubuntu 
kernel and the internal NVIDIA kernel.

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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

Title:
  Pull-request to address a number of issues in the nvidia-tegra
  -1010.10

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  [Impact]
  Adding these patches address a number of differences between the Ubuntu 
kernel and the internal NVIDIA kernel.

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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


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


[Kernel-packages] [Bug 2010997] Re: Pull-Request to address USB and PWM cooling fan issues with Orin HW

2023-03-10 Thread Brad Figg
** Description changed:

-  [Impact]
- Adding this patch addresses a specific audio issue with the nvidia-tegra 
kernel.
+ [Impact]
+ Adding this patch addresses USB and PWM cooling fan issues as described 
in the following bugs:
  
- https://bugs.launchpad.net/riverside/+bug/2009867
- https://bugs.launchpad.net/riverside/+bug/2002173
+ https://bugs.launchpad.net/riverside/+bug/2009867
+ https://bugs.launchpad.net/riverside/+bug/2002173
  
-  [Fix]
- The PR is made up of a revert of one commit and the application of 4 new 
patches from upstream to address the indicated issues.
+  [Fix]
+ The PR is made up of a revert of one commit and the application of 4 new 
patches from upstream to address the indicated issues.

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

Title:
  Pull-Request to address USB and PWM cooling fan issues with Orin HW

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  [Impact]
  Adding this patch addresses USB and PWM cooling fan issues as described 
in the following bugs:

  https://bugs.launchpad.net/riverside/+bug/2009867
  https://bugs.launchpad.net/riverside/+bug/2002173

   [Fix]
  The PR is made up of a revert of one commit and the application of 4 new 
patches from upstream to address the indicated issues.

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


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


[Kernel-packages] [Bug 2010997] [NEW] Pull-Request to address USB and PWM cooling fan issues with Orin HW

2023-03-10 Thread Brad Figg
Public bug reported:

 [Impact]
Adding this patch addresses a specific audio issue with the nvidia-tegra 
kernel.

https://bugs.launchpad.net/riverside/+bug/2009867
https://bugs.launchpad.net/riverside/+bug/2002173

 [Fix]
The PR is made up of a revert of one commit and the application of 4 new 
patches from upstream to address the indicated issues.

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

Title:
  Pull-Request to address USB and PWM cooling fan issues with Orin HW

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding this patch addresses a specific audio issue with the nvidia-tegra 
kernel.

  https://bugs.launchpad.net/riverside/+bug/2009867
  https://bugs.launchpad.net/riverside/+bug/2002173

   [Fix]
  The PR is made up of a revert of one commit and the application of 4 new 
patches from upstream to address the indicated issues.

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


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


[Kernel-packages] [Bug 2008921] [NEW] Please apply the indicated patch to address an audio issue with the tegra kernel

2023-03-01 Thread Brad Figg
Public bug reported:

 [Impact]
Adding this patch addresses a specific audio issue with the tegra kernel.

 [Fix]
ASoC: simple-card-utils: Increase maximum DAI links limit to 512

The current limit of 128 is not sufficient when more components are
added to the audio map on Tegra210 and later platforms. Thus it is
resulting in probe failure.

The requirement is of nearly ~200 DAI links. To give sufficient room
for future additions the maximum limit is increased to 512 DAI links.
This is a preparatory patch to add more components like resampler,
mixer, multiplexers, demultiplexers and volume controllers to Tegra210
and later platforms.

 This is upstream commit 7a226f2eabdc2e839d8f07c5ce087136f9c0f35c

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

Title:
  Please apply the indicated patch to address an audio issue with the
  tegra kernel

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding this patch addresses a specific audio issue with the tegra kernel.

   [Fix]
  ASoC: simple-card-utils: Increase maximum DAI links limit to 512

  The current limit of 128 is not sufficient when more components are
  added to the audio map on Tegra210 and later platforms. Thus it is
  resulting in probe failure.

  The requirement is of nearly ~200 DAI links. To give sufficient room
  for future additions the maximum limit is increased to 512 DAI links.
  This is a preparatory patch to add more components like resampler,
  mixer, multiplexers, demultiplexers and volume controllers to Tegra210
  and later platforms.

   This is upstream commit 7a226f2eabdc2e839d8f07c5ce087136f9c0f35c

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


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


[Kernel-packages] [Bug 2008795] [NEW] Please apply yet another set of Orin, platform enablement patches

2023-02-28 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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

Title:
  Please apply yet another set of Orin, platform enablement patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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


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


[Kernel-packages] [Bug 2008503] [NEW] Please apply another batch of Orin platform enablement patches

2023-02-24 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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

Title:
  Please apply another batch of Orin platform enablement patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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


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


[Kernel-packages] [Bug 2003728] [NEW] Enable MGBE ethernet on Orin platforms

2023-01-23 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

Specifically these 3 patches (2 cherry-picks and 1 backport) add the
MGBE driver.

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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

Title:
  Enable MGBE ethernet on Orin platforms

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW.

  Specifically these 3 patches (2 cherry-picks and 1 backport) add
  the MGBE driver.

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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


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


[Kernel-packages] [Bug 2003640] [NEW] Integrate NVIDIA Grace kernel fixes for vGIC

2023-01-21 Thread Brad Figg
Public bug reported:

[Impact]

To save the vgic LPI pending state with GICv4.1, the VPEs must all be 
unmapped from the ITSs so that the sGIC caches can be flushed. The opposite is 
done once the state is saved.

This is all done by using the activate/deactivate irqdomain
callbacks directly from the vgic code. Crutially, this is done without
holding the irqdesc lock for the interrupts that represent the VPE. And
these callbacks are changing the state of the irqdesc. What could
possibly go wrong?

If a doorbell fires while we are messing with the irqdesc state, it
will acquire the lock and change the interrupt state concurrently. Since
we don't hole the lock, curruption occurs in on the interrupt state. Oh
well.

While acquiring the lock would fix this (and this was Shanker's
initial approach), this is still a layering violation we could do
without. A better approach is actually to free the VPE interrupt, do
what we have to do, and re-request it.

It is more work, but this usually happens only once in the lifetime
of the VM and we don't really care about this sort of overhead.

The upstream maintainer acknowledged the bug, fixed the issue. and
it will be available in v6.2.

[Fixes]
- single patch to address the race condition on VPE activation/deactivation

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

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

Title:
  Integrate NVIDIA Grace kernel fixes for vGIC

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

Bug description:
  [Impact]
  
  To save the vgic LPI pending state with GICv4.1, the VPEs must all be 
unmapped from the ITSs so that the sGIC caches can be flushed. The opposite is 
done once the state is saved.

  This is all done by using the activate/deactivate irqdomain
  callbacks directly from the vgic code. Crutially, this is done without
  holding the irqdesc lock for the interrupts that represent the VPE.
  And these callbacks are changing the state of the irqdesc. What could
  possibly go wrong?

  If a doorbell fires while we are messing with the irqdesc state,
  it will acquire the lock and change the interrupt state concurrently.
  Since we don't hole the lock, curruption occurs in on the interrupt
  state. Oh well.

  While acquiring the lock would fix this (and this was Shanker's
  initial approach), this is still a layering violation we could do
  without. A better approach is actually to free the VPE interrupt, do
  what we have to do, and re-request it.

  It is more work, but this usually happens only once in the
  lifetime of the VM and we don't really care about this sort of
  overhead.

  The upstream maintainer acknowledged the bug, fixed the issue. and
  it will be available in v6.2.

  [Fixes]
  - single patch to address the race condition on VPE 
activation/deactivation

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


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


[Kernel-packages] [Bug 2002574] [NEW] Integrate Nvidia Grace kernel fixes for TPM

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

[Impact]
Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Grace reference HW

[Fixes]
- 2 patches to address issues with the TPM module used with Grace systems

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

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

Title:
  Integrate Nvidia Grace kernel fixes for TPM

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

Bug description:
  [Impact]
  Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Grace reference HW

  [Fixes]
  - 2 patches to address issues with the TPM module used with Grace systems

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


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


[Kernel-packages] [Bug 2001557] [NEW] Integrate Nvidia Orin enablement patches

2023-01-03 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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

Title:
  Integrate Nvidia Orin enablement patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these patches enables additional functionality and addresses bugs 
related to the Ubuntu kernel on Orin reference HW

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality as well as fix kernel bugs related to 
Nvidia HW.

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


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


[Kernel-packages] [Bug 1998380] Re: Integrate ARM64 Performance Monitoring Unit Table patches

2022-12-01 Thread Brad Figg
** Information type changed from Private to Public

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

Title:
  Integrate ARM64 Performance Monitoring Unit Table patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are a set of patches on linux-next upstream that are required as
  part of NVIDIA SOC enablement. These patches need to be integrated
  into the Optimized linux-nvidia-5.19 kernel.

  ARM Performance Monitoring Unit Table describes the properties of PMU
  support in ARM-based system. The APMT table contains a list of nodes,
  each represents a PMU in the system that conforms to ARM CoreSight PMU
  architecture. The properties of each node include information required
  to access the PMU (e.g. MMIO base address, interrupt number) and also
  identification. For more detailed information, please refer to the
  specification below:
   * APMT: https://developer.arm.com/documentation/den0117/latest
   * ARM Coresight PMU:
  https://developer.arm.com/documentation/ihi0091/latest

  The initial support adds the detection of APMT table and generic
  infrastructure to create platform devices for ARM CoreSight PMUs.
  Similar to IORT the root pointer of APMT is preserved during runtime
  and each PMU platform device is given a pointer to the corresponding
  APMT node.

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


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


[Kernel-packages] [Bug 1998527] Re: Integrate ARM64 Tegra SPI & QSPI changes

2022-12-01 Thread Brad Figg
** Information type changed from Private to Public

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

Title:
  Integrate ARM64 Tegra SPI & QSPI changes

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are 5 commits that went upstream post 5.19 that are required for
  NVIDIA SOC enablement. Please integrate these patches into the linux-
  nvidia-5.19 kernel.

  The following patches are in linux-next:
  b76134178168b5104851b3c72d9b1092b7414ff9 spi: tegra210-quad: Multi-cs support
  8777dd9dff4020bba66654ec92e4b0ab6367ad30 spi: tegra210-quad: Fix combined 
sequence
  ae4b3c1252f0fd0951d2f072a02ba46cac8d6c92 spi: tegra210-quad: Don't initialise 
DMA if not supported
  2197aa6b0aa236b9896a09b9d08d6924d18b84f6 spi: tegra210-quad: Fix duplicate 
resource error
  0ddf10a319f14ed626dab3a2d390e5059e20cea5 arm64: tegra: Enable Tegra SPI & 
QSPI in deconfig

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


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


[Kernel-packages] [Bug 1998527] [NEW] Integrate ARM64 Tegra SPI & QSPI changes

2022-12-01 Thread Brad Figg
Private bug reported:

There are 4 commits that went upstream post 5.19 that are required for
NVIDIA SOC enablement. Please integrate these patches into the linux-
nvidia-5.19 kernel.

The following patches are in linux-next:

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

** Information type changed from Public to Private

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

Title:
  Integrate ARM64 Tegra SPI & QSPI changes

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are 4 commits that went upstream post 5.19 that are required for
  NVIDIA SOC enablement. Please integrate these patches into the linux-
  nvidia-5.19 kernel.

  The following patches are in linux-next:

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


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


[Kernel-packages] [Bug 1998392] Re: Integrate IOMMU patches related to NVIDIA SOC development

2022-11-30 Thread Brad Figg
** Description changed:

  There are 4 commits that went upstream post 5.19 that are required for
  NVIDIA SOC enablement. Please integrate these patches into the linux-
  nvidia-5.19 kernel.
+ 
+ 
+ The following patches are in linux-next:
+ 00208852d351ca6e4a8b9ff0c5376fa3a8ed8eaa iommu: Add return value rules to 
attach_dev op and APIs
+ bd7ebb7719356d750b1b4d671535922bae43fb3b iommu: Regulate EINVAL in 
->attach_dev callback functions
+ f4a14773579302e5f0c4bf80b03f0db7ce67f2ce iommu: Use EINVAL for incompatible 
device/domain in ->attach_dev
+ 04cee82e04d2aff3d177ef0021ecdff228daf7b8 iommu: Propagate return value in 
->attach_dev callback functions

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

Title:
  Integrate IOMMU patches related to NVIDIA SOC development

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are 4 commits that went upstream post 5.19 that are required for
  NVIDIA SOC enablement. Please integrate these patches into the linux-
  nvidia-5.19 kernel.

  
  The following patches are in linux-next:
  00208852d351ca6e4a8b9ff0c5376fa3a8ed8eaa iommu: Add return value rules to 
attach_dev op and APIs
  bd7ebb7719356d750b1b4d671535922bae43fb3b iommu: Regulate EINVAL in 
->attach_dev callback functions
  f4a14773579302e5f0c4bf80b03f0db7ce67f2ce iommu: Use EINVAL for incompatible 
device/domain in ->attach_dev
  04cee82e04d2aff3d177ef0021ecdff228daf7b8 iommu: Propagate return value in 
->attach_dev callback functions

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


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


[Kernel-packages] [Bug 1998392] [NEW] Integrate IOMMU patches related to NVIDIA SOC development

2022-11-30 Thread Brad Figg
Public bug reported:

There are 4 commits that went upstream post 5.19 that are required for
NVIDIA SOC enablement. Please integrate these patches into the linux-
nvidia-5.19 kernel.

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

Title:
  Integrate IOMMU patches related to NVIDIA SOC development

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are 4 commits that went upstream post 5.19 that are required for
  NVIDIA SOC enablement. Please integrate these patches into the linux-
  nvidia-5.19 kernel.

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


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


[Kernel-packages] [Bug 1998380] [NEW] Integrate ARM64 Performance Monitoring Unit Table patches

2022-11-30 Thread Brad Figg
Private bug reported:

There are a set of patches on linux-next upstream that are required as
part of NVIDIA SOC enablement. These patches need to be integrated into
the Optimized linux-nvidia-5.19 kernel.

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

** Information type changed from Public to Private

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

Title:
  Integrate ARM64 Performance Monitoring Unit Table patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
  There are a set of patches on linux-next upstream that are required as
  part of NVIDIA SOC enablement. These patches need to be integrated
  into the Optimized linux-nvidia-5.19 kernel.

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


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


[Kernel-packages] [Bug 1895470] Re: fatal error: classmap.h: No such file or directory

2022-11-20 Thread Brad Figg
** Package changed: linux-kernel-headers (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/1895470

Title:
  fatal error: classmap.h: No such file or directory

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  When building kernel module on ubuntu 20.04 for raspberry (arm64), I
  get the following error:

  make -C /lib/modules/5.4.0-1018-raspi/build 
SUBDIRS=/home/ubuntu/andor/src/driver modules
  make[1]: Entering directory '/usr/src/linux-headers-5.4.0-1018-raspi'
HOSTCC  scripts/selinux/genheaders/genheaders
  scripts/selinux/genheaders/genheaders.c:18:10: fatal error: classmap.h: No 
such file or directory
 18 | #include "classmap.h"
|  ^~~~
  compilation terminated.
  make[4]: *** [scripts/Makefile.host:107: 
scripts/selinux/genheaders/genheaders] Error 1
  make[3]: *** [scripts/Makefile.build:522: scripts/selinux/genheaders] Error 2
  make[2]: *** [scripts/Makefile.build:522: scripts/selinux] Error 2
  make[1]: *** [Makefile:1127: scripts] Error 2
  make[1]: Leaving directory '/usr/src/linux-headers-5.4.0-1018-raspi'
  make: *** [Makefile:12: default] Error 2

  
  I have no clue how to resolve this

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


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


[Kernel-packages] [Bug 1995023] [NEW] Integrate Nvidia Orin Audio, cpu frequency and other enablement patches

2022-10-27 Thread Brad Figg
Private bug reported:

 [Impact]
Adding these patches enables the Ubuntu kernel on Orin reference HW

 [Fix]
These patches do not constitute a single fix or a set of fixes for bugs but 
instead enable kernel functionality on Nvidia HW.

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

** Information type changed from Public to Private

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

Title:
  Integrate Nvidia Orin Audio, cpu frequency and other enablement
  patches

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these patches enables the Ubuntu kernel on Orin reference HW

   [Fix]
  These patches do not constitute a single fix or a set of fixes for bugs 
but instead enable kernel functionality on Nvidia HW.

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


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


[Kernel-packages] [Bug 1990296] Re: package linux-tools-5.15.0-48 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in package linux-low

2022-09-20 Thread Brad Needham
Never happened in previous versions of Ubuntu. Only in current 22.04.1

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

Title:
  package linux-tools-5.15.0-48 (not installed) failed to
  install/upgrade: trying to overwrite
  '/usr/lib/libcpupower.so.5.15.0-48', which is also in package linux-
  lowlatency-tools-5.15.0-48 5.15.0-48.54

Status in linux package in Ubuntu:
  New

Bug description:
  having issues installing linux-tools-lowlatency beside linux-tools-
  generic. Never had this issue before.

  ProblemType: Package
  DistroRelease: Ubuntu 22.04
  Package: linux-tools-5.15.0-48 (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-47.53-lowlatency 5.15.46
  Uname: Linux 5.15.0-47-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  AptOrdering:
   linux-tools-5.15.0-48:amd64: Install
   linux-tools-5.15.0-48-generic:amd64: Install
   linux-tools-generic:amd64: Install
   NULL: ConfigurePending
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  brad   3893 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Tue Sep 20 12:15:30 2022
  DpkgTerminalLog:
   Preparing to unpack .../linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb ...
   Unpacking linux-tools-5.15.0-48 (5.15.0-48.54) ...
   dpkg: error processing archive 
/var/cache/apt/archives/linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb (--unpack):
trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in 
package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
  DuplicateSignature:
   package:linux-tools-5.15.0-48:(not installed)
   Unpacking linux-tools-5.15.0-48 (5.15.0-48.54) ...
   dpkg: error processing archive 
/var/cache/apt/archives/linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb (--unpack):
trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in 
package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
  ErrorMessage: trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which 
is also in package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
  HibernationDevice: RESUME=UUID=9419e6bd-7ab8-447c-913d-98351acfc367
  InstallationDate: Installed on 2013-09-08 (3298 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  IwConfig:
   lono wireless extensions.
   
   eth0  no wireless extensions.
   
   CloudflareWARP  no wireless extensions.
  MachineType: Hewlett-Packard 320-1030
  ProcFB: 0 radeondrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-lowlatency 
root=UUID=52c25727-125e-44b2-86c1-5ef593ad77e8 ro threadirqs noapic quiet 
splash vt.handoff=1
  PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
  Python3Details: /usr/bin/python3.10, Python 3.10.4, python3-minimal, 
3.10.4-0ubuntu2
  PythonDetails: N/A
  RebootRequiredPkgs: Error: path contained symlinks.
  RelatedPackageVersions: grub-pc N/A
  RfKill:
   
  SourcePackage: linux
  Title: package linux-tools-5.15.0-48 (not installed) failed to 
install/upgrade: trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which 
is also in package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
  UpgradeStatus: Upgraded to jammy on 2022-08-23 (28 days ago)
  dmi.bios.date: 04/12/2012
  dmi.bios.release: 7.15
  dmi.bios.vendor: AMI
  dmi.bios.version: 7.15
  dmi.board.asset.tag: 3CR136220V
  dmi.board.name: 2ACB
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.03
  dmi.chassis.asset.tag: 3CR136220V
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr7.15:bd04/12/2012:br7.15:svnHewlett-Packard:pn320-1030:pvr:rvnPEGATRONCORPORATION:rn2ACB:rvr1.03:cvnHewlett-Packard:ct3:cvr:skuQP788AA#ABA:
  dmi.product.family: 103C_53316J G=D
  dmi.product.name: 320-1030
  dmi.product.sku: QP788AA#ABA
  dmi.sys.vendor: Hewlett-Packard

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


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


[Kernel-packages] [Bug 1990296] [NEW] package linux-tools-5.15.0-48 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in package linux-l

2022-09-20 Thread Brad Needham
Public bug reported:

having issues installing linux-tools-lowlatency beside linux-tools-
generic. Never had this issue before.

ProblemType: Package
DistroRelease: Ubuntu 22.04
Package: linux-tools-5.15.0-48 (not installed)
ProcVersionSignature: Ubuntu 5.15.0-47.53-lowlatency 5.15.46
Uname: Linux 5.15.0-47-lowlatency x86_64
ApportVersion: 2.20.11-0ubuntu82.1
AptOrdering:
 linux-tools-5.15.0-48:amd64: Install
 linux-tools-5.15.0-48-generic:amd64: Install
 linux-tools-generic:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  brad   3893 F pulseaudio
CasperMD5CheckResult: unknown
Date: Tue Sep 20 12:15:30 2022
DpkgTerminalLog:
 Preparing to unpack .../linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb ...
 Unpacking linux-tools-5.15.0-48 (5.15.0-48.54) ...
 dpkg: error processing archive 
/var/cache/apt/archives/linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb (--unpack):
  trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in 
package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
DuplicateSignature:
 package:linux-tools-5.15.0-48:(not installed)
 Unpacking linux-tools-5.15.0-48 (5.15.0-48.54) ...
 dpkg: error processing archive 
/var/cache/apt/archives/linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb (--unpack):
  trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in 
package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
ErrorMessage: trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is 
also in package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
HibernationDevice: RESUME=UUID=9419e6bd-7ab8-447c-913d-98351acfc367
InstallationDate: Installed on 2013-09-08 (3298 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
IwConfig:
 lono wireless extensions.
 
 eth0  no wireless extensions.
 
 CloudflareWARP  no wireless extensions.
MachineType: Hewlett-Packard 320-1030
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-lowlatency 
root=UUID=52c25727-125e-44b2-86c1-5ef593ad77e8 ro threadirqs noapic quiet 
splash vt.handoff=1
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.10, Python 3.10.4, python3-minimal, 
3.10.4-0ubuntu2
PythonDetails: N/A
RebootRequiredPkgs: Error: path contained symlinks.
RelatedPackageVersions: grub-pc N/A
RfKill:
 
SourcePackage: linux
Title: package linux-tools-5.15.0-48 (not installed) failed to install/upgrade: 
trying to overwrite '/usr/lib/libcpupower.so.5.15.0-48', which is also in 
package linux-lowlatency-tools-5.15.0-48 5.15.0-48.54
UpgradeStatus: Upgraded to jammy on 2022-08-23 (28 days ago)
dmi.bios.date: 04/12/2012
dmi.bios.release: 7.15
dmi.bios.vendor: AMI
dmi.bios.version: 7.15
dmi.board.asset.tag: 3CR136220V
dmi.board.name: 2ACB
dmi.board.vendor: PEGATRON CORPORATION
dmi.board.version: 1.03
dmi.chassis.asset.tag: 3CR136220V
dmi.chassis.type: 3
dmi.chassis.vendor: Hewlett-Packard
dmi.modalias: 
dmi:bvnAMI:bvr7.15:bd04/12/2012:br7.15:svnHewlett-Packard:pn320-1030:pvr:rvnPEGATRONCORPORATION:rn2ACB:rvr1.03:cvnHewlett-Packard:ct3:cvr:skuQP788AA#ABA:
dmi.product.family: 103C_53316J G=D
dmi.product.name: 320-1030
dmi.product.sku: QP788AA#ABA
dmi.sys.vendor: Hewlett-Packard

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


** Tags: amd64 apport-package jammy need-duplicate-check package-conflict

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

Title:
  package linux-tools-5.15.0-48 (not installed) failed to
  install/upgrade: trying to overwrite
  '/usr/lib/libcpupower.so.5.15.0-48', which is also in package linux-
  lowlatency-tools-5.15.0-48 5.15.0-48.54

Status in linux package in Ubuntu:
  New

Bug description:
  having issues installing linux-tools-lowlatency beside linux-tools-
  generic. Never had this issue before.

  ProblemType: Package
  DistroRelease: Ubuntu 22.04
  Package: linux-tools-5.15.0-48 (not installed)
  ProcVersionSignature: Ubuntu 5.15.0-47.53-lowlatency 5.15.46
  Uname: Linux 5.15.0-47-lowlatency x86_64
  ApportVersion: 2.20.11-0ubuntu82.1
  AptOrdering:
   linux-tools-5.15.0-48:amd64: Install
   linux-tools-5.15.0-48-generic:amd64: Install
   linux-tools-generic:amd64: Install
   NULL: ConfigurePending
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  brad   3893 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Tue Sep 20 12:15:30 2022
  DpkgTerminalLog:
   Preparing to unpack .../linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb ...
   Unpacking linux-tools-5.15.0-48 (5.15.0-48.54) ...
   dpkg: error processing archive 
/var/cache/apt/archives/linux-tools-5.15.0-48_5.15.0-48.54_amd64.deb (--unpack):
trying to overwrite

[Kernel-packages] [Bug 1983215] [NEW] bjf test

2022-07-31 Thread Brad Figg
Public bug reported:

This is just a test

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

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

** No longer affects: linux-nvidia (Ubuntu Jammy)

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

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

Title:
  bjf test

Status in linux-nvidia package in Ubuntu:
  Invalid

Bug description:
  This is just a test

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


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


[Kernel-packages] [Bug 1983190] [NEW] bjf test

2022-07-30 Thread Brad Figg
Public bug reported:

bjf test

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

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

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

Title:
  bjf test

Status in linux-nvidia package in Ubuntu:
  Invalid

Bug description:
  bjf test

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


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


[Kernel-packages] [Bug 1982519] Re: GDS: Add NFS patches to optimized kernel

2022-07-22 Thread Brad Figg
** Also affects: linux-nvidia (Ubuntu Jammy)
   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/1982519

Title:
  GDS: Add NFS patches to optimized kernel

Status in linux-nvidia package in Ubuntu:
  New
Status in linux-nvidia source package in Jammy:
  New

Bug description:
   [Impact]
  Adding these changes will enable GDS functionality NFS drivers.

   [Fix]
  This is a not a fix but a new feature being to NFS driver.

   [Test]
  
  Tested the NFS driver on a hpe system as I did not have a setup with BASEOS6.
   1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
   2) Downloaded the optimized kernel.
   3) Applied the patches to the optimized kernel
   4) Replaced the NFS modules on the system with the one's built on 
optimized kernel.
   5) Ran gds and compat mode tests on a  NFS mount with the patched NFS 
driver. All tests went fine.
   
  Attaching the results

  Compat mode tests
  ==
  **
  API Tests, : 72 /  72 tests passed
  **
  Testsuite : 211 / 211 tests passed
  done tests:Thu Jul 21 08:27:58 PM UTC 2022

  GDS mode tests
  ==
  **
  NVFS IOCTL negative Tests, : 23 /  23 tests passed
  **
  Testsuite : 249 / 249 tests passed
  End: nvidia-fs:
  GDS Version: 1.4.0.31
  NVFS statistics(ver: 4.0)

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


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


[Kernel-packages] [Bug 1982519] [NEW] GDS: Add NFS patches to optimized kernel

2022-07-21 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these changes will enable GDS functionality NFS drivers.

 [Fix]
This is a not a fix but a new feature being to NFS driver.

 [Test]

Tested the NFS driver on a hpe system as I did not have a setup with BASEOS6.
 1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
 2) Downloaded the optimized kernel.
 3) Applied the patches to the optimized kernel
 4) Replaced the NFS modules on the system with the one's built on 
optimized kernel.
 5) Ran gds and compat mode tests on a  NFS mount with the patched NFS 
driver. All tests went fine.
 
Attaching the results

Compat mode tests
==
**
API Tests, : 72 /  72 tests passed
**
Testsuite : 211 / 211 tests passed
done tests:Thu Jul 21 08:27:58 PM UTC 2022

GDS mode tests
==
**
NVFS IOCTL negative Tests, : 23 /  23 tests passed
**
Testsuite : 249 / 249 tests passed
End: nvidia-fs:
GDS Version: 1.4.0.31
NVFS statistics(ver: 4.0)

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

Title:
  GDS: Add NFS patches to optimized kernel

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these changes will enable GDS functionality NFS drivers.

   [Fix]
  This is a not a fix but a new feature being to NFS driver.

   [Test]
  
  Tested the NFS driver on a hpe system as I did not have a setup with BASEOS6.
   1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
   2) Downloaded the optimized kernel.
   3) Applied the patches to the optimized kernel
   4) Replaced the NFS modules on the system with the one's built on 
optimized kernel.
   5) Ran gds and compat mode tests on a  NFS mount with the patched NFS 
driver. All tests went fine.
   
  Attaching the results

  Compat mode tests
  ==
  **
  API Tests, : 72 /  72 tests passed
  **
  Testsuite : 211 / 211 tests passed
  done tests:Thu Jul 21 08:27:58 PM UTC 2022

  GDS mode tests
  ==
  **
  NVFS IOCTL negative Tests, : 23 /  23 tests passed
  **
  Testsuite : 249 / 249 tests passed
  End: nvidia-fs:
  GDS Version: 1.4.0.31
  NVFS statistics(ver: 4.0)

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


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


[Kernel-packages] [Bug 1982518] [NEW] NVMe/MVMEeOF: Patch NVMe/NVMeOF driver to support GDS

2022-07-21 Thread Brad Figg
Public bug reported:

 [Impact]
Adding these changes will enable GDS functionality for NVMe and NVMeOF 
drivers.

 [Fix]
This is a not a fix but a new feature being added to NVMe and NVMeOF driver.

 [Test]
Tested the NVMe driver on a hpe system as I did not have a setup with 
BASEOS6.
 1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
 2) Downloaded the optimized kernel.
 3) Applied the patches to the optimized kernel
 4) Replaced the nvme modules on the system with the one's built on 
optimized kernel.
 5) Ran gds tests on ext4 file system with the patched NVMe driver. All 
tests went fine.
 6) The boot drive is on NVMe and the system is up and running which 
indicates no regression on the standard NVMe path as well.


 Attached are the results with NVMe
 **
NVFS IOCTL negative Tests, : 23 /  23 tests passed
**
Testsuite : 249 / 249 tests passed
End: nvidia-fs:
GDS Version: 1.4.0.31
NVFS statistics(ver: 4.0)
NVFS Driver(version: 2.13.5)
Mellanox PeerDirect Supported: False
IO stats: Disabled, peer IO stats: Disabled
Logging level: info

Compat mode Tests
==
**
API Tests, : 72 /  72 tests passed
**
Testsuite : 211 / 211 tests passed
done tests:Thu Jul 21 08:12:09 PM UTC 2022


Could not test the same with NVMeOF as a setup was not available.

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

Title:
  NVMe/MVMEeOF: Patch NVMe/NVMeOF driver to support GDS

Status in linux-nvidia package in Ubuntu:
  New

Bug description:
   [Impact]
  Adding these changes will enable GDS functionality for NVMe and NVMeOF 
drivers.

   [Fix]
  This is a not a fix but a new feature being added to NVMe and NVMeOF 
driver.

   [Test]
  Tested the NVMe driver on a hpe system as I did not have a setup with 
BASEOS6.
   1) Installed 5.15.39 kernel on the system (this is the kernel that 
optimized kernel is on currently).
   2) Downloaded the optimized kernel.
   3) Applied the patches to the optimized kernel
   4) Replaced the nvme modules on the system with the one's built on 
optimized kernel.
   5) Ran gds tests on ext4 file system with the patched NVMe driver. All 
tests went fine.
   6) The boot drive is on NVMe and the system is up and running which 
indicates no regression on the standard NVMe path as well.

  
   Attached are the results with NVMe
   **
  NVFS IOCTL negative Tests, : 23 /  23 tests passed
  **
  Testsuite : 249 / 249 tests passed
  End: nvidia-fs:
  GDS Version: 1.4.0.31
  NVFS statistics(ver: 4.0)
  NVFS Driver(version: 2.13.5)
  Mellanox PeerDirect Supported: False
  IO stats: Disabled, peer IO stats: Disabled
  Logging level: info

  Compat mode Tests
  ==
  **
  API Tests, : 72 /  72 tests passed
  **
  Testsuite : 211 / 211 tests passed
  done tests:Thu Jul 21 08:12:09 PM UTC 2022


  Could not test the same with NVMeOF as a setup was not available.

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


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


[Kernel-packages] [Bug 1970056] Re: Ubuntu 22.04 unable to mount root partition

2022-06-04 Thread Brad Jolly
After testing kernel 5.18.0 from mainline, the issue does appear
resolved -- the system will boot with "pci=nocrs" and the touchpad,
touchscreen function.

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

Title:
  Ubuntu 22.04 unable to mount root partition

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After updating from Kubuntu 21.10 to Kubuntu 22.04, boot drops to a
  (initramfs) prompt/busybox. When I type "exit" I get the "Gave up
  waiting for root file system device" error message and "ALERT!
  UUID=[nvme drive UUID] does not exist. Dropping to a shell!"

  I can still boot into KDE when selecting the older kernel version
  5.13.0-40-lowlatency. I have tried the newer kernel versions
  5.15.025-generic, 5.15.0.24-lowlatency, 5.17.4-051421-generic and
  5.14.21-051421-lowlatency and all have produced the same problem.

  When removing the the "pci=nocrs" kernel paramater in Grub for these
  newer versions, the system boots into KDE but the touchpad does not
  work. Kernel version 5.13.0-40-lowlatency boots into KDE without
  removing the "pci=nocrs" parameter and everything works as expected,
  including the touchpad.

  My hardware is a Lenovo ideapad lenovo ideapad 3 15IIL05, Processors: 8 × 
Intel® Core™ i5-1035G4 CPU @ 1.10GHz, Memory: 7,3 GiB of RAM, Graphics 
Processor: Mesa Intel® Iris® Plus Graphics. I have upgraded the hard drive that 
came with the machine to a Kingston SA2000M8500G 465,8GiB nvme drive.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nick   2376 F jackdbus
   /dev/snd/pcmC0D0c:   nick   2376 F...m jackdbus
   /dev/snd/pcmC0D0p:   nick   2376 F...m jackdbus
   /dev/snd/seq:nick   2801 F a2jmidid
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-12-27 (483 days ago)
  InstallationMedia: Kubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 002: ID 174f:1176 Syntek Integrated Camera
   Bus 001 Device 003: ID 8087:0026 Intel Corp. AX201 Bluetooth
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 81WE
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic 
root=UUID=5a0515ea-30d8-4412-ad65-8abbd8be949f ro quiet splash
  ProcVersionSignature: Ubuntu 5.15.0-25.25-generic 5.15.30
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-25-generic N/A
   linux-backports-modules-5.15.0-25-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu1
  Tags:  jammy
  Uname: Linux 5.15.0-25-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip libvirt lpadmin lxd plugdev sambashare sudo 
www-data
  _MarkForUpload: True
  dmi.bios.date: 08/10/2020
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: EMCN40WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32866 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: IdeaPad 3 15IIL05
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrEMCN40WW:bd08/10/2020:br1.40:efr1.40:svnLENOVO:pn81WE:pvrIdeaPad315IIL05:rvnLENOVO:rnLNVNB161216:rvrSDK0R32866WIN:cvnLENOVO:ct10:cvrIdeaPad315IIL05:skuLENOVO_MT_81WE_BU_idea_FM_IdeaPad315IIL05:
  dmi.product.family: IdeaPad 3 15IIL05
  dmi.product.name: 81WE
  dmi.product.sku: LENOVO_MT_81WE_BU_idea_FM_IdeaPad 3 15IIL05
  dmi.product.version: IdeaPad 3 15IIL05
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 1970056] Re: Ubuntu 22.04 unable to mount root partition

2022-04-24 Thread Brad Jolly
After a clean install of Ubuntu 22.04, I have the same issue on an Acer
Spin 5 SP513-54N-74V2. Installing and booting into kernel 5.13.19 works
fine and resolves the issue. With kernel 5.15 and no "pci=nocrs," the
error seems to be i2c_designware: failed to claim resource.

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

Title:
  Ubuntu 22.04 unable to mount root partition

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  After updating from Kubuntu 21.10 to Kubuntu 22.04, boot drops to a
  (initramfs) prompt/busybox. When I type "exit" I get the "Gave up
  waiting for root file system device" error message and "ALERT!
  UUID=[nvme drive UUID] does not exist. Dropping to a shell!"

  I can still boot into KDE when selecting the older kernel version
  5.13.0-40-lowlatency. I have tried the newer kernel versions
  5.15.025-generic, 5.15.0.24-lowlatency, 5.17.4-051421-generic and
  5.14.21-051421-lowlatency and all have produced the same problem.

  When removing the the "pci=nocrs" kernel paramater in Grub for these
  newer versions, the system boots into KDE but the touchpad does not
  work. Kernel version 5.13.0-40-lowlatency boots into KDE without
  removing the "pci=nocrs" parameter and everything works as expected,
  including the touchpad.

  My hardware is a Lenovo ideapad lenovo ideapad 3 15IIL05, Processors: 8 × 
Intel® Core™ i5-1035G4 CPU @ 1.10GHz, Memory: 7,3 GiB of RAM, Graphics 
Processor: Mesa Intel® Iris® Plus Graphics. I have upgraded the hard drive that 
came with the machine to a Kingston SA2000M8500G 465,8GiB nvme drive.
  --- 
  ProblemType: Bug
  ApportVersion: 2.20.11-0ubuntu82
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nick   2376 F jackdbus
   /dev/snd/pcmC0D0c:   nick   2376 F...m jackdbus
   /dev/snd/pcmC0D0p:   nick   2376 F...m jackdbus
   /dev/snd/seq:nick   2801 F a2jmidid
  CasperMD5CheckResult: unknown
  CurrentDesktop: KDE
  DistroRelease: Ubuntu 22.04
  InstallationDate: Installed on 2020-12-27 (483 days ago)
  InstallationMedia: Kubuntu 20.10 "Groovy Gorilla" - Release amd64 (20201022)
  Lsusb:
   Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
   Bus 001 Device 002: ID 174f:1176 Syntek Integrated Camera
   Bus 001 Device 003: ID 8087:0026 Intel Corp. AX201 Bluetooth
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: LENOVO 81WE
  Package: linux (not installed)
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-25-generic 
root=UUID=5a0515ea-30d8-4412-ad65-8abbd8be949f ro quiet splash
  ProcVersionSignature: Ubuntu 5.15.0-25.25-generic 5.15.30
  RelatedPackageVersions:
   linux-restricted-modules-5.15.0-25-generic N/A
   linux-backports-modules-5.15.0-25-generic  N/A
   linux-firmware 20220329.git681281e4-0ubuntu1
  Tags:  jammy
  Uname: Linux 5.15.0-25-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm audio cdrom dip libvirt lpadmin lxd plugdev sambashare sudo 
www-data
  _MarkForUpload: True
  dmi.bios.date: 08/10/2020
  dmi.bios.release: 1.40
  dmi.bios.vendor: LENOVO
  dmi.bios.version: EMCN40WW
  dmi.board.asset.tag: NO Asset Tag
  dmi.board.name: LNVNB161216
  dmi.board.vendor: LENOVO
  dmi.board.version: SDK0R32866 WIN
  dmi.chassis.asset.tag: NO Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: IdeaPad 3 15IIL05
  dmi.ec.firmware.release: 1.40
  dmi.modalias: 
dmi:bvnLENOVO:bvrEMCN40WW:bd08/10/2020:br1.40:efr1.40:svnLENOVO:pn81WE:pvrIdeaPad315IIL05:rvnLENOVO:rnLNVNB161216:rvrSDK0R32866WIN:cvnLENOVO:ct10:cvrIdeaPad315IIL05:skuLENOVO_MT_81WE_BU_idea_FM_IdeaPad315IIL05:
  dmi.product.family: IdeaPad 3 15IIL05
  dmi.product.name: 81WE
  dmi.product.sku: LENOVO_MT_81WE_BU_idea_FM_IdeaPad 3 15IIL05
  dmi.product.version: IdeaPad 3 15IIL05
  dmi.sys.vendor: LENOVO

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


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


[Kernel-packages] [Bug 1952818] Re: Fails to suspend

2021-12-25 Thread brad haack
I think this has been fixed by updating the OS to Xubuntu 21.10 (&
associated kernel) & the Bios to 1.3.0.   I also had to keep the sleep
mode in s2idle

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

Title:
  Fails to suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Occasionally my laptop fails to suspend with a lid close.  I always get this 
message in syslog or kernal.log:
  kernel: [ 1947.276485] ACPI: button: The lid device is not compliant to 
SW_LID.
  But it usually continues and suspends successfully.  This time there was 
nothing in syslog, kern.log, or dmesg after the SW_LID message.
  It also never locks the screen either, & this time there was a msg on the 
screen after I opened it up about failing to lock the screen.

  Description:  Ubuntu 21.04
  Release:  21.04

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: linux-image-5.11.0-41-generic 5.11.0-41.45
  ProcVersionSignature: Ubuntu 5.11.0-41.45-generic 5.11.22
  Uname: Linux 5.11.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu65.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  brad   1280 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Tue Nov 30 18:51:44 2021
  InstallationDate: Installed on 2021-11-20 (10 days ago)
  InstallationMedia: Xubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
  MachineType: Dell Inc. Vostro 15 7510
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-41-generic 
root=UUID=a07e9fdf-df33-4257-913f-9fe9f42e08a9 ro quiet splash 
mem_sleep_default=deep vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.11.0-41-generic N/A
   linux-backports-modules-5.11.0-41-generic  N/A
   linux-firmware 1.197.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to hirsute on 2021-11-29 (1 days ago)
  dmi.bios.date: 10/14/2021
  dmi.bios.release: 1.2
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.1
  dmi.board.name: 0J0MWF
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd10/14/2021:br1.2:svnDellInc.:pnVostro157510:pvr:sku0A82:rvnDellInc.:rn0J0MWF:rvrA01:cvnDellInc.:ct10:cvr:
  dmi.product.family: Vostro
  dmi.product.name: Vostro 15 7510
  dmi.product.sku: 0A82
  dmi.sys.vendor: Dell Inc.

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


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


[Kernel-packages] [Bug 1952818] [NEW] Fails to suspend

2021-11-30 Thread brad haack
Public bug reported:

Occasionally my laptop fails to suspend with a lid close.  I always get this 
message in syslog or kernal.log:
kernel: [ 1947.276485] ACPI: button: The lid device is not compliant to SW_LID.
But it usually continues and suspends successfully.  This time there was 
nothing in syslog, kern.log, or dmesg after the SW_LID message.
It also never locks the screen either, & this time there was a msg on the 
screen after I opened it up about failing to lock the screen.

Description:Ubuntu 21.04
Release:21.04

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: linux-image-5.11.0-41-generic 5.11.0-41.45
ProcVersionSignature: Ubuntu 5.11.0-41.45-generic 5.11.22
Uname: Linux 5.11.0-41-generic x86_64
ApportVersion: 2.20.11-0ubuntu65.4
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  brad   1280 F pulseaudio
CasperMD5CheckResult: unknown
Date: Tue Nov 30 18:51:44 2021
InstallationDate: Installed on 2021-11-20 (10 days ago)
InstallationMedia: Xubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
MachineType: Dell Inc. Vostro 15 7510
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-41-generic 
root=UUID=a07e9fdf-df33-4257-913f-9fe9f42e08a9 ro quiet splash 
mem_sleep_default=deep vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.11.0-41-generic N/A
 linux-backports-modules-5.11.0-41-generic  N/A
 linux-firmware 1.197.3
SourcePackage: linux
UpgradeStatus: Upgraded to hirsute on 2021-11-29 (1 days ago)
dmi.bios.date: 10/14/2021
dmi.bios.release: 1.2
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 1.2.1
dmi.board.name: 0J0MWF
dmi.board.vendor: Dell Inc.
dmi.board.version: A01
dmi.chassis.type: 10
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd10/14/2021:br1.2:svnDellInc.:pnVostro157510:pvr:sku0A82:rvnDellInc.:rn0J0MWF:rvrA01:cvnDellInc.:ct10:cvr:
dmi.product.family: Vostro
dmi.product.name: Vostro 15 7510
dmi.product.sku: 0A82
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-bug hirsute

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

Title:
  Fails to suspend

Status in linux package in Ubuntu:
  New

Bug description:
  Occasionally my laptop fails to suspend with a lid close.  I always get this 
message in syslog or kernal.log:
  kernel: [ 1947.276485] ACPI: button: The lid device is not compliant to 
SW_LID.
  But it usually continues and suspends successfully.  This time there was 
nothing in syslog, kern.log, or dmesg after the SW_LID message.
  It also never locks the screen either, & this time there was a msg on the 
screen after I opened it up about failing to lock the screen.

  Description:  Ubuntu 21.04
  Release:  21.04

  ProblemType: Bug
  DistroRelease: Ubuntu 21.04
  Package: linux-image-5.11.0-41-generic 5.11.0-41.45
  ProcVersionSignature: Ubuntu 5.11.0-41.45-generic 5.11.22
  Uname: Linux 5.11.0-41-generic x86_64
  ApportVersion: 2.20.11-0ubuntu65.4
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  brad   1280 F pulseaudio
  CasperMD5CheckResult: unknown
  Date: Tue Nov 30 18:51:44 2021
  InstallationDate: Installed on 2021-11-20 (10 days ago)
  InstallationMedia: Xubuntu 20.04.3 LTS "Focal Fossa" - Release amd64 
(20210819.1)
  MachineType: Dell Inc. Vostro 15 7510
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 i915drmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-41-generic 
root=UUID=a07e9fdf-df33-4257-913f-9fe9f42e08a9 ro quiet splash 
mem_sleep_default=deep vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-5.11.0-41-generic N/A
   linux-backports-modules-5.11.0-41-generic  N/A
   linux-firmware 1.197.3
  SourcePackage: linux
  UpgradeStatus: Upgraded to hirsute on 2021-11-29 (1 days ago)
  dmi.bios.date: 10/14/2021
  dmi.bios.release: 1.2
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 1.2.1
  dmi.board.name: 0J0MWF
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A01
  dmi.chassis.type: 10
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr1.2.1:bd10/14/2021:br1.2:svnDellInc.:pnVostro157510:pvr:sku0A82:rvnDellInc.:rn0J0MWF:rvrA01:cvnDellInc.:ct10:cvr:
  dmi.product.family: Vostro
  dmi.product.name: Vostro 15 7510
  dmi.product.sku: 0A82
  dmi.sys.vendor: Dell Inc.

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


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

[Kernel-packages] [Bug 1929892] Re: [TGL] enable USB-dw3

2021-09-01 Thread Brad Figg
We get this for free with the move to a 5.13 based focal:linux-intel kernel.

** Changed in: intel
   Status: New => Invalid

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

** Changed in: intel
 Assignee: (unassigned) => Brad Figg (brad-figg)

** Changed in: linux-intel (Ubuntu)
 Assignee: Hsuan-Yu Lin (shanelin) => Brad Figg (brad-figg)

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

Title:
  [TGL] enable USB-dw3

Status in intel:
  Invalid
Status in linux package in Ubuntu:
  Incomplete
Status in linux-intel package in Ubuntu:
  Invalid

Bug description:
  Description
  Enable USB-dw3 for Tiger Lake

  Hardware: Tiger Lake

  Target Release: 21.04
  Target Kernel: TBD

  External links:
  
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.11-yocto-210223T083754Z

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


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


[Kernel-packages] [Bug 1929901] Re: [EHL][TGL] EDAC support

2021-09-01 Thread Brad Figg
This commit already exists in the focal:linux-intel intel-5.13-next. 

** Changed in: intel
   Status: New => Fix Committed

** Changed in: intel
 Assignee: (unassigned) => Brad Figg (brad-figg)

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

Title:
  [EHL][TGL] EDAC support

Status in intel:
  Fix Committed
Status in linux package in Ubuntu:
  Incomplete
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  Description
  EDAC driver support on EHL & TGL for reporting ECC error and DIMM location

  Hardware: Tiger Lake & Elkhart Lake

  Target Release: 21.04
  Target Kernel: TBD

  External links:
  
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.11-yocto-210223T083754Z

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


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


[Kernel-packages] [Bug 1938408] Re: [ehl] board does not support soft reboot

2021-08-15 Thread Brad Figg
** Summary changed:

- EHL board does not support soft reboot
+ [ehl] board does not support soft reboot

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

Title:
  [ehl] board does not support soft reboot

Status in intel:
  Fix Committed
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  [Summary]Telling the EHL board to reboot from within Ubuntu causes it
  to hang, forcing you to do a hard reboot.

  [Steps to reproduce]
  1. Open terminal window.
  2. $ reboot

  [Expected result]
  System should gracefullyl reboot.

  [Actual result]
  Screen goes blank except for a cursor.  System does not reboot. You must hard 
reboot (pull the plug)

  [Failure rate]100%

  [Additional information]
  CID: 202105-29063 
  SKU: 
  system-manufacturer: Intel Corporation
  system-product-name: Elkhart Lake Embedded Platform
  bios-version: EHLSFWI1.R00.2091.A00.2002250754
  CPU: Genuine Intel(R) CPU  @ 1.90GHz (4x)
  GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Device 
[8086:4571]
  kernel-version: 5.11.0-1009-intel

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


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


[Kernel-packages] [Bug 1938413] Re: [ehl] Shutdown hangs on board

2021-08-15 Thread Brad Figg
** Summary changed:

- Shutdown hangs on EHL board
+ [ehl] Shutdown hangs on board

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

Title:
  [ehl] Shutdown hangs on board

Status in intel:
  Fix Committed
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  [Summary]Go to Power -> Shutdown and the screen goes blank, but the
  system does not shut down.  You cannot recover and have to perform a
  hard reboot.

  [Steps to reproduce]
  1. Boot up Ubuntu
  2. Power -> Shutdown (click ok)

  [Expected result]
  System should cleanly shut down.

  [Actual result]
  Screen blanks with a blinking cursor, the system does not shut down, the fan 
is still on.  System is unresponsive, forcing you to do a hard reset.

  [Failure rate]100%

  [Additional information]
  CID: 20215-29063 
  SKU: 
  system-manufacturer: Intel Corporation
  system-product-name: Elkhart Lake Embedded Platform
  bios-version: EHLSFWI1.R00.2091.A00.2002250754
  CPU: Genuine Intel(R) CPU  @ 1.90GHz (4x)
  GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Device 
[8086:4571]
  kernel-version: 5.11.0-1009-intel

  
  [Stage]
  Device froze, issue reported and logs collected right after a reboot

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


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


[Kernel-packages] [Bug 1938413] Re: Shutdown hangs on EHL board

2021-08-12 Thread Brad Figg
** Changed in: intel
   Status: New => Fix Committed

** Tags added: lookout-canyon

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

Title:
  Shutdown hangs on EHL board

Status in intel:
  Fix Committed
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  [Summary]Go to Power -> Shutdown and the screen goes blank, but the
  system does not shut down.  You cannot recover and have to perform a
  hard reboot.

  [Steps to reproduce]
  1. Boot up Ubuntu
  2. Power -> Shutdown (click ok)

  [Expected result]
  System should cleanly shut down.

  [Actual result]
  Screen blanks with a blinking cursor, the system does not shut down, the fan 
is still on.  System is unresponsive, forcing you to do a hard reset.

  [Failure rate]100%

  [Additional information]
  CID: 20215-29063 
  SKU: 
  system-manufacturer: Intel Corporation
  system-product-name: Elkhart Lake Embedded Platform
  bios-version: EHLSFWI1.R00.2091.A00.2002250754
  CPU: Genuine Intel(R) CPU  @ 1.90GHz (4x)
  GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Device 
[8086:4571]
  kernel-version: 5.11.0-1009-intel

  
  [Stage]
  Device froze, issue reported and logs collected right after a reboot

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


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


[Kernel-packages] [Bug 1929902] Re: [EHL] enable USB-dw3

2021-08-12 Thread Brad Figg
** Changed in: intel
   Status: New => Fix Committed

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

Title:
  [EHL] enable USB-dw3

Status in intel:
  Fix Committed
Status in linux package in Ubuntu:
  New
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  Description
  Enable USB-dw3 for Elkhart Lake

  Hardware: Elkhart Lake

  Target Release: 21.04
  Target Kernel: TBD

  External links:
  
https://github.com/intel/linux-intel-quilt/tree/mainline-tracking-v5.11-yocto-210223T083754Z

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


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


[Kernel-packages] [Bug 1938408] Re: EHL board does not support soft reboot

2021-08-12 Thread Brad Figg
** Changed in: intel
   Status: New => Fix Committed

** Tags added: lookout-canyon

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

Title:
  EHL board does not support soft reboot

Status in intel:
  Fix Committed
Status in linux-intel package in Ubuntu:
  Fix Committed

Bug description:
  [Summary]Telling the EHL board to reboot from within Ubuntu causes it
  to hang, forcing you to do a hard reboot.

  [Steps to reproduce]
  1. Open terminal window.
  2. $ reboot

  [Expected result]
  System should gracefullyl reboot.

  [Actual result]
  Screen goes blank except for a cursor.  System does not reboot. You must hard 
reboot (pull the plug)

  [Failure rate]100%

  [Additional information]
  CID: 202105-29063 
  SKU: 
  system-manufacturer: Intel Corporation
  system-product-name: Elkhart Lake Embedded Platform
  bios-version: EHLSFWI1.R00.2091.A00.2002250754
  CPU: Genuine Intel(R) CPU  @ 1.90GHz (4x)
  GPU: 00:02.0 VGA compatible controller [0300]: Intel Corporation Device 
[8086:4571]
  kernel-version: 5.11.0-1009-intel

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


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


[Kernel-packages] [Bug 1912752] Re: linux-uc20-efi: megaraid_sas required in the initrd

2021-03-02 Thread Brad Figg
** Changed in: linux (Ubuntu Focal)
   Importance: Undecided => Critical

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

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

Title:
  linux-uc20-efi: megaraid_sas required in the initrd

Status in HWE Next:
  New
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Focal:
  In Progress

Bug description:
  == Impact ==
  Dell R340 fails to boot with UC20 pc-kernel snap because of unable to find 
the storage device.

  == Fix ==
  In this case, storage disks are connected through a controller enabled by 
kernel module megaraid_sas, hence the module must be presented in the initrd in 
order to make the system boot.

  == Risk of Regression ==
  Low. We're only adding an existing module into the initrd. The only downside 
may be the small increase of the snap size.

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

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


[Kernel-packages] [Bug 1908894] Re: USB controllers disconnects after random time

2021-01-14 Thread Brad Woodward
I've been having the same issue since building a new system a couple
months ago. The frequency is inconsistent, but rarely happens more than
once per day. Sometimes I'll lose my keyboard mid-sentence, and other
times I won't be able to unlock the system in the morning.

Oddly, my USB mouse (a Razer Naga) always still works, and the side
buttons which act as a number pad also always work. However, by USB hub
loses power, and neither it nor my keyboard ever regain power or
functionality when re-plugging or switching ports. It's always fixed by
a reboot.

I'm on a Threadripper 3990x with an ASUS ROG Zenith II Extreme
motherboard.

Here's the snippet from /var/log/syslog:

Jan 14 19:37:19 amaranth systemd[1]: fprintd.service: Succeeded.
Jan 14 19:38:44 amaranth kernel: [37857.592954] xhci_hcd :49:00.3: Mismatch 
between completed Set TR Deq Ptr command & xHCI internal state.
Jan 14 19:38:44 amaranth kernel: [37857.592957] xhci_hcd :49:00.3: ep deq 
seg = 3ccd0405, deq ptr = 6daebfd1
Jan 14 19:38:45 amaranth kernel: [37858.593779] xhci_hcd :49:00.3: AMD-Vi: 
Event logged [IO_PAGE_FAULT domain=0x0035 address=0x0 flags=0x]
Jan 14 19:38:50 amaranth kernel: [37863.667171] xhci_hcd :49:00.3: xHCI 
host not responding to stop endpoint command.
Jan 14 19:38:50 amaranth kernel: [37863.667178] xhci_hcd :49:00.3: xHCI 
host controller not responding, assume dead
Jan 14 19:38:50 amaranth kernel: [37863.667220] xhci_hcd :49:00.3: HC died; 
cleaning up
Jan 14 19:38:50 amaranth kernel: [37863.667255] usb 9-3: USB disconnect, device 
number 2
Jan 14 19:38:50 amaranth kernel: [37863.667258] usb 9-3.1: USB disconnect, 
device number 4
Jan 14 19:38:50 amaranth kernel: [37863.667447] usb 10-3: USB disconnect, 
device number 2
Jan 14 19:38:50 amaranth kernel: [37863.667449] usb 10-3.2: USB disconnect, 
device number 4
Jan 14 19:38:50 amaranth kernel: [37863.667451] usb 10-3.2.4: USB disconnect, 
device number 5
Jan 14 19:38:50 amaranth kernel: [37863.668402] usb 10-4: USB disconnect, 
device number 3
Jan 14 19:38:50 amaranth kernel: [37863.735579] usb 9-3.2: USB disconnect, 
device number 6
Jan 14 19:38:50 amaranth kernel: [37863.735581] usb 9-3.2.3: USB disconnect, 
device number 7
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 17
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 8
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 9
Jan 14 19:38:50 amaranth kernel: [37863.979627] usb 9-3.2.4: USB disconnect, 
device number 9
Jan 14 19:38:50 amaranth kernel: [37863.979630] usb 9-3.2.4.4: USB disconnect, 
device number 10
Jan 14 19:38:50 amaranth kernel: [37864.076604] usb 9-4: USB disconnect, device 
number 3
Jan 14 19:38:50 amaranth kernel: [37864.076833] usb 9-5: USB disconnect, device 
number 5
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 7
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 10
Jan 14 19:38:50 amaranth kernel: [37864.231560] usb 9-6: USB disconnect, device 
number 8
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 11
Jan 14 19:38:50 amaranth acpid: input device has been disconnected, fd 12

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

Title:
  USB controllers disconnects after random time

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  Since I installed Ubuntu on my new convertible laptop, I got issues with the 
USB. Just after boot my USB controller is working properly (I can connect usb 
sticks, mices, and my internal camera works) and at some point long after it 
suddenly stop working (mices suddenly stop moving even when used, webcam and 
sticks no more detected).
  This can happend few minuts after boot, or several days after.
  Yet I have not been able to find what triggers the failure. It happends at 
any time during normal usage of the computer, including during the usb usage.

  more concrete infos:
  after failure, I get
  $ dmesg

  [ 2671.894099] perf: interrupt took too long (2512 > 2500), lowering 
kernel.perf_event_max_sample_rate to 79500
  [ 3262.197917] xhci_hcd :03:00.3: Mismatch between completed Set TR Deq 
Ptr command & xHCI internal state.
  [ 3262.197927] xhci_hcd :03:00.3: ep deq seg = 8dafef36, deq ptr 
= 5f96ce32
  [ 3262.198052] xhci_hcd :03:00.3: AMD-Vi: Event logged [IO_PAGE_FAULT 
domain=0x000a address=0x0 flags=0x]
  [ 3267.250397] xhci_hcd :03:00.3: xHCI host not responding to stop 
endpoint command.
  [ 3267.250428] xhci_hcd :03:00.3: xHCI host controller not responding, 
assume dead
  [ 3267.250463] xhci_hcd :03:00.3: HC died; cleaning up
  [ 3267.250499] usb 1-3: USB disconnect, device number 2
  [ 3267.311251] usb 1-4: USB disconnect, device number 3

  and lsusb doesn't show my devices anymore, even the newly inserted
 

[Kernel-packages] [Bug 1885030] Re: [Intel] Add Error Disconnect Recover support

2020-06-25 Thread Brad Figg
Based on this evaluation we have no plans at this time to backport these
patches to the Focal 5.4 kernel.

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

Title:
  [Intel] Add Error Disconnect Recover support

Status in intel:
  New
Status in linux package in Ubuntu:
  Incomplete
Status in linux source package in Focal:
  Incomplete
Status in linux source package in Groovy:
  Incomplete

Bug description:
  As per the following PCIe spec ECNs, implement EDR support in Linux
  kernel and upstream it.

  https://members.pcisig.com/wg/PCI-SIG/document/14076

  https://members.pcisig.com/wg/PCI-SIG/document/12888

  Patchset (Merged 5.7 mainline):
  894020fdd88c PCI/AER: Rationalize error status register clearing
  ac1c8e35a326 PCI/DPC: Add Error Disconnect Recover (EDR) support
  aea47413e7ce PCI/DPC: Expose dpc_process_error(), dpc_reset_link() for use by 
EDR
  20e15e673b05 PCI/AER: Add pci_aer_raw_clear_status() to unconditionally clear 
Error Status
  27005618178e PCI/DPC: Cache DPC capabilities in pci_init_capabilities()
  e8e5ff2aeec1 PCI/ERR: Return status of pcie_do_recovery()
  b6cf1a42f916 PCI/ERR: Remove service dependency in pcie_do_recovery()
  be06c1b42eea PCI/DPC: Move DPC data into struct pci_dev
  6d2c89441571 PCI/ERR: Update error status after reset_link()
  b5dfbeacf748 PCI/ERR: Combine pci_channel_io_frozen cases

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

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


[Kernel-packages] [Bug 1885030] Re: [Intel] Add Error Disconnect Recover support

2020-06-25 Thread Brad Figg
The following evaluation was done in early May 


In summary, EDR is brand new in upstream kernels and to my  


knowledge has not been exercised in-house at Canonical, and may be  


difficult to test due to a lack of systems with EDR functionality in


their firmware.  I am unsure as to what the state of regression testing 


is with regards to this type of PCI functionality.  





Some followup patches and discussion after the original EDR 


submission are below.   





To be clear, these are not part of the request from Nvidia. 


These are upstream followups to the EDR patch set, and are indicative of


the final state of this functionality still being in flux.  





https://lore.kernel.org/linux-pci/1588272369-2145-1-git-send-email-jonathan.derr...@intel.com/

  



The above is unapplied upstream; it is proposed to fix an issue 


with the negotiation between the operating system and firmware for  


control for DPC, and as of 1 May 2020 is pending waiting for





https://lore.kernel.org/linux-pci/67af2931705bed9a588b5a39d369cb70b9942190.1587925636.git.sathyanarayanan.kuppusw...@linux.intel.com/
   



to be sorted out.   





This patch (which is applied upstream to pci git tree for   


merging in 5.8) relates to how the operating system and firmware


negotiate control of AER and DPC via the "firmware first" bit in the


ACPI HEST vs. using the _OSC ACPI method.  Prior to this patch, the ACPI


HEST 

[Kernel-packages] [Bug 1842107] Re: [EHL][OSE] I2C implementation

2020-05-26 Thread Brad Figg
These commits are in the 20.04 release kernel.

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

** Changed in: intel
   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/1842107

Title:
  [EHL][OSE] I2C implementation

Status in intel:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Description:

  Elkhart Lake has Offload Services Engine (OSE) that will be BIOS
  configurable either to have some RTOS take control of its IO blocks or
  hand them off to running OS. IoTG has asked to support I2C. This
  should be based on Synopsys v2.00a specification

  Target Release: 20.04
  Target Kernel: TBD

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

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


[Kernel-packages] [Bug 1842142] Re: [EHL][OSE] SPI implementation

2020-05-26 Thread Brad Figg
This commit is in the released 20.04 kernel

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

** Changed in: intel
   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/1842142

Title:
  [EHL][OSE] SPI implementation

Status in intel:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Description:
  Elkhart Lake has Offload Services Engine (OSE) that will be BIOS configurable 
either to have some RTOS take control of its IO blocks or hand them off to 
running OS. IoTG has asked to support SPI. This should be based on Synopsys 
v3.23a specification.

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

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


[Kernel-packages] [Bug 1842107] Re: [EHL][OSE] I2C implementation

2020-05-26 Thread Brad Figg
** Changed in: linux (Ubuntu)
   Status: Incomplete => Triaged

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

Title:
  [EHL][OSE] I2C implementation

Status in intel:
  Fix Committed
Status in linux package in Ubuntu:
  Triaged

Bug description:
  Description:

  Elkhart Lake has Offload Services Engine (OSE) that will be BIOS
  configurable either to have some RTOS take control of its IO blocks or
  hand them off to running OS. IoTG has asked to support I2C. This
  should be based on Synopsys v2.00a specification

  Target Release: 20.04
  Target Kernel: TBD

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

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


[Kernel-packages] [Bug 1842142] Re: [EHL][OSE] SPI implementation

2020-05-26 Thread Brad Figg
** Changed in: linux (Ubuntu)
   Status: Incomplete => Triaged

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

Title:
  [EHL][OSE] SPI implementation

Status in intel:
  Fix Committed
Status in linux package in Ubuntu:
  Triaged

Bug description:
  Description:
  Elkhart Lake has Offload Services Engine (OSE) that will be BIOS configurable 
either to have some RTOS take control of its IO blocks or hand them off to 
running OS. IoTG has asked to support SPI. This should be based on Synopsys 
v3.23a specification.

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

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


[Kernel-packages] [Bug 1862028] Re: Focal uses the exfat fuse filesystem even though there is support in the kernel

2020-03-30 Thread Brad Figg
I believe if got the exfat-fuse filesystem when I installed exfat-tools
in order to mkexfatfs.

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

Title:
  Focal uses the exfat fuse filesystem even though there is support in
  the kernel

Status in linux package in Ubuntu:
  Incomplete
Status in ubuntu-mate-meta package in Ubuntu:
  Fix Released
Status in ubuntukylin-meta package in Ubuntu:
  In Progress
Status in udisks2 package in Ubuntu:
  Invalid

Bug description:
  When a storage device formatted with exfat is automatically mounted on
  a system it is mounted with a fuse filesystem instead of a native,
  kernel filesystem. The kernel now has support for exfat.

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

-- 
Mailing list: https://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   3   4   5   6   7   8   9   10   >