[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-10-09 Thread Michael Reed
Hi Yuri,

Any updates?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-10-04 Thread Michael Reed
This is now in linux proposed(6.8.0-48.48), please install the proposed
kernel and provide feedback.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077861] Re: [SRU]Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 24.04.1 server

2024-10-02 Thread Michael Reed
Hi Yuri,

What is the regression risk for this patch?

** Description changed:

- According to
- 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=88150cd9501b9498e377cc4440325267c6921f90,
- Intel Arrow Lake IBECC(In-Band ECC)) feature is already added in
- upstream.
+ [Impact]
+ Add Arrow Lake-U/H SoC compute die IDs for EDAC support.
+ 
+ However, the OS scope in LENOVO are ubuntu 22.04 and 24.04 server
+ version, which are using Linux kernel 6.8, due to this reason, can this
+ feature be backport to these two version, thanks!
+ 
+ [Test Plan]
+ 
+ 
+ [Fix]
+ According to 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=88150cd9501b9498e377cc4440325267c6921f90,
 Intel Arrow Lake IBECC(In-Band ECC)) feature is already added in upstream.
  
  "
  authorQiuxu Zhuo2024-06-14 11:03:54 
+0800
  committer Tony Luck  2024-06-14 08:08:12 -0700
  commit88150cd9501b9498e377cc4440325267c6921f90 (patch)
  tree  fc574a0966af4f31dcc7247ff3fbbdcccffb1089
  parent123b158635505c89ed0d3ef45c5845ff9030a466 (diff)
  download  linux-88150cd9501b9498e377cc4440325267c6921f90.tar.gz
  EDAC/igen6: Add Intel Arrow Lake-U/H SoCs support
  Arrow Lake-U/H SoCs share same IBECC registers with Meteor Lake-P
  SoCs. Add Arrow Lake-U/H SoC compute die IDs for EDAC support.
  
  Signed-off-by: Qiuxu Zhuo 
  Signed-off-by: Tony Luck 
  Link: https://lore.kernel.org/r/20240614030354.69180-1-qiuxu.z...@intel.com
  Diffstat
- -rw-r--r--drivers/edac/igen6_edac.c   8   
+ -rw-r--r--drivers/edac/igen6_edac.c   8
  1 files changed, 8 insertions, 0 deletions
  diff --git a/drivers/edac/igen6_edac.c b/drivers/edac/igen6_edac.c
  index cdd8480e736877..c9fc1e64069e33 100644
  --- a/drivers/edac/igen6_edac.c
  +++ b/drivers/edac/igen6_edac.c
  @@ -258,6 +258,11 @@ static struct work_struct ecclog_work;
-  #define DID_MTL_P_SKU2   0x7d02
-  #define DID_MTL_P_SKU3   0x7d14
-  
+  #define DID_MTL_P_SKU2   0x7d02
+  #define DID_MTL_P_SKU3   0x7d14
+ 
  +/* Compute die IDs for Arrow Lake-UH with IBECC */
  +#define DID_ARL_UH_SKU1  0x7d06
  +#define DID_ARL_UH_SKU2  0x7d20
  +#define DID_ARL_UH_SKU3  0x7d30
  +
-  static int get_mchbar(struct pci_dev *pdev, u64 *mchbar)
-  {
-   union  {
+  static int get_mchbar(struct pci_dev *pdev, u64 *mchbar)
+  {
+   union  {
  @@ -597,6 +602,9 @@ static const struct pci_device_id igen6_pci_tbl[] = {
-   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU1), (kernel_ulong_t)&mtl_p_cfg },
-   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU2), (kernel_ulong_t)&mtl_p_cfg },
-   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU3), (kernel_ulong_t)&mtl_p_cfg },
+   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU1), (kernel_ulong_t)&mtl_p_cfg },
+   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU2), (kernel_ulong_t)&mtl_p_cfg },
+   { PCI_VDEVICE(INTEL, DID_MTL_P_SKU3), (kernel_ulong_t)&mtl_p_cfg },
  + { PCI_VDEVICE(INTEL, DID_ARL_UH_SKU1), (kernel_ulong_t)&mtl_p_cfg },
  + { PCI_VDEVICE(INTEL, DID_ARL_UH_SKU2), (kernel_ulong_t)&mtl_p_cfg },
  + { PCI_VDEVICE(INTEL, DID_ARL_UH_SKU3), (kernel_ulong_t)&mtl_p_cfg },
-   { },
-  };
-  MODULE_DEVICE_TABLE(pci, igen6_pci_tbl);
+   { },
+  };
+  MODULE_DEVICE_TABLE(pci, igen6_pci_tbl);
  
  "
  
- However, the OS scope in LENOVO are ubuntu 22.04 and 24.04 server
- version, which are using Linux kernel 6.8, due to this reason, can this
- feature be backport to these two version, thanks!
+ 
+ [Where problems could occur]
+ 
+ [Other Info]
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2077861_intel_arrowlake_ibecc

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077861

Title:
  [SRU]Intel Arrow Lake IBECC feature backport request for ubuntu
  22.04.5 and 24.04.1 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077861] Re: [SRU]Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 24.04.1 server

2024-10-02 Thread Michael Reed
** Summary changed:

- Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 
24.04.1 server 
+ [SRU]Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 
24.04.1 server

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077861

Title:
  [SRU]Intel Arrow Lake IBECC feature backport request for ubuntu
  22.04.5 and 24.04.1 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077287] Re: Fail to locate the LED of NVME disk behind Intel VMD

2024-10-02 Thread Michael Reed
Hi Shangsong,

Have you had a chance to test the test kernel?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077287

Title:
  Fail to locate the LED of NVME disk behind  Intel VMD

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-10-02 Thread Michael Reed
Hi Yuri,

Have you received any updates from Intel as to all the patches that will
be needed?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077287] Re: Fail to locate the LED of NVME disk behind Intel VMD

2024-09-25 Thread Michael Reed
I have created a test kernel with this patch abaaac4845 PCI: hotplug:
Use FIELD_GET/PREP()

https://people.canonical.com/~mreed/lenovo/lp_2077287_locate_led_nvme/

Please test and provide feedback

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077287

Title:
  Fail to locate the LED of NVME disk behind  Intel VMD

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2081685] Re: [Ubuntu 24.04-generic Kernel-6.8]Hard lockup on 8 Socket System, ThinkSystem SR950 V3.

2024-09-25 Thread Michael Reed
** Also affects: linux (Ubuntu Noble)
   Importance: Undecided
   Status: New

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

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

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

** Changed in: linux (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2081685

Title:
  [Ubuntu 24.04-generic Kernel-6.8]Hard lockup on 8 Socket System,
  ThinkSystem SR950 V3.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077861] Re: Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 24.04.1 server

2024-09-24 Thread Michael Reed
I have created a test kernel, please test and provide feedback.

https://people.canonical.com/~mreed/lenovo/lp_2077861_intel_arrowlake_ibecc/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077861

Title:
  Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and
  24.04.1 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-24 Thread Michael Reed
Hi Yuri,

Can you verify that the following patch is probably what is needed
instead of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=6a9b38cc68a03b948df1f3fcb907c7557cfc315c

commit bddacdf4861c0586f6d515e0c25861443a32b92a
Author: Matt Roper 
Date:   Mon Jan 8 17:57:36 2024 +0530

drm/i915: Add additional ARL PCI IDs

Our existing MTL driver handling is also sufficient to handle ARL, so
these IDs are simply added to the MTL ID list.

Bspec: 55420
Signed-off-by: Matt Roper 
Signed-off-by: Haridhar Kalvala 
Reviewed-by: Matt Atwood 
Link: 
https://patchwork.freedesktop.org/patch/msgid/20240108122738.14399-2-haridhar.kalv...@intel.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077861] Re: Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and 24.04.1 server

2024-09-23 Thread Michael Reed
** Also affects: linux (Ubuntu Oracular)
   Importance: Undecided
   Status: New

** Changed in: linux (Ubuntu Oracular)
   Status: New => Fix Committed

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

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

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

** Changed in: linux (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

** Changed in: linux (Ubuntu Oracular)
 Assignee: (unassigned) => Michael Reed (mreed8855)

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077861

Title:
  Intel Arrow Lake IBECC feature backport request for ubuntu 22.04.5 and
  24.04.1 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077287] Re: Fail to locate the LED of NVME disk behind Intel VMD

2024-09-23 Thread Michael Reed
Hi,

Just to clarify the patch the introduces the issue is:

commit abaaac4845 PCI: hotplug: Use FIELD_GET/PREP()


The patch that fixes the issue is:
commit 5560a612c20PCI: pciehp: Retain Power Indicator bits for userspace 
indicators

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077287

Title:
  Fail to locate the LED of NVME disk behind  Intel VMD

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-23 Thread Michael Reed
Hi Yuri,

Can you provide the regression risk?  I suspect it is low but can you
confirm that?

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

** Changed in: linux (Ubuntu Oracular)
   Status: New => Fix Committed

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

** Changed in: linux (Ubuntu Oracular)
 Assignee: (unassigned) => Michael Reed (mreed8855)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-18 Thread Michael Reed
I will need to see what this issue is here before I submit this to the
kernel team mailing list.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2081079] Re: [SRU]Ubuntu 24.04 - It cannot be installed with DL380a Gen12 (2P, SRF-SP)

2024-09-18 Thread Michael Reed
HPE verified that the test kernel I provided resolved the issue.

** Description changed:

  [Impact]
  Description:
  Failed to install Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra Forest 2P 
GPU
  
  There is a random write to VF BAR0's memory region that causes the
  kernel got MCE error.
  
  Version-Release number :
  Ubuntu 24.04
  
  How reproducible:
  Each time
  
  Steps to reproduce
  - PCI segment, Intel VT-d and SR-IOV , all enabled in the BIOS
  - Run a fresh install on a DL380a server with 2P with GPU  in slot17
  
  Expected results
  No MCE and run installation w/o problem
  
  Actual results
  The kernel got MCE errors.
  
  Additional info:
  
  We have tracked this issue with RHEL9.4, it's caused by the following
  pathes.
  
  cb4a6ccf3583 perf/x86/intel/uncore: Support Sierra Forest and Grand Ridge 
(v6.8-rc1)
  388d76175bd9 perf/x86/intel/uncore: Support IIO free-running counters on GNR 
(v6.8-rc1)
  632c4bf6d007 perf/x86/intel/uncore: Support Granite Rapids (v6.8-rc1)
  b560e0cd882b perf/x86/uncore: Use u64 to replace unsigned for the uncore 
offsets array (v6.8-rc1)
  cf35791476fc perf/x86/intel/uncore: Generic uncore_get_uncores and MMIO 
format of SPR (v6.8-rc1)
  
  [Fix]
  Intel gave us a patch set that resolves the issue.
  
https://lore.kernel.org/lkml/20240614134631.1092359-1-kan.li...@linux.intel.com/#r
  
  The following patches are required.
  
  f8a86a9bb5f7 perf/x86/intel/uncore: Support HBM and CXL PMON counters 
(v6.11-rc1)
  15a4bd51853b perf/x86/uncore: Cleanup unused unit structure (v6.11-rc1)
  f76a8420444b perf/x86/uncore: Apply the unit control RB tree to PCI uncore 
units (v6.11-rc1)
  b1d9ea2e1ca4 perf/x86/uncore: Apply the unit control RB tree to MSR uncore 
units (v6.11-rc1)
  80580dae65b9 perf/x86/uncore: Apply the unit control RB tree to MMIO uncore 
units (v6.11-rc1)
  585463fee642 perf/x86/uncore: Retrieve the unit ID from the unit control RB 
tree (v6.11-rc1)
  c74443d92f68 perf/x86/uncore: Support per PMU cpumask (v6.11-rc1)
  0007f3932592 perf/x86/uncore: Save the unit control address of all units 
(v6.11-rc1)
  
  [Where problems could occur]
  
  [Other Info]
+ 
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2081079_dl380a_gen12

** Description changed:

  [Impact]
  Description:
- Failed to install Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra Forest 2P 
GPU
+ Failed to install GPU with Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra 
Forest 2P
  
  There is a random write to VF BAR0's memory region that causes the
  kernel got MCE error.
  
  Version-Release number :
  Ubuntu 24.04
  
  How reproducible:
  Each time
  
  Steps to reproduce
  - PCI segment, Intel VT-d and SR-IOV , all enabled in the BIOS
  - Run a fresh install on a DL380a server with 2P with GPU  in slot17
  
  Expected results
  No MCE and run installation w/o problem
  
  Actual results
  The kernel got MCE errors.
  
  Additional info:
  
  We have tracked this issue with RHEL9.4, it's caused by the following
  pathes.
  
  cb4a6ccf3583 perf/x86/intel/uncore: Support Sierra Forest and Grand Ridge 
(v6.8-rc1)
  388d76175bd9 perf/x86/intel/uncore: Support IIO free-running counters on GNR 
(v6.8-rc1)
  632c4bf6d007 perf/x86/intel/uncore: Support Granite Rapids (v6.8-rc1)
  b560e0cd882b perf/x86/uncore: Use u64 to replace unsigned for the uncore 
offsets array (v6.8-rc1)
  cf35791476fc perf/x86/intel/uncore: Generic uncore_get_uncores and MMIO 
format of SPR (v6.8-rc1)
  
  [Fix]
  Intel gave us a patch set that resolves the issue.
  
https://lore.kernel.org/lkml/20240614134631.1092359-1-kan.li...@linux.intel.com/#r
  
  The following patches are required.
  
  f8a86a9bb5f7 perf/x86/intel/uncore: Support HBM and CXL PMON counters 
(v6.11-rc1)
  15a4bd51853b perf/x86/uncore: Cleanup unused unit structure (v6.11-rc1)
  f76a8420444b perf/x86/uncore: Apply the unit control RB tree to PCI uncore 
units (v6.11-rc1)
  b1d9ea2e1ca4 perf/x86/uncore: Apply the unit control RB tree to MSR uncore 
units (v6.11-rc1)
  80580dae65b9 perf/x86/uncore: Apply the unit control RB tree to MMIO uncore 
units (v6.11-rc1)
  585463fee642 perf/x86/uncore: Retrieve the unit ID from the unit control RB 
tree (v6.11-rc1)
  c74443d92f68 perf/x86/uncore: Support per PMU cpumask (v6.11-rc1)
  0007f3932592 perf/x86/uncore: Save the unit control address of all units 
(v6.11-rc1)
  
  [Where problems could occur]
  
  [Other Info]
  
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2081079_dl380a_gen12

** Summary changed:

- [SRU]Ubuntu 24.04 - It cannot be installed with DL380a Gen12 (2P, SRF-SP)
+ [SRU]Ubuntu 24.04 - GPU cannot be installed with DL380a Gen12 (2P, SRF-SP)

** Summary changed:

- [SRU]Ubuntu 24.04 - GPU cannot be installed with DL380a Gen12 (2P, SRF-SP)
+ [SRU] Ubuntu 24.04 - GPU cannot be installed with DL380a Gen12 (2P, SRF-SP)

** Description changed:

  [Impact]
  Description:
  Failed to install GPU with Ubuntu 24.04 on 

[Bug 2081079] [NEW] [SRU]Ubuntu 24.04 - It cannot be installed with DL380a Gen12 (2P, SRF-SP)

2024-09-18 Thread Michael Reed
Public bug reported:

[Impact]
Description:
Failed to install Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra Forest 2P GPU

There is a random write to VF BAR0's memory region that causes the
kernel got MCE error.

Version-Release number :
Ubuntu 24.04

How reproducible:
Each time

Steps to reproduce
- PCI segment, Intel VT-d and SR-IOV , all enabled in the BIOS
- Run a fresh install on a DL380a server with 2P with GPU  in slot17

Expected results
No MCE and run installation w/o problem

Actual results
The kernel got MCE errors.

Additional info:

We have tracked this issue with RHEL9.4, it's caused by the following
pathes.

cb4a6ccf3583 perf/x86/intel/uncore: Support Sierra Forest and Grand Ridge 
(v6.8-rc1)
388d76175bd9 perf/x86/intel/uncore: Support IIO free-running counters on GNR 
(v6.8-rc1)
632c4bf6d007 perf/x86/intel/uncore: Support Granite Rapids (v6.8-rc1)
b560e0cd882b perf/x86/uncore: Use u64 to replace unsigned for the uncore 
offsets array (v6.8-rc1)
cf35791476fc perf/x86/intel/uncore: Generic uncore_get_uncores and MMIO format 
of SPR (v6.8-rc1)

[Fix]
Intel gave us a patch set that resolves the issue.
https://lore.kernel.org/lkml/20240614134631.1092359-1-kan.li...@linux.intel.com/#r

The following patches are required.

f8a86a9bb5f7 perf/x86/intel/uncore: Support HBM and CXL PMON counters 
(v6.11-rc1)
15a4bd51853b perf/x86/uncore: Cleanup unused unit structure (v6.11-rc1)
f76a8420444b perf/x86/uncore: Apply the unit control RB tree to PCI uncore 
units (v6.11-rc1)
b1d9ea2e1ca4 perf/x86/uncore: Apply the unit control RB tree to MSR uncore 
units (v6.11-rc1)
80580dae65b9 perf/x86/uncore: Apply the unit control RB tree to MMIO uncore 
units (v6.11-rc1)
585463fee642 perf/x86/uncore: Retrieve the unit ID from the unit control RB 
tree (v6.11-rc1)
c74443d92f68 perf/x86/uncore: Support per PMU cpumask (v6.11-rc1)
0007f3932592 perf/x86/uncore: Save the unit control address of all units 
(v6.11-rc1)

[Where problems could occur]

[Other Info]

** Affects: linux (Ubuntu)
 Importance: Medium
 Assignee: Michael Reed (mreed8855)
 Status: Fix Released

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

** Affects: linux (Ubuntu Oracular)
 Importance: Medium
 Assignee: Michael Reed (mreed8855)
 Status: Fix Released

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

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

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Michael Reed (mreed8855)

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

** Also affects: linux (Ubuntu Oracular)
   Importance: Medium
 Assignee: Michael Reed (mreed8855)
   Status: In Progress

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

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

** Description changed:

+ [Impact]
  Description:
  Failed to install Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra Forest 2P 
+ NVidia L40 GPU in slot17.
  
  There is a random write to VF BAR0's memory region that causes the
  kernel got MCE error.
  
  Version-Release number :
  Ubuntu 24.04
  
  How reproducible:
  Each time
  
  Steps to reproduce
  - PCI segment, Intel VT-d and SR-IOV , all enabled in the BIOS
  - Run a fresh install on a DL380a server with 2P with GPU (NVidia L40) in 
slot17
  
  Expected results
  No MCE and run installation w/o problem
  
  Actual results
  The kernel got MCE errors.
  
  Additional info:
  
  We have tracked this issue with RHEL9.4, it's caused by the following
  pathes.
  
  cb4a6ccf3583 perf/x86/intel/uncore: Support Sierra Forest and Grand Ridge 
(v6.8-rc1)
  388d76175bd9 perf/x86/intel/uncore: Support IIO free-running counters on GNR 
(v6.8-rc1)
  632c4bf6d007 perf/x86/intel/uncore: Support Granite Rapids (v6.8-rc1)
  b560e0cd882b perf/x86/uncore: Use u64 to replace unsigned for the uncore 
offsets array (v6.8-rc1)
  cf35791476fc perf/x86/intel/uncore: Generic uncore_get_uncores and MMIO 
format of SPR (v6.8-rc1)
+ 
+ [Fix]
+ 
+ [Where problems could occur]
+ 
+ [Other Info]

** Description changed:

  [Impact]
  Description:
  Failed to install Ubuntu 24.04 on a DL380a Gen12 with Intel Sierra Forest 2P 
+ NVidia L40 GPU in slot17.
  
  There is a random write to VF BAR0's memory region that causes the
  kernel got MCE error.
  
  Version-Release number :
  Ubuntu 24.04
  
  How reproducible:
  Each time
  
  Steps to reproduce
  - PCI segment, Intel VT-d and SR-IOV , all enabled in the BIOS
  - Run a fresh install on a DL380a server with 2P with GPU (NVidia L40) in 
slot17
  
  Expected results
  No MCE and run installation w/o problem
  
  Actual results
  The kernel got MCE errors.
  
  Additional info:
  
  We have tracked this issue with RHEL9.4, it's caused by the following
  pathes.
  
  cb4a6ccf3583 perf/x86/intel/uncore: Support Sierra Forest an

[Bug 2045233] Re: [SRU][22.04.04]: mpi3mr driver update

2024-09-17 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: Won't Fix => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2045233

Title:
  [SRU][22.04.04]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2045233] Re: [SRU][22.04.04]: mpi3mr driver update

2024-09-17 Thread Michael Reed
Closing this request for noble per Dell's request.

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

** Changed in: linux (Ubuntu Noble)
   Status: Invalid => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2045233

Title:
  [SRU][22.04.04]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2079038] Re: [VROC] [Ub 24.04.0/1] Kernel bug and reboot hang during recovery - missing patch

2024-09-17 Thread Michael Reed
Bun and Kinga,


I need you to identify the exact patches with patch ID's from upstream needed 
from 6.11 to even consider this.  Once I see those and if it doesn't take a 
major effort to backport them to 6.8 then we can consider it.  Otherwise you 
may have to use the hwe kernel when it reaches 6.11.  Lets start with the exact 
patch set in addition the fix you already identified.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2079038

Title:
  [VROC] [Ub 24.04.0/1] Kernel bug and reboot hang during recovery -
  missing patch

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-13 Thread Michael Reed
I have created a test kernel.  Please test and provide feedback

https://people.canonical.com/~mreed/misc/lp_2077140_intel_arrowlake/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-13 Thread Michael Reed
** Summary changed:

- Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 
24.04 server
+ [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 
and 24.04 server

** Description changed:

- According to
- 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=6a9b38cc68a03b948df1f3fcb907c7557cfc315c
- and https://www.phoronix.com/news/Intel-Arrow-Lake-Linux-6.9-Gfx, Intel
- Arrow Lake Graphics feature(Xe driver) is ready for Linux kernel 6.9.
+ [Impact]
+ Add Arrow Lake H support
+ 
+ According to 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=6a9b38cc68a03b948df1f3fcb907c7557cfc315c
 and 
+ https://www.phoronix.com/news/Intel-Arrow-Lake-Linux-6.9-Gfx, Intel Arrow 
Lake Graphics feature(Xe driver) is ready for Linux kernel 6.9.
+ 
+ 
+ [Fix]
  
  "
  commit 6a9b38cc68a03b948df1f3fcb907c7557cfc315c
  Author: Matt Roper 
  Date:   Tue Mar 5 16:40:49 2024 -0800
-  
- drm/xe/arl: Add Arrow Lake H support
-  
- ARL-H uses the same media and display IP as MTL, and a version 12.74
- graphics IP (referred to as Xe_LPG+). From a driver point of view, we
- should be able to just treat the whole platform as MTL and rely on
- GRAPHICS_VERx100 checks to handle any spots where ARL's Xe_LPG+ needs
- different handling from MTL's Xe_LPG (i.e., workarounds).
-  
- v2: Resolve conflict and Reorder PCI ids in sorted order
- v3: Append signed-off-by commiter to this commit
-  
- Bspec: 55420
- Signed-off-by: Matt Roper 
- Signed-off-by: Dnyaneshwar Bhadane 
- Reviewed-by: Matt Atwood 
- Link: 
https://patchwork.freedesktop.org/patch/msgid/20240229070806.3402641-4
+ 
+ drm/xe/arl: Add Arrow Lake H support
+ 
+ ARL-H uses the same media and display IP as MTL, and a version 12.74
+ graphics IP (referred to as Xe_LPG+). From a driver point of view, we
+ should be able to just treat the whole platform as MTL and rely on
+ GRAPHICS_VERx100 checks to handle any spots where ARL's Xe_LPG+ needs
+ different handling from MTL's Xe_LPG (i.e., workarounds).
+ 
+ v2: Resolve conflict and Reorder PCI ids in sorted order
+ v3: Append signed-off-by commiter to this commit
+ 
+ Bspec: 55420
+ Signed-off-by: Matt Roper 
+ Signed-off-by: Dnyaneshwar Bhadane 
+ Reviewed-by: Matt Atwood 
+ Link: 
https://patchwork.freedesktop.org/patch/msgid/20240229070806.3402641-4
  -dnyaneshwar.bhad...@intel.com
-  
+ 
  diff --git a/include/drm/xe_pciids.h b/include/drm/xe_pciids.h
  index de1a344737bc..bc7cbef6e9d8 100644
  --- a/include/drm/xe_pciids.h
  +++ b/include/drm/xe_pciids.h
  @@ -176,10 +176,13 @@
  /* MTL / ARL */
  #define XE_MTL_IDS(MACRO__, ...)   \
- MACRO__(0x7D40, ## __VA_ARGS__),\
+ MACRO__(0x7D40, ## __VA_ARGS__),\
  +   MACRO__(0x7D41, ## __VA_ARGS__),\
- MACRO__(0x7D45, ## __VA_ARGS__),\
+ MACRO__(0x7D45, ## __VA_ARGS__),\
  +   MACRO__(0x7D51, ## __VA_ARGS__),\
- MACRO__(0x7D55, ## __VA_ARGS__),\
- MACRO__(0x7D60, ## __VA_ARGS__),\
- MACRO__(0x7D67, ## __VA_ARGS__),\
+ MACRO__(0x7D55, ## __VA_ARGS__),\
+ MACRO__(0x7D60, ## __VA_ARGS__),\
+ MACRO__(0x7D67, ## __VA_ARGS__),\
  +   MACRO__(0x7DD1, ## __VA_ARGS__),\
- MACRO__(0x7DD5, ## __VA_ARGS__)
-  
+ MACRO__(0x7DD5, ## __VA_ARGS__)
+ 
  #define XE_LNL_IDS(MACRO__, ...) \
  
  "
  
https://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/noble/tree/include/drm/xe_pciids.h
  
- However, the OS scope in LENOVO are ubuntu 22.04 and 24.04 server
- version, which are using Linux kernel 6.8, due to this reason, can this
- feature be backport to these two version, thanks!
+ [Where problems could occur]
+ 
+ [Other Info]
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2077140_intel_arrowlake
+ 
+ 
+ However, the OS scope in LENOVO are ubuntu 22.04 and 24.04 server version, 
which are using Linux kernel 6.8, due to this reason, can this feature be 
backport to these two version, thanks!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  [SRU]Intel Arrow Lake Graphics feature backport request for ubuntu
  22.04.5 and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2077140] Re: Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5 and 24.04 server

2024-09-13 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: New => In Progress

** Changed in: linux (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2077140

Title:
  Intel Arrow Lake Graphics feature backport request for ubuntu 22.04.5
  and 24.04 server

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] Re: [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-09-11 Thread Michael Reed
*** This bug is a duplicate of bug 2073525 ***
https://bugs.launchpad.net/bugs/2073525

** This bug has been marked a duplicate of bug 2073525
   [SRU]QAT: Add 402xx (CPM2.0c) firmware for Sierra forest and Granite rapids

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-09-05 Thread Michael Reed
** Description changed:

  [Impact]
  Description of problem:
  
  Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
  component RPM install. The flash successfully completes on the
  firmware(NVM) and fails on the firmware(ROM). The process takes roughly
  thirty minutes and still fails.
  
  Following this the NIC will not be recognized by the OS or RBSU until
  the next power cycle.
  
  Version-Release number of selected component (if applicable):
  
  Kernel 6.8.0-38-generic
  
  How reproducible:
  
  100% of the time
  
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Actual results:
  
  Upgrade fails and system requires a power cycle to use NIC again.
  
  Expected results:
  
  Upgrade succeeds
  
  [Fix]
  Additional info:
  
  There is an upstream patch from Intel that remediates this issue, where
  the NIC successfully upgrades in a reasonable amount of time.
  
  
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8
  
  I have patched the kernel, 6.8.0-38-generic, with the patch above and
  observed success.
  
  [Test Plan]
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Expected results:
  
  Upgrade succeeds
  
  [Where problems could occur]
  
+ The regression risk is low
+ 
  [Other Info]
  
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2076675_fvl_intel_nic_fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2029905] Re: [SRU][Ubuntu] mpi3mr: Include the latest patchset from upstream into 22.04.4/later LTS

2024-09-03 Thread Michael Reed
A test kernel has been available since Dec. 23.  I am going to close
this for now. If Dell wishes to revisit this in the future I will reopen
it.

** Changed in: linux (Ubuntu Jammy)
   Status: In Progress => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2029905

Title:
  [SRU][Ubuntu] mpi3mr: Include the latest patchset from upstream into
  22.04.4/later LTS

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-28 Thread Michael Reed
Thanks Ian, I will submit this to the kernel team mailing list for
review.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-21 Thread Michael Reed
Hi Ian,

I have the correct test kernel located here

https://people.canonical.com/~mreed/hpe/lp_2076675_intel_fvl_fw_fails/noble/

Please test it and provide feed back.  Also can you provide the
regression risk for this field?

[Where problems could occur]

Low, medium or high risk for regression errors?

Thanks,
Michael

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] Re: [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-08-21 Thread Michael Reed
** Changed in: linux-firmware (Ubuntu Oracular)
   Status: New => Fix Released

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-20 Thread Michael Reed
** Also affects: linux (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Oracular)
   Importance: Medium
 Assignee: Michael Reed (mreed8855)
   Status: In Progress

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

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

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

** Changed in: linux (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

** Description changed:

  [Impact]
  Description of problem:
  
  Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
  component RPM install. The flash successfully completes on the
  firmware(NVM) and fails on the firmware(ROM). The process takes roughly
  thirty minutes and still fails.
  
  Following this the NIC will not be recognized by the OS or RBSU until
  the next power cycle.
  
  Version-Release number of selected component (if applicable):
  
  Kernel 6.8.0-38-generic
  
  How reproducible:
  
  100% of the time
  
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Actual results:
  
  Upgrade fails and system requires a power cycle to use NIC again.
  
  Expected results:
  
  Upgrade succeeds
  
  [Fix]
  Additional info:
  
  There is an upstream patch from Intel that remediates this issue, where
  the NIC successfully upgrades in a reasonable amount of time.
  
  
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8
  
  I have patched the kernel, 6.8.0-38-generic, with the patch above and
  observed success.
  
  [Test Plan]
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Expected results:
  
  Upgrade succeeds
  
  [Where problems could occur]
  
  [Other Info]
+ 
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2076675_fvl_intel_nic_fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] [NEW] [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-12 Thread Michael Reed
Public bug reported:

[Impact]
Description of problem:

Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
component RPM install. The flash successfully completes on the
firmware(NVM) and fails on the firmware(ROM). The process takes roughly
thirty minutes and still fails.

Following this the NIC will not be recognized by the OS or RBSU until
the next power cycle.

Version-Release number of selected component (if applicable):

Kernel 6.8.0-38-generic

How reproducible:

100% of the time

Steps to Reproduce:
1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
2. Wait 30 minutes for upgrade to fail
3. Observe that NIC is no longer recognized
4. AC Power Cycle to bring the NIC back up

Actual results:

Upgrade fails and system requires a power cycle to use NIC again.

Expected results:

Upgrade succeeds

[Fix]
Additional info:

There is an upstream patch from Intel that remediates this issue, where
the NIC successfully upgrades in a reasonable amount of time.

https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8

I have patched the kernel, 6.8.0-38-generic, with the patch above and
observed success.

[Test Plan]
Steps to Reproduce:
1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
2. Wait 30 minutes for upgrade to fail
3. Observe that NIC is no longer recognized
4. AC Power Cycle to bring the NIC back up

Expected results:

Upgrade succeeds

[Where problems could occur]

[Other Info]

** Affects: linux (Ubuntu)
 Importance: Medium
 Assignee: Michael Reed (mreed8855)
 Status: In Progress

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

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Michael Reed (mreed8855)

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2076675] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-12 Thread Michael Reed
Ian

My apologies, I conflated this with another bug and I am sorting this
out now.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2076675

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-12 Thread Michael Reed
** No longer affects: linux-firmware (Ubuntu)

** No longer affects: linux-firmware (Ubuntu Oracular)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-08-08 Thread Michael Reed
Hi Ian,

I have since found out that I need to apply this against linux-firmware.
So ignore those test kernels for now.

** Package changed: linux (Ubuntu Noble) => linux-firmware (Ubuntu
Noble)

** Changed in: linux-firmware (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [SRU][22.04.5]: mpi3mr driver update

2024-08-08 Thread Michael Reed
Hi Ranjan,

What is the regression risk?  Also in your steps for testing, what does
r0 and r1 stand for in this step "ro and r1 creation and deletion"?

** Description changed:

  [Impact]
  This update has been initiated to incorporate the mpi3mr driver from upstream 
into the upcoming Ubuntu releases (Ubuntu 22.04.x point releases).
  
  [Fix]
  - cf82b9e866b6 : mpi3mr: Driver version update
  - 1c342b0548e3 : mpi3mr: Prevent PCI writes from driver during PCI error 
recovery
  - 30bafe1774f0 : mpi3mr: Support PCI Error Recovery callback handlers
  - 78b506984ebe : mpi3mr: Add ioctl support for HDB
  - d8d08d1638ce : mpi3mr: Trigger support
  - fc941140:  mpi3mr: HDB allocation and posting for hardware and firmware 
buffers
  
  [Test Plan]
+ - Driver load/unload
+ - ro and r1 creation and deletion
+ - By using management command tested hdb
+ - Use sg_reset -H
+ - Resetting the controller in a loop.
  
  [Where problems could occur]
- 
  
  [Other Info]
  
  noble
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2073583_mpi3mr_update
  
  oracular
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/oracular/+ref/lp_2073583_mpi3mr_update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [SRU][22.04.5]: mpi3mr driver update

2024-08-08 Thread Michael Reed
This cherry pick will cover noble and oracular.  Backporting this from
6.10 to 5.15 is not feasible for the  Jammy kernel.  Also this will be
in the 6.8 kernel in 22.04.5.

** Changed in: linux (Ubuntu Jammy)
   Status: Incomplete => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2053224] Re: 22.04.x - Request to Add Patches to fix the I/O Lock Up issues on PowerEdge Systems

2024-08-07 Thread Michael Reed
** Changed in: linux (Ubuntu Mantic)
   Status: Incomplete => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2053224

Title:
  22.04.x - Request to Add Patches to fix the I/O Lock Up issues on
  PowerEdge Systems

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2053224] Re: 22.04.x - Request to Add Patches to fix the I/O Lock Up issues on PowerEdge Systems

2024-08-06 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: Fix Committed => Fix Released

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

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

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

** Information type changed from Private to Public

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2053224

Title:
  22.04.x - Request to Add Patches to fix the I/O Lock Up issues on
  PowerEdge Systems

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] Re: [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-07-25 Thread Michael Reed
** No longer affects: linux (Ubuntu)

** No longer affects: linux (Ubuntu Noble)

** No longer affects: linux (Ubuntu Oracular)

** Changed in: linux-firmware (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

** Changed in: linux-firmware (Ubuntu Oracular)
 Assignee: (unassigned) => Michael Reed (mreed8855)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [SRU][22.04.5]: mpi3mr driver update

2024-07-25 Thread Michael Reed
Hi Ranjan,

1: What kernel version you want this to land in. 22.04.5 has two different 
kernel versions.
[Ranjan] : It should be included in both LTS and HWE

Just to clarify, when 22.04.5 is released the kernel version will bump
up to 6.8.  Are you requesting that the 5.15 kernel is patched also?  I
ask this because I did a preliminary cherry-pick of two patches to 5.15
and they did not pick cleanly.

2:  I already patched and built noble and oracular and those test
kernels are ready to be tested.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] Re: [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-07-25 Thread Michael Reed
** Also affects: linux-firmware (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] Re: Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-07-25 Thread Michael Reed
dmesg

** Attachment added: "dmesg-1-qat-firmware_error.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2074118/+attachment/5800366/+files/dmesg-1-qat-firmware_error.txt

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

** Summary changed:

- Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin
+ [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

** Description changed:

+ [Impact]
  Description:
  Intel QAT device cannot work properly since there is no required firmware.
  
  How reproducible:
  Each time
  
  Steps to reproduce:
  - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
  - boot to system and the firmware errors are observed
  
  Expected results:
  No firmware error found.
  
  Actual results:
  The firmware errors are observed
  
  [ 7.448283] 4xxx :01:00.0: enabling device (0140 -> 0142)
  [ 7.456559] 4xxx :01:00.0: Direct firmware load for qat_402xx_mmp.bin 
failed with error -2
  [ 7.456564] 4xxx :01:00.0: Failed to load MMP firmware qat_402xx_mmp.bin
  [ 7.456570] 4xxx :01:00.0: Failed to load acceleration FW
  [ 7.457112] 4xxx :01:00.0: Resetting device qat_dev0
  [ 7.568591] 4xxx: probe of :01:00.0 failed with error -14
  
  Additional info:
  The required firmware qat_402xx_mmp.bin has not yet been released to 
linux-firmware.git.
  
  We hope the firwmare can be included to the OS system once Intel
  releases the FW.
+ 
+ [Fix]
+ 
+ Intel pushed required firmware qat_402xx.* firmware to the upstream
+ linux-firmware git repo.
+ 
+ https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-
+ firmware.git/commit/?id=74e4ad17d748f29d25d0f31e070519375522e6a1
+ 
+ [Test Plan]
+ 
+ Steps to reproduce:
+ - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
+ - boot to system and the firmware errors are observed
+ 
+ Expected results:
+ - No firmware error found.
+ 
+ [Where problems could occur]
+ 
+ [Other Info]

** Description changed:

  [Impact]
  Description:
  Intel QAT device cannot work properly since there is no required firmware.
  
  How reproducible:
  Each time
  
  Steps to reproduce:
  - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
  - boot to system and the firmware errors are observed
  
  Expected results:
  No firmware error found.
  
  Actual results:
  The firmware errors are observed
  
  [ 7.448283] 4xxx :01:00.0: enabling device (0140 -> 0142)
  [ 7.456559] 4xxx :01:00.0: Direct firmware load for qat_402xx_mmp.bin 
failed with error -2
  [ 7.456564] 4xxx :01:00.0: Failed to load MMP firmware qat_402xx_mmp.bin
  [ 7.456570] 4xxx :01:00.0: Failed to load acceleration FW
  [ 7.457112] 4xxx :01:00.0: Resetting device qat_dev0
  [ 7.568591] 4xxx: probe of :01:00.0 failed with error -14
  
- Additional info:
- The required firmware qat_402xx_mmp.bin has not yet been released to 
linux-firmware.git.
- 
- We hope the firwmare can be included to the OS system once Intel
- releases the FW.
- 
  [Fix]
  
  Intel pushed required firmware qat_402xx.* firmware to the upstream
  linux-firmware git repo.
  
  https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-
  firmware.git/commit/?id=74e4ad17d748f29d25d0f31e070519375522e6a1
  
  [Test Plan]
  
  Steps to reproduce:
  - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
  - boot to system and the firmware errors are observed
  
  Expected results:
  - No firmware error found.
  
  [Where problems could occur]
  
  [Other Info]

** Description changed:

  [Impact]
  Description:
  Intel QAT device cannot work properly since there is no required firmware.
  
  How reproducible:
  Each time
  
  Steps to reproduce:
  - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
  - boot to system and the firmware errors are observed
  
  Expected results:
  No firmware error found.
  
  Actual results:
  The firmware errors are observed
  
  [ 7.448283] 4xxx :01:00.0: enabling device (0140 -> 0142)
  [ 7.456559] 4xxx :01:00.0: Direct firmware load for qat_402xx_mmp.bin 
failed with error -2
  [ 7.456564] 4xxx :01:00.0: Failed to load MMP firmware qat_402xx_mmp.bin
  [ 7.456570] 4xxx :01:00.0: Failed to load acceleration FW
  [ 7.457112] 4xxx :01:00.0: Resetting device qat_dev0
  [ 7.568591] 4xxx: probe of :01:00.0 failed with error -14
  
  [Fix]
- 
- Intel pushed required firmware qat_402xx.* firmware to the upstream
- linux-firmware git repo.
+ Intel pushed required firmware qat_402xx.* firmware to the upstream 
linux-firmware git repo.
  
  https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-
  firmware.git/commit/?id=74e4ad17d748f29d25d0f31e070519375522e6a1
  
+ 
  [Test Plan]
- 
  Steps to reproduce:
  - install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
  - boot to system 

[Bug 2074118] Re: Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-07-25 Thread Michael Reed
Intel pushed required firmware qat_402xx.* firmware to the upstream
linux-firmware git repo.

https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-
firmware.git/commit/?id=74e4ad17d748f29d25d0f31e070519375522e6a1

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  [SRU] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2074118] [NEW] Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

2024-07-25 Thread Michael Reed
Public bug reported:

Description:
Intel QAT device cannot work properly since there is no required firmware.

How reproducible:
Each time

Steps to reproduce:
- install Ubuntu 24.04 server on a server with a Intel Sierra Forest SP CPU 
(Gen12)
- boot to system and the firmware errors are observed

Expected results:
No firmware error found.

Actual results:
The firmware errors are observed

[ 7.448283] 4xxx :01:00.0: enabling device (0140 -> 0142)
[ 7.456559] 4xxx :01:00.0: Direct firmware load for qat_402xx_mmp.bin 
failed with error -2
[ 7.456564] 4xxx :01:00.0: Failed to load MMP firmware qat_402xx_mmp.bin
[ 7.456570] 4xxx :01:00.0: Failed to load acceleration FW
[ 7.457112] 4xxx :01:00.0: Resetting device qat_dev0
[ 7.568591] 4xxx: probe of :01:00.0 failed with error -14

Additional info:
The required firmware qat_402xx_mmp.bin has not yet been released to 
linux-firmware.git.

We hope the firwmare can be included to the OS system once Intel
releases the FW.

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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2074118

Title:
  Ubuntu 24.04 Failed to load MMP firmware qat_402xx_mmp.bin

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-07-25 Thread Michael Reed
Hi Ian,

When I refer to regression risk, I am asking what are the chances this
breaks the kernel for any release.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-07-23 Thread Michael Reed
Hi Ian,

Can you test this test kernel?

https://people.canonical.com/~mreed/hpe/lp_2073913_hpe_nic_fw_intel/noble/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-07-23 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Importance: Undecided => Low

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] Re: [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-07-23 Thread Michael Reed
Hi Ian,

Can you provide the regression risk for the [Where problems could occur]
field?

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

** Also affects: linux (Ubuntu Oracular)
   Importance: Low
 Assignee: Michael Reed (mreed8855)
   Status: In Progress

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

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

** Description changed:

  [Impact]
  Description of problem:
  
  Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
  component RPM install. The flash successfully completes on the
  firmware(NVM) and fails on the firmware(ROM). The process takes roughly
  thirty minutes and still fails.
  
  Following this the NIC will not be recognized by the OS or RBSU until
  the next power cycle.
  
  Version-Release number of selected component (if applicable):
  
  Kernel 6.8.0-38-generic
  
  How reproducible:
  
  100% of the time
  
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Actual results:
  
  Upgrade fails and system requires a power cycle to use NIC again.
  
  Expected results:
  
  Upgrade succeeds
  
  [Fix]
  Additional info:
  
  There is an upstream patch from Intel that remediates this issue, where
  the NIC successfully upgrades in a reasonable amount of time.
  
  
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8
  
  I have patched the kernel, 6.8.0-38-generic, with the patch above and
  observed success.
  
+ [Test Plan]
+ Steps to Reproduce:
+ 1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
+ 2. Wait 30 minutes for upgrade to fail
+ 3. Observe that NIC is no longer recognized
+ 4. AC Power Cycle to bring the NIC back up
  
- [Test Plan]
+ 
+ Expected results:
+ 
+ Upgrade succeeds
+ 
  
  [Where problems could occur]
  
  [Other Info]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073924] [NEW] [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver, causing driver not detected

2024-07-23 Thread Michael Reed
Public bug reported:

[Impact]
Description of problem:

Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
component RPM install. The flash successfully completes on the
firmware(NVM) and fails on the firmware(ROM). The process takes roughly
thirty minutes and still fails.

Following this the NIC will not be recognized by the OS or RBSU until
the next power cycle.

Version-Release number of selected component (if applicable):

Kernel 6.8.0-38-generic

How reproducible:

100% of the time

Steps to Reproduce:
1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
2. Wait 30 minutes for upgrade to fail
3. Observe that NIC is no longer recognized
4. AC Power Cycle to bring the NIC back up

Actual results:

Upgrade fails and system requires a power cycle to use NIC again.

Expected results:

Upgrade succeeds

[Fix]
Additional info:

There is an upstream patch from Intel that remediates this issue, where
the NIC successfully upgrades in a reasonable amount of time.

https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8

I have patched the kernel, 6.8.0-38-generic, with the patch above and
observed success.


[Test Plan]

[Where problems could occur]

[Other Info]

** Affects: linux (Ubuntu)
 Importance: Low
 Assignee: Michael Reed (mreed8855)
 Status: In Progress

** Description changed:

+ [Impact]
  Description of problem:
  
  Within 24.04 an intel FVL Idea adapter flash fails through a FW smart
  component RPM install. The flash successfully completes on the
  firmware(NVM) and fails on the firmware(ROM). The process takes roughly
  thirty minutes and still fails.
  
  Following this the NIC will not be recognized by the OS or RBSU until
  the next power cycle.
  
  Version-Release number of selected component (if applicable):
  
  Kernel 6.8.0-38-generic
  
  How reproducible:
  
  100% of the time
  
  Steps to Reproduce:
  1. Attempt to upgrade NIC (Intel Ethernet Converged Network Adapter X710-DA2 
was used in my case) using upgrade located at 
https://support.hpe.com/connect/s/softwaredetails?language=en_US&collectionId=MTX-eeaaff922a754e17
  2. Wait 30 minutes for upgrade to fail
  3. Observe that NIC is no longer recognized
  4. AC Power Cycle to bring the NIC back up
  
  Actual results:
  
  Upgrade fails and system requires a power cycle to use NIC again.
  
  Expected results:
  
  Upgrade succeeds
  
+ [Fix]
  Additional info:
  
  There is an upstream patch from Intel that remediates this issue, where
  the NIC successfully upgrades in a reasonable amount of time.
  
  
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=8b9b59e27aa88ba133fbac85def3f8be67f2d5a8
  
  I have patched the kernel, 6.8.0-38-generic, with the patch above and
  observed success.
+ 
+ 
+ [Test Plan]
+ 
+ [Where problems could occur]
+ 
+ [Other Info]

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Michael Reed (mreed8855)

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073924

Title:
  [SRU][HPE 24.04] Intel FVL NIC FW flash fails with inbox driver,
  causing driver not detected

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [SRU][22.04.5]: mpi3mr driver update

2024-07-23 Thread Michael Reed
Hi Ranjan,

Can you please update the following fields for the SRU request

[Test Plan]

[Where problems could occur]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [SRU][22.04.5]: mpi3mr driver update

2024-07-23 Thread Michael Reed
I have provided a test kernel for the 6.8 kernel in noble

https://people.canonical.com/~mreed/misc/lp_2073583_mpi3mr_update/noble/

** Description changed:

- This update has been initiated to incorporate the mpi3mr driver from
- upstream into the upcoming Ubuntu releases (Ubuntu 22.04.x point
- releases).
+ [Impact]
+ This update has been initiated to incorporate the mpi3mr driver from upstream 
into the upcoming Ubuntu releases (Ubuntu 22.04.x point releases).
  
+ [Fix]
  - cf82b9e866b6 : mpi3mr: Driver version update
  - 1c342b0548e3 : mpi3mr: Prevent PCI writes from driver during PCI error 
recovery
  - 30bafe1774f0 : mpi3mr: Support PCI Error Recovery callback handlers
  - 78b506984ebe : mpi3mr: Add ioctl support for HDB
  - d8d08d1638ce : mpi3mr: Trigger support
  - fc941140:  mpi3mr: HDB allocation and posting for hardware and firmware 
buffers
+ 
+ [Test Plan]
+ 
+ [Where problems could occur]
+ 
+ 
+ [Other Info]
+ 
+ noble
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/noble/+ref/lp_2073583_mpi3mr_update
+ 
+ oracular
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/oracular/+ref/lp_2073583_mpi3mr_update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073583] Re: [22.04.5]: mpi3mr driver update

2024-07-23 Thread Michael Reed
** Also affects: linux (Ubuntu Noble)
   Importance: Undecided
   Status: New

** Also affects: linux (Ubuntu Oracular)
   Importance: Undecided
 Assignee: Jeff Lane  (bladernr)
   Status: Incomplete

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

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

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

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

** Changed in: linux (Ubuntu Noble)
 Assignee: (unassigned) => Michael Reed (mreed8855)

** Changed in: linux (Ubuntu Oracular)
 Assignee: Jeff Lane  (bladernr) => Michael Reed (mreed8855)

** Changed in: linux (Ubuntu Jammy)
 Assignee: (unassigned) => Michael Reed (mreed8855)

** Summary changed:

- [22.04.5]: mpi3mr driver update
+ [SRU][22.04.5]: mpi3mr driver update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073583

Title:
  [SRU][22.04.5]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2073584] Re: [24.04.1]: mpi3mr driver update

2024-07-23 Thread Michael Reed
*** This bug is a duplicate of bug 2073583 ***
https://bugs.launchpad.net/bugs/2073583

This is essentially the same bug.

** This bug has been marked a duplicate of bug 2073583
   [22.04.5]: mpi3mr driver update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2073584

Title:
  [24.04.1]: mpi3mr driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1778717] Re: Ubuntu 18.04 guest hangs during diskio stress

2024-07-17 Thread Michael Reed
This is not currently an issue in 24.04 so I am closing this issue.  If
this issue returns, please reopen the bug.

** Changed in: dellserver
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1778717

Title:
  Ubuntu 18.04 guest hangs during diskio stress

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1777674] Re: Ubuntu 18.04 hangs at "kvm: exiting hardware virtualization" on AMD servers with DVD

2024-07-17 Thread Michael Reed
There was test kernel for this issue that was never tested.  This issue
has not been seen in Jammy nor Nobel to this point so I am going to
close the bug.  If this issue returns, please reopen the bug.

** Changed in: dellserver
   Status: New => Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1777674

Title:
  Ubuntu 18.04 hangs at "kvm: exiting hardware virtualization" on AMD
  servers with DVD

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2069674] Re: Stress Tests failed during Server Certification test

2024-07-17 Thread Michael Reed
Thank you Amy for the stress-ng version information.  One thing we can
try is increasing the swap space to 2X (RAM on the system)   There are
occasions where this may help.  Please run test-stress to run memory and
cpu stres-ng after increasing the swap space.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2069674

Title:
  Stress Tests failed during Server Certification test

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2069674] Re: Stress Tests failed during Server Certification test

2024-07-16 Thread Michael Reed
What version of stress-ng are you running?

Install devscripts
sudo apt install devscripts

Find the version
rmadison stress-ng | grep noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2069674

Title:
  Stress Tests failed during Server Certification test

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2069674] Re: Stress Tests failed during Server Certification test

2024-07-16 Thread Michael Reed
The stress_ng cpu tests appears to have timed out?  Or did you terminate
the test manually?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2069674

Title:
  Stress Tests failed during Server Certification test

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2069674] Re: Stress Tests failed during Server Certification test

2024-07-16 Thread Michael Reed
It appears that disk stress also failed and the system crashed?   This
has been fixed in a later kernel in version 6.8.0-35.35.  The version
that is deployed in these results is 6.8.0-31.31.  The fix is described
in this bug
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/2058557.Once
the kernel is updated run test-storage to see if disk stress-ng passes.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2069674

Title:
  Stress Tests failed during Server Certification test

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

2024-07-09 Thread Michael Reed
** Tags removed: verification-needed-jammy-linux 
verification-needed-mantic-linux
** Tags added: verification-done-jammy-linux verification-done-mantic-linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

2024-06-11 Thread Michael Reed
Hi Chandrakanth,

This is now in proposed, can you please test it ASAP?  Once you verify
it it  add the following tags:

verification-done-mantic-linux
verification-done-jammy-linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2044589] Re: [Ubuntu 24.04 LTS] mpi3mr: Add support for SAS5116 controller and include critical fixes

2024-05-28 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: Fix Committed => Fix Released

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2044589

Title:
  [Ubuntu 24.04 LTS] mpi3mr: Add support for SAS5116 controller and
  include critical  fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2012763] Re: qemu-system-amd64 max cpus is too low for latest processors

2024-05-15 Thread Michael Reed
Hi Simon

My apologies for the alarm, I will have the team that submitted this
issue refresh the snap and re-run the test.

 VERSIONREVISION
lxd 5.0.3-ffb17cf   27037

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2012763

Title:
  qemu-system-amd64 max cpus is too low for latest processors

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2012763] Re: qemu-system-amd64 max cpus is too low for latest processors

2024-05-14 Thread Michael Reed
We have a certification submission on Jammy that still hits this issue.
In this case lxd virtual machines are hitting this bug.

Version
qemu-system-x86 1:6.2+dfsg-2ubuntu6.19

Chip is a dual socket Epyc 9734. 112 cores 224 threads,   448

https://certification.canonical.com/hardware/202403-33531/submission/367206/


ERROR:root:Command lxc start testbed  returned a code of 1
ERROR:root: STDOUT: 
ERROR:root: STDERR: Error: Failed to run: forklimits 
limit=memlock:unlimited:unlimited fd=3 fd=4 -- 
/snap/lxd/27037/bin/qemu-system-x86_64 -S -name testbed -uuid 
b6e33a92-bd24-4217-80a8-f2971626c7b3 -daemonize -cpu host,hv_passthrough 
-nographic -serial chardev:console -nodefaults -no-user-config -sandbox 
on,obsolete=deny,elevateprivileges=allow,spawn=allow,resourcecontrol=deny 
-readconfig /var/snap/lxd/common/lxd/logs/testbed/qemu.conf -spice 
unix=on,disable-ticketing=on,addr=/var/snap/lxd/common/lxd/logs/testbed/qemu.spice
 -pidfile /var/snap/lxd/common/lxd/logs/testbed/qemu.pid -D 
/var/snap/lxd/common/lxd/logs/testbed/qemu.log -smbios 
type=2,manufacturer=Canonical Ltd.,product=LXD -runas lxd: : exit status 1
Try `lxc info --show-log testbed` for more info



** Changed in: qemu (Ubuntu Jammy)
   Status: Fix Released => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2012763

Title:
  qemu-system-amd64 max cpus is too low for latest processors

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046726] Re: [24.04 LTS]: megaraid_sas driver update

2024-05-07 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046726

Title:
  [24.04 LTS]: megaraid_sas driver update

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

2024-05-07 Thread Michael Reed
** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
  upstream into the  22.04.04 point kernel via SRU. Below are the upstream
  commit IDs:
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
  
  The change log for the above commit IDs is small and doesn't require
  rigorous validation. So please include these patches.
  
  [Test Plan]
  
  1. Driver load and unload
  2. Create and delete different virtual drives (R0, R1, R5 etc.,)
  3. create JBOD
  4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
  5. controller reset while running IOs
  
  [ Where problems could occur ]
- It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
+ 
+ It has a critical patch which fixes the issue related to various
+ register reads. So IO runs and various internal commands where problems
+ could occur
+ 
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update
  
  Noble
  These patches are already in released in Noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

2024-05-07 Thread Michael Reed
** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
- upstream into the upcoming 22.04.04 point kernel. Below are the upstream
+ upstream into the  22.04.04 point kernel via SRU. Below are the upstream
  commit IDs:
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
  
- 
- The change log for the above commit IDs is small and doesn't require rigorous 
validation. So please include these patches.
+ The change log for the above commit IDs is small and doesn't require
+ rigorous validation. So please include these patches.
  
  [Test Plan]
  
  1. Driver load and unload
  2. Create and delete different virtual drives (R0, R1, R5 etc.,)
  3. create JBOD
  4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
  5. controller reset while running IOs
  
  [ Where problems could occur ]
  It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update
  
  Noble
  These patches are already in Noble

** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
  upstream into the  22.04.04 point kernel via SRU. Below are the upstream
  commit IDs:
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
  
  The change log for the above commit IDs is small and doesn't require
  rigorous validation. So please include these patches.
  
  [Test Plan]
  
  1. Driver load and unload
  2. Create and delete different virtual drives (R0, R1, R5 etc.,)
  3. create JBOD
  4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
  5. controller reset while running IOs
  
  [ Where problems could occur ]
  It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update
  
  Noble
- These patches are already in Noble
+ These patches are already in released in Noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064354] Re: File manager crashes on run

2024-05-06 Thread Elijah Reed
Fixed by manually installing the package nvidia-driver-550-open

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064354

Title:
  File manager crashes on run

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064354] Re: File manager crashes on run

2024-05-06 Thread Elijah Reed
** Changed in: nvidia-graphics-drivers-535 (Ubuntu)
   Status: New => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064354

Title:
  File manager crashes on run

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

2024-05-02 Thread Michael Reed
These 4 patches are already in Noble, Mantic and Jammy.

8e3ed9e78651 scsi: megaraid_sas: Increase register read retry count from 3 to 
30 for selected registers
0b0747d507bf scsi: megaraid_sas: Fix deadlock on firmware crashdump
2309df27111a scsi: megaraid_sas: Fix crash after a double completion
0808ed6ebbc2 scsi: megaraid_sas: Fix fw_crash_buffer_show()

** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
  upstream into the upcoming 22.04.04 point kernel. Below are the upstream
  commit IDs:
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
- 8e3ed9e78651 scsi: megaraid_sas: Increase register read retry count from 3 to 
30 for selected registers
- 0b0747d507bf scsi: megaraid_sas: Fix deadlock on firmware crashdump
- 2309df27111a scsi: megaraid_sas: Fix crash after a double completion
- 0808ed6ebbc2 scsi: megaraid_sas: Fix fw_crash_buffer_show()
  
- The change log for the above commit IDs is small and doesn't require
- rigorous validation. So please include these patches.
+ 
+ The change log for the above commit IDs is small and doesn't require rigorous 
validation. So please include these patches.
  
  [Test Plan]
  
  1. Driver load and unload
  2. Create and delete different virtual drives (R0, R1, R5 etc.,)
  3. create JBOD
  4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
  5. controller reset while running IOs
  
  [ Where problems could occur ]
  It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update
  
  Noble
  These patches are already in Noble

** Summary changed:

- [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes
+ [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.4]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

2024-05-02 Thread Michael Reed
** Changed in: linux (Ubuntu Noble)
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1967884] Re: several snap-confine denials for capability net_admin and perfmon on 22.04

2024-05-01 Thread Nigel Reed
If this every going to be resolved? I'm tired of seeing these apparmor
DENIED messages in my syslog.


[Wed May  1 10:33:40 2024] audit: type=1400 audit(1714577621.012:30): 
apparmor="DENIED" operation="capable" class="cap" 
profile="/snap/snapd/21465/usr/lib/snapd/snap-confine" pid=6126 
comm="snap-confine" capability=12  capname="net_admin"
[Wed May  1 10:33:40 2024] audit: type=1400 audit(1714577621.012:31): 
apparmor="DENIED" operation="capable" class="cap" 
profile="/snap/snapd/21465/usr/lib/snapd/snap-confine" pid=6126 
comm="snap-confine" capability=38  capname="perfmon"
[Wed May  1 10:52:39 2024] audit: type=1400 audit(1714578760.293:32): 
apparmor="DENIED" operation="capable" class="cap" 
profile="/snap/snapd/21465/usr/lib/snapd/snap-confine" pid=6527 
comm="snap-confine" capability=12  capname="net_admin"
[Wed May  1 10:52:39 2024] audit: type=1400 audit(1714578760.293:33): 
apparmor="DENIED" operation="capable" class="cap" 
profile="/snap/snapd/21465/usr/lib/snapd/snap-confine" pid=6527 
comm="snap-confine" capability=38  capname="perfmon"

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1967884

Title:
  several snap-confine denials for capability net_admin and perfmon on
  22.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2064354] Re: File manager crashes on run

2024-05-01 Thread Elijah Reed
I couldn't upload the file either so here is the gdb log:
GNU gdb (Ubuntu 15.0.50.20240403-0ubuntu1) 15.0.50.20240403-git
Copyright (C) 2024 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from nautilus...

This GDB supports auto-downloading debuginfo from the following URLs:
  
Enable debuginfod for this session? (y or [n]) y
Debuginfod has been enabled.
To make this setting permanent, add 'set debuginfod enabled on' to .gdbinit.
Downloading separate debug info for /usr/bin/nautilus...
Reading symbols from 
/home/techlover112/.cache/debuginfod_client/b8e657e15ab34018861f9fe42870ca0bf01d9449/debuginfo...
(gdb) handle SIG33 pass nostop noprint
SignalStop  Print   Pass to program Description
SIG33 NoNo  Yes Real-time event 33
(gdb) set pagination 0
(gdb) run
Starting program: /usr/bin/nautilus 
Downloading separate debug info for system-supplied DSO at 0x7ffd675ea000...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libnautilus-extension.so.4...
Downloading separate debug info for /lib/x86_64-linux-gnu/libglib-2.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libglib-2.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libgtk-4.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libpango-1.0.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libcairo.so.2...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libgraphene-1.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libgio-2.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libgobject-2.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libadwaita-1.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libgmodule-2.0.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libgnome-desktop-4.so.2...
Downloading separate debug info for /lib/x86_64-linux-gnu/libportal.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libportal-gtk4.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libselinux.so.1...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libtracker-sparql-3.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libunity.so.9...
Downloading separate debug info for /lib/x86_64-linux-gnu/libunity.so.9...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libdbusmenu-glib.so.4...
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Downloading separate debug info for /lib/x86_64-linux-gnu/libpcre2-8.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libharfbuzz.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libfribidi.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libcairo-gobject.so.2...
Downloading separate debug info for /lib/x86_64-linux-gnu/libfontconfig.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libepoxy.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libXi.so.6...
Downloading separate debug info for /lib/x86_64-linux-gnu/libX11.so.6...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libvulkan.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libpng16.so.16...
Downloading separate debug info for /lib/x86_64-linux-gnu/libtiff.so.6...
Downloading separate debug info for /lib/x86_64-linux-gnu/libjpeg.so.8...
Downloading separate debug info for /lib/x86_64-linux-gnu/libxkbcommon.so.0...
Downloading separate debug info for 
/lib/x86_64-linux-gnu/libwayland-client.so.0...
Downloading separate debug info for /lib/x86_64-linux-gnu/libwayland-egl.so.1...
Downloading separate debug info for /lib/x86_64-linux-gnu/libXext.so.6...
Downloading separate debug info for /lib/x86_64-linux-gnu/libXcursor.so.1...
Downloading separate debu

[Bug 2064354] [NEW] File manager crashes on run

2024-04-30 Thread Elijah Reed
Public bug reported:

Nautilus would not open a GUI window after a fresh Ubuntu 24.04 install. I 
obtained the following from the command prompt: 
$ nautilus
** Message: 16:12:45.453: Connecting to org.freedesktop.Tracker3.Miner.Files
libEGL warning: egl: failed to create dri2 screen
Segmentation fault (core dumped)

ProblemType: Bug
DistroRelease: Ubuntu 24.04
Package: nautilus 1:46.0-0ubuntu2
ProcVersionSignature: Ubuntu 6.8.0-31.31-generic 6.8.1
Uname: Linux 6.8.0-31-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia zfs
ApportVersion: 2.28.1-0ubuntu2
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Tue Apr 30 16:15:29 2024
GsettingsChanges: b'org.gnome.nautilus.preferences' b'migrated-gtk-settings' 
b'true'
InstallationDate: Installed on 2024-04-24 (6 days ago)
InstallationMedia: Ubuntu 24.04 LTS "Noble Numbat" - Beta amd64 (20240410.2)
ProcEnviron:
 LANG=en_US.UTF-8
 PATH=(custom, no user)
 SHELL=/bin/bash
 TERM=xterm-256color
 XDG_RUNTIME_DIR=
SourcePackage: nautilus
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_nautilus:
 file-roller   44.1-1
 nautilus-extension-gnome-terminal 3.52.0-1ubuntu2

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


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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2064354

Title:
  File manager crashes on run

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-23 Thread Michael Reed
Hi Ganesh,

Try this combination of firmware:

System ROM-   R11 v1.60 (03/07/2024)
iLO Firmware Version  -   1.55 Dec 14 2023

I am still able to install without any issues.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-22 Thread Michael Reed
Hi Ganesh,

I am using ILO 6 and it appears that you are using ILO 5, is it possible
to upgrade to ILO 6?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057454] Re: [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to VirtualMedia of OSM.

2024-04-19 Thread Michael Reed
This appears to be resolved with the latest daily build (Beta) for
noble.  I am going to close this.  If the problem returns we can reopen
it.

** Changed in: subiquity (Ubuntu Noble)
   Status: Incomplete => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057454

Title:
  [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to
  VirtualMedia of OSM.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2028158] Re: [SRU] Duplicate Device_dax ids Created and hence Probing is Failing.

2024-04-16 Thread Michael Reed
Source:  https://www.kernel.org/doc/Documentation/memory-hotplug.txt

How to online memory


When the memory is hot-added, the kernel decides whether or not to "online"
it according to the policy which can be read from "auto_online_blocks" file::

% cat /sys/devices/system/memory/auto_online_blocks

The default depends on the CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE kernel config
option. If it is disabled the default is "offline" which means the newly added
memory is not in a ready-to-use state and you have to "online" the newly added
memory blocks manually. Automatic onlining can be requested by writing "online"
to "auto_online_blocks" file::

% echo online > /sys/devices/system/memory/auto_online_blocks

This sets a global policy and impacts all memory blocks that will subsequently
be hotplugged.

If this is enabled by default then the following should achieve the same
goal as disabling the config option:

echo offline  > /sys/devices/system/memory/auto_online_blocks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2028158

Title:
  [SRU] Duplicate Device_dax ids Created and hence Probing is Failing.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
** Attachment added: "1712673852.978878975.install_fail.txt"
   
https://bugs.launchpad.net/ubuntu/+source/subiquity/+bug/2060878/+attachment/5763532/+files/1712673852.978878975.install_fail.txt

** Changed in: subiquity (Ubuntu Noble)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
** Attachment added: "Firmware Levels"
   
https://bugs.launchpad.net/ubuntu/+source/subiquity/+bug/2060878/+attachment/5763531/+files/RL_Firmware.jpeg

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
** Attachment added: "Crash log"
   
https://bugs.launchpad.net/ubuntu/+source/subiquity/+bug/2060878/+attachment/5763530/+files/install_fail.crash.tgz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
HPE is getting stuck at this stage before the install fails.
"Installing grub to target devices"

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
Hi Ganesh,

I was able to use the latest iso from the daily builds to install on an
RL 300 Gen 11 with and without network connections. One hitch is that
instead of just un-mounting the virtual media drive and rebooting, I had
to power off and on to boot the system. On your attempt to install the
RL300 Gen 11, where are you getting stuck?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] Re: Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
Currently its working as expected on x86_64 (amd64) platforms. However
issue is seen on RL300 Gen11 server (arm64 based architecture)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2060878] [NEW] Unable to complete Ubuntu24.04 installation through iLO virtual media

2024-04-10 Thread Michael Reed
Public bug reported:

Tried to installed Ubuntu 24.04 through iLO virtual media. Please find
the summary below:

Provided Proxy and Server has access to internet. Deployment successfully done.
Without proxy, deployment fails at the final stage.
Tried removing all NIC and deployment fails.
Tried passing the Kernel Parameter self-update=0. But installation fails.

Most of our servers are in private network without access to internet.
Please let us know, how to proceed.

This currently only happening with the RL 300 Gen 11 (ARM64) system.

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

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

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2060878

Title:
  Unable to complete Ubuntu24.04 installation through iLO virtual media

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057454] Re: [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to VirtualMedia of OSM.

2024-04-06 Thread Michael Reed
** Package changed: linux (Ubuntu Noble) => subiquity (Ubuntu Noble)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057454

Title:
  [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to
  VirtualMedia of OSM.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057454] Re: [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to VirtualMedia of OSM.

2024-03-20 Thread Michael Reed
I have not been able to recreate this issue. I was able to install an
R760 with 24.04 with and without enabling openssh during an install
using the Virtual Media.  Can you try the latest daily build image that
was released today?

https://cdimage.ubuntu.com/ubuntu-server/daily-live/pending/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057454

Title:
  [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to
  VirtualMedia of OSM.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057454] Re: [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to VirtualMedia of OSM.

2024-03-20 Thread Michael Reed
This issue can be reproducible on 16G Platform also and below are the
possible workarounds found during the experiments on 16G Platform.

1. During Installation of Ubuntu 24.04 when we disable/exclude []
Openssh server package issue won't be reproduced. After reboot and
installing openssh server using 'apt-get install openssh-server' system
is working as expected.

2. During Installation of Ubuntu 24.04 when we enable/include [x]Openssh
server package. we are able to repro the issue.

Thanks,
Shubhakara P S

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057454

Title:
  [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to
  VirtualMedia of OSM.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2057454] Re: [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to VirtualMedia of OSM.

2024-03-20 Thread Michael Reed
** Changed in: linux (Ubuntu)
   Importance: Undecided => Critical

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2057454

Title:
  [Ubuntu 24.04] Failed to Install Ubuntu 24.04 with ISO attached to
  VirtualMedia of OSM.

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

2024-03-07 Thread Michael Reed
** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
  upstream into the upcoming 22.04.04 point kernel. Below are the upstream
  commit IDs:
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
  8e3ed9e78651 scsi: megaraid_sas: Increase register read retry count from 3 to 
30 for selected registers
  0b0747d507bf scsi: megaraid_sas: Fix deadlock on firmware crashdump
  2309df27111a scsi: megaraid_sas: Fix crash after a double completion
  0808ed6ebbc2 scsi: megaraid_sas: Fix fw_crash_buffer_show()
  
  The change log for the above commit IDs is small and doesn't require
  rigorous validation. So please include these patches.
  
  [Test Plan]
  
  1. Driver load and unload
  2. Create and delete different virtual drives (R0, R1, R5 etc.,)
  3. create JBOD
  4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
  5. controller reset while running IOs
  
- 
  [ Where problems could occur ]
  It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update
+ 
+ Noble
+ These patches are already in Noble

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

2024-03-07 Thread Michael Reed
Hi Chandrakanth,

Thank you for filing is the requested fields.  I have one more request,
can you also add what the regression risk will be?  This will be
included under [ Where problems could occur ].

Thanks,
Michael

** Description changed:

  [Impact]
  
  This update has been initiated to include a few critical bug fixes from
  upstream into the upcoming 22.04.04 point kernel. Below are the upstream
  commit IDs:
- 
  
  [Fix]
  0938f9fa4208 scsi: megaraid_sas: Driver version update to 07.727.03.00-rc1
  2d83fb023c90 scsi: megaraid_sas: Log message when controller reset is 
requested but not issued
  8e3ed9e78651 scsi: megaraid_sas: Increase register read retry count from 3 to 
30 for selected registers
  0b0747d507bf scsi: megaraid_sas: Fix deadlock on firmware crashdump
  2309df27111a scsi: megaraid_sas: Fix crash after a double completion
  0808ed6ebbc2 scsi: megaraid_sas: Fix fw_crash_buffer_show()
  
  The change log for the above commit IDs is small and doesn't require
  rigorous validation. So please include these patches.
  
  [Test Plan]
  
+ 1. Driver load and unload
+ 2. Create and delete different virtual drives (R0, R1, R5 etc.,)
+ 3. create JBOD
+ 4. Run IOs with different profiles (io_depth, io_size etc.,) on VD and JBOD
+ 5. controller reset while running IOs
+ 
+ 
  [ Where problems could occur ]
- 
+ It has a critical patch which fixes the issue related to various register 
reads. So IO runs and various internal commands where problems could occur
  [ Other Info ]
  
  Jammy
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/lp_2046722_megaraid_sas_update
  
- 
  Mantic
  
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/mantic/+ref/lp_2046722_megaraid_sas_update

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2046722] Re: [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

2024-03-05 Thread Michael Reed
Hi Chandrakanth,

Thank you for testing the test kernels.  Can you also fill in these
fields for the SRU process?  I need that information when submitting
these to the mailing list.

[Test Plan]

[ Where problems could occur ]

[ Other Info ]

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2046722

Title:
  [SRU][22.04.04]: megaraid_sas: Critical Bug Fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965241] Re: Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment events

2022-05-13 Thread Michael Reed
** Summary changed:

- Include DPC Fixes in Ubuntu 22.04 and 20.04
+ Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment 
events

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965241

Title:
  Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort
  Containment events

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965241] Re: Include DPC Fixes in Ubuntu 22.04 and 20.04

2022-05-13 Thread Michael Reed
** Description changed:

  SRU Justification:
  
  [Impact]
  Recovery from DownPort Containment events fail and the NVMe endpoint is not 
accessible in some scenarios.
  
  [Fix]
  
  These are some of the DPC fixes which help in handling some of the
  failure cases of DownPort Containment events.
  
  Upstream kernel patches to be included into Ubuntu 22.04 and into Ubuntu
  20.04.5:
  
  Already in Jammy as of Ubuntu-5.15.0-1.1
  PCI/portdrv: Enable Bandwidth Notification only if port supports it
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=00823dcbdd415c868390feaca16f0265101efab4
  
  PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=ea401499e943c307e6d44af6c2b4e068643e7884
  
  3134689f98   PCI/portdrv: Rename pm_iter() to pcie_port_device_iter()
  
  [Test Case]
  
  1. Disable the memory space of NVMe end point device
  2. Issue IO to the device
  3. Observe dmesg. dmesg shows that EDR event is generated, link is contained 
and NVMe device is recovered.
  
  2. Observe the dmesg
  
  [Other Info]
- https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1965241
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/test_dpc_1965241

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965241

Title:
  Include DPC Fixes in Ubuntu 22.04 and 20.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965241] Re: Include DPC Fixes in Ubuntu 22.04 and 20.04

2022-05-13 Thread Michael Reed
** Description changed:

  SRU Justification:
  
  [Impact]
  Recovery from DownPort Containment events fail and the NVMe endpoint is not 
accessible in some scenarios.
  
  [Fix]
  
  These are some of the DPC fixes which help in handling some of the
  failure cases of DownPort Containment events.
  
  Upstream kernel patches to be included into Ubuntu 22.04 and into Ubuntu
  20.04.5:
  
  Already in Jammy as of Ubuntu-5.15.0-1.1
  PCI/portdrv: Enable Bandwidth Notification only if port supports it
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=00823dcbdd415c868390feaca16f0265101efab4
  
- 
  PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=ea401499e943c307e6d44af6c2b4e068643e7884
  
  3134689f98   PCI/portdrv: Rename pm_iter() to pcie_port_device_iter()
  
  [Test Case]
  
  1. Disable the memory space of NVMe end point device
  2. Issue IO to the device
  3. Observe dmesg. dmesg shows that EDR event is generated, link is contained 
and NVMe device is recovered.
  
  2. Observe the dmesg
+ 
  [Other Info]
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1965241

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965241

Title:
  Include DPC Fixes in Ubuntu 22.04 and 20.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1967116] Re: [Ubuntu 22.04] mpi3mr: Request to include latest bug fixes

2022-05-11 Thread Michael Reed
Hi Sumit,

This bug is still in the  verification-needed-jammy stage.  Can you test
it and then change the state of the bug to verification-done-jammy?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1967116

Title:
  [Ubuntu 22.04] mpi3mr: Request to include latest bug fixes

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1971151] Re: [Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG) support

2022-05-05 Thread Michael Reed
** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Michael Reed (mreed8855)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1971151

Title:
  [Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG)
  support

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1971151] Re: [Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG) support

2022-05-05 Thread Michael Reed
Hi Sumit,

All of the patches in comment #2 cherry-pick cleanly.  I noticed that
the following patch is in the description but missing from comment #2:

ed567615f7ec scsi: mpi3mr: Fix build errors in uapi header
scsi_bsg_mpi3mr.h

Is this patch still needed?  I see that it has been applied to  
5.19/scsi-staging 
(https://www.spinics.net/lists/linux-scsi/msg172765.html).  I am having trouble 
locating it when I try to cherry-pick it.  Has anything changed about this 
patch? commit ID, etc?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1971151

Title:
  [Ubuntu 22.04.1] mpi3mr: Add management application interface(BSG)
  support

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965241] Re: Include DPC Fixes in Ubuntu 22.04 and 20.04

2022-05-03 Thread Michael Reed
** Description changed:

  SRU Justification:
  
  [Impact]
  Recovery from DownPort Containment events fail and the NVMe endpoint is not 
accessible in some scenarios.
  
  [Fix]
  
  These are some of the DPC fixes which help in handling some of the
  failure cases of DownPort Containment events.
  
  Upstream kernel patches to be included into Ubuntu 22.04 and into Ubuntu
  20.04.5:
  
  Already in Jammy as of Ubuntu-5.15.0-1.1
  PCI/portdrv: Enable Bandwidth Notification only if port supports it
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=00823dcbdd415c868390feaca16f0265101efab4
  
- Not yet pulled
+ 
  PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=ea401499e943c307e6d44af6c2b4e068643e7884
+ 
+ 3134689f98   PCI/portdrv: Rename pm_iter() to pcie_port_device_iter()
  
  [Test Case]
  
  1. Disable the memory space of NVMe end point device
  2. Issue IO to the device
  3. Observe dmesg. dmesg shows that EDR event is generated, link is contained 
and NVMe device is recovered.
  
  2. Observe the dmesg
  [Other Info]
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1965241

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965241

Title:
  Include DPC Fixes in Ubuntu 22.04 and 20.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1965241] Re: Include DPC Fixes in Ubuntu 22.04 and 20.04

2022-04-27 Thread Michael Reed
** Description changed:

  SRU Justification:
  
  [Impact]
  Recovery from DownPort Containment events fail and the NVMe endpoint is not 
accessible in some scenarios.
  
  [Fix]
  
  These are some of the DPC fixes which help in handling some of the
  failure cases of DownPort Containment events.
  
  Upstream kernel patches to be included into Ubuntu 22.04 and into Ubuntu
  20.04.5:
  
  Already in Jammy as of Ubuntu-5.15.0-1.1
  PCI/portdrv: Enable Bandwidth Notification only if port supports it
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=00823dcbdd415c868390feaca16f0265101efab4
  
  Not yet pulled
  PCI: pciehp: Ignore Link Down/Up caused by error-induced Hot Reset
  
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?h=v5.17-rc6&id=ea401499e943c307e6d44af6c2b4e068643e7884
  
  [Test Case]
  
+ 1. Disable the memory space of NVMe end point device
+ 2. Issue IO to the device
+ 3. Observe dmesg. dmesg shows that EDR event is generated, link is contained 
and NVMe device is recovered.
+ 
+ 2. Observe the dmesg
  [Other Info]
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1965241

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1965241

Title:
  Include DPC Fixes in Ubuntu 22.04 and 20.04

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1948626] Re: [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC Client - TP 8010

2022-04-22 Thread Michael Reed
** Description changed:

  [Impact]
  NVMe-oF suffers from a well-known discovery problem that fundamentally limits 
the size of realistic deployments. To address this discovery problem, the FMDS 
working group (within nvme.org) is working on two proposals that will allow 
NVMe-oF to be managed via a “network centric” provisioning process instead of 
an “end-node centric” one.
  TP-8009 (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1948625): will 
enable the Automated Discovery of NVMe-oF Discovery Controllers in an IP 
Network and will prevent an end-user from needing to manually configure the IP 
Address of Discovery Controllers.
  TP-8010 (this launchpad): will define the concept of a Centralized Discovery 
Controller (CDC) and will allow end-users to manage connectivity from a single 
point of management on an IP Fabric by IP Fabric basis.
  
  Here is code that implements TP8009 and TP8010:
  https://github.com/martin-belanger/nvme-stas/ which now got pulled into 
upstream - https://github.com/linux-nvme/nvme-stas
  
  [Fix]
  1. Update kernel with TP8010 kernel patches:
  
  a.
  
https://git.infradead.org/git/nvme.git/commit/647b2e01fb2d3394090ed11d1b5238157c52f907
  
  b.
  
https://git.infradead.org/git/nvme.git/commit/de87c02ea9b4d93d1114b912b621ead81f6738e0
  
  c.
-  nvme: add CNTRLTYPE definitions for 'identify controller
+  nvme: add CNTRLTYPE definitions for 'identify controller
  https://lore.kernel.org/all/66fc4f03-ed5c-4727-ba94-c23daf7d6...@oracle.com/
  [Test Case]
  
  [Other Info]
- 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/nvme_tcp_patches
+ 
https://code.launchpad.net/~mreed8855/ubuntu/+source/linux/+git/jammy/+ref/nvme_tcp_patches_2

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1948626

Title:
  [SRU] Ubuntu 22.04 Feature Request-Add support for a NVMe-oF-TCP CDC
  Client  - TP 8010

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

  1   2   3   4   5   6   7   8   >