<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12]]></title><description><![CDATA[<h1>XCP-ng 8.3: Broadcom BCM57414 <code>bnxt_en</code> Driver Fails to Probe on HPE DL380a Gen12</h1>
<h2>Summary</h2>
<p dir="auto">We have been unable to install XCP-ng 8.3 (<code>xcp-ng-8.3.0-20250606.2.iso</code>) on an <strong>HPE ProLiant DL380a Gen12</strong> equipped with a <strong>Broadcom BCM57414</strong> dual-port 25GbE NIC. The <code>bnxt_en</code> driver fails to probe the NIC during boot, and as a result the installer finds no network interfaces and does not allow us to proceed.</p>
<p dir="auto">This appears to be the same class of issue reported in <a href="https://xcp-ng.org/forum/topic/11366/xcp-ng-8.3-and-dell-r660-crash-during-boot-halts-remainder-of-installer-process-bnxt_en/6">XCP-ng forum topic #11366</a> for Dell R660 systems with a Broadcom BCM57504. In that case the workaround was to disable the NIC in BIOS, install via another NIC, <code>yum update</code> to get the newer driver, then re-enable the NIC. We attempted a similar approach by using an answerfile to bypass the installer's network interface check (equivalent to what disabling the NIC achieves during install). However, even with 8.3 fully installed, the <code>bnxt_en</code> driver still fails to probe the NIC on boot and the NIC never comes up, so the problem appears to go beyond the installer.</p>
<p dir="auto">XCP-ng <strong>8.2.1 installs without any issues</strong> on this same hardware using <code>broadcom-bnxt-en-1.10.0_216.0.119.1-3</code>.</p>
<h2>Hardware</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Component</th>
<th>Detail</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Server</strong></td>
<td>HPE ProLiant DL380a Gen12</td>
</tr>
<tr>
<td><strong>Boot mode</strong></td>
<td>UEFI only (HPE DL380a Gen12 has dropped legacy BIOS support)</td>
</tr>
<tr>
<td><strong>NIC</strong></td>
<td>Broadcom BCM57414 Dual-Port 25GbE (PCI <code>0001:86:00.0</code> / <code>0001:86:00.1</code>), firmware confirmed at latest version via HPE iLO firmware updater</td>
</tr>
<tr>
<td><strong>OS disk</strong></td>
<td><code>/dev/nvme0n1</code></td>
</tr>
</tbody>
</table>
<h2>Symptom</h2>
<p dir="auto">During boot on XCP-ng 8.3, the <code>bnxt_en</code> driver attempts to probe the two BCM57414 ports and fails. Both ports fail to initialize, so no network interfaces are available. In the interactive installer, this means the NIC selection screen has no interfaces to choose from and does not allow the user to proceed. After a full install (via answerfile, see below), the same probe failure occurs on every boot, leaving the system with no network.</p>
<p dir="auto">The specific error messages vary by driver version (see test details below), but a representative example from a post-install boot with the stock v232 driver:</p>
<pre><code>[root@localhost ~]# dmesg | grep -i bnxt
[   63.591964] Broadcom NetXtreme-C/E/S driver bnxt_en v1.10.3-232.0.155.5+
[   67.525804] bnxt_en 0001:86:00.0 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
[   67.547729] bnxt_en: probe of 0001:86:00.0 failed with error -16
[   71.408224] bnxt_en 0001:86:00.1 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
[   71.439436] bnxt_en: probe of 0001:86:00.1 failed with error -16
[root@localhost ~]#
</code></pre>
<hr />
<h2>Variations Tested</h2>
<p dir="auto">We tested five different driver/kernel combinations, none of which resolved the issue.</p>
<hr />
<h3>Test 1: Stock XCP-ng 8.3 ISO</h3>
<p dir="auto"><strong>ISO:</strong> <code>xcp-ng-8.3.0-20250606.2.iso</code> (unmodified)<br />
<strong>Driver:</strong> <code>broadcom-bnxt-en-1.10.3_232.0.155.5-1</code> (ships with the ISO)<br />
<strong>Kernel:</strong> <code>4.19.0+1</code> (default)<br />
<strong>Result:</strong> FAIL — installer stops at NIC detection</p>
<p dir="auto">With the stock ISO and the interactive installer, the <code>bnxt_en</code> driver fails to probe the NIC during boot. The installer then finds no network interfaces and does not allow us to continue.</p>
<p dir="auto">Boot dmesg output:</p>
<pre><code>[   15.179392] bnxt_en 0001:86:00.0 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
[   18.020473] bnxt_en 0001:86:00.1 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
</code></pre>
<hr />
<h3>Answerfile approach used for Tests 2–5</h3>
<p dir="auto">Since the interactive installer requires at least one working network interface to proceed, we could not test different driver or kernel combinations through the normal install flow. To work around this, we built custom ISOs with an upgrade answerfile baked into <code>install.img</code> and referenced from the boot entries. The answerfile uses <code>mode="upgrade"</code> with <code>source type="local"</code>, which skips the NIC selection screen entirely because it reads packages from the ISO media rather than over the network.</p>
<pre><code class="language-xml">&lt;?xml version="1.0"?&gt;
&lt;installation mode="upgrade" repo-gpgcheck="false"&gt;
  &lt;existing-installation&gt;/dev/nvme0n1&lt;/existing-installation&gt;
  &lt;source type="local"/&gt;
  &lt;ui-confirmation-prompt&gt;true&lt;/ui-confirmation-prompt&gt;
&lt;/installation&gt;
</code></pre>
<p dir="auto">We first installed XCP-ng 8.2.1 (which works on this hardware), then used each custom 8.3 ISO to perform an answerfile-based upgrade. This allowed the installation to complete in all cases, but after rebooting into 8.3 the <code>bnxt_en</code> driver still failed to probe the NIC, leaving the system with no network connectivity.</p>
<p dir="auto">The custom ISOs were built by extracting <code>install.img</code>, replacing the <code>bnxt_en.ko</code> driver module, repacking, and updating the on-media <code>Packages/</code> repository.</p>
<hr />
<h3>Test 2: Latest driver (v237) on default kernel</h3>
<p dir="auto"><strong>Driver:</strong> <code>broadcom-bnxt-en-1.10.3_237.1.20.0-8.1.xcpng8.3.x86_64.rpm</code><br />
<strong>Kernel:</strong> <code>4.19.0+1</code> (default)<br />
<strong>Result:</strong> FAIL — same firmware timeout error as stock ISO</p>
<p dir="auto">Driver version confirmed loaded:</p>
<pre><code>11:00 localhost /# modinfo bnxt_en | grep version
version:        1.10.3-237.1.20.0
srcversion:     533BB7E5866E52F63B9ACCB
vermagic:       4.19.0+1 SMP mod_unload modversions
</code></pre>
<p dir="auto">Boot dmesg output:</p>
<pre><code>[   14.868610] bnxt_en 0001:86:00.0 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
[   18.397942] bnxt_en 0001:86:00.1 (unnamed net_device) (uninitialized): Firmware not responding, rc: -16 status: 0x8000
</code></pre>
<hr />
<h3>Test 3: 8.2 driver (v216) on default kernel</h3>
<p dir="auto"><strong>Driver:</strong> <code>broadcom-bnxt-en-1.10.0_216.0.119.1-3.xcpng8.3.x86_64.rpm</code> (same driver that works on 8.2.1)<br />
<strong>Kernel:</strong> <code>4.19.0+1</code> (default)<br />
<strong>Result:</strong> FAIL — different error message but still no NIC enumeration</p>
<p dir="auto">This is the same driver version that works on XCP-ng 8.2.1 on this hardware (with the same kernel <code>4.19.0+1</code>). On 8.3 it produces a different error than the v232/v237 drivers: <code>Error (timeout: 500015)</code> instead of <code>Firmware not responding</code>.</p>
<p dir="auto">Boot dmesg output:</p>
<pre><code>[   13.252206] bnxt_en 0001:86:00.0 (unnamed net_device) (uninitialized): Error (timeout: 500015) msg (0x0 0x0) len:0
[   15.051022] bnxt_en 0001:86:00.1 (unnamed net_device) (uninitialized): Error (timeout: 500015) msg (0x0 0x0) len:0
</code></pre>
<p dir="auto">Post-boot driver version and kernel confirmed:</p>
<pre><code>11:53 REDACTED /# modinfo bnxt_en | grep version
version:        1.10.0-216.0.119.1
srcversion:     533BB7E5866E52F63B9ACCB
vermagic:       4.19.0+1 SMP mod_unload modversions
11:54 REDACTED /# uname -a
Linux REDACTED.internal.root.lan 4.19.0+1 #1 SMP Tue May 6 15:24:43 CEST 2025 x86_64 x86_64 x86_64 GNU/Linux
</code></pre>
<hr />
<h3>Test 4: Alternate kernel with bundled driver (v1.9.2)</h3>
<p dir="auto"><strong>Driver:</strong> <code>bnxt_en</code> v1.9.2 (bundled with the alternate kernel)<br />
<strong>Kernel:</strong> <code>4.19.322+1</code> (alternate)<br />
<strong>Result:</strong> FAIL — no error message, but NIC still not enumerated</p>
<p dir="auto">The alternate kernel does not produce the <code>bnxt_en</code> error messages visible with the default kernel, which initially looked promising. However, the NIC still does not appear in <code>ip link show</code>. No <code>bnxt_en</code> messages appear at all — the driver seems to load silently without bringing up any interfaces.</p>
<p dir="auto">Post-boot driver version:</p>
<pre><code>12:32 REDACTED /# uname -a
Linux REDACTED 4.19.322+1 #1 SMP Fri Oct 11 14:37:51 CEST 2024 x86_64 x86_64 x86_64 GNU/Linux
12:32 REDACTED /# modinfo bnxt_en | grep version
version:        1.9.2
srcversion:     E9EB303EF3601778A241B46
vermagic:       4.19.322+1 SMP mod_unload modversions
</code></pre>
<hr />
<h3>Test 5: Alternate kernel with latest driver (v237)</h3>
<p dir="auto"><strong>Driver:</strong> <code>broadcom-bnxt-en-1.10.3_237.1.20.0-8.1.xcpng8.3.x86_64.rpm</code><br />
<strong>Kernel:</strong> <code>4.19.322+1</code> (alternate)<br />
<strong>Result:</strong> FAIL — NIC still not functional</p>
<p dir="auto">We also tried combining the alternate kernel with the latest v237 driver. This also did not resolve the issue.</p>
<hr />
<h2>Summary Table</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>#</th>
<th>Variation</th>
<th>Driver Version</th>
<th>Kernel</th>
<th>Error</th>
<th>Result</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Stock 8.3 ISO (interactive)</td>
<td>1.10.3-232.0.155.5</td>
<td>4.19.0+1</td>
<td><code>Firmware not responding, rc: -16 status: 0x8000</code></td>
<td>FAIL</td>
</tr>
<tr>
<td>2</td>
<td>Latest driver (v237)</td>
<td>1.10.3-237.1.20.0</td>
<td>4.19.0+1</td>
<td><code>Firmware not responding, rc: -16 status: 0x8000</code></td>
<td>FAIL</td>
</tr>
<tr>
<td>3</td>
<td>8.2 driver (v216)</td>
<td>1.10.0-216.0.119.1</td>
<td>4.19.0+1</td>
<td><code>Error (timeout: 500015) msg (0x0 0x0) len:0</code></td>
<td>FAIL</td>
</tr>
<tr>
<td>4</td>
<td>Alternate kernel, bundled driver</td>
<td>1.9.2</td>
<td>4.19.322+1</td>
<td>No error output, NIC silently not enumerated</td>
<td>FAIL</td>
</tr>
<tr>
<td>5</td>
<td>Alternate kernel, latest driver (v237)</td>
<td>1.10.3-237.1.20.0</td>
<td>4.19.322+1</td>
<td>NIC not functional</td>
<td>FAIL</td>
</tr>
</tbody>
</table>
<h2>Analysis</h2>
<h3>What we observed</h3>
<ul>
<li>XCP-ng 8.2.1 works on this hardware with the v216 driver. No errors.</li>
<li>XCP-ng 8.3 fails on this hardware with every driver version we tested (v216, v232, v237, v1.9.2).</li>
<li>Both 8.2.1 and 8.3 use the same kernel version: <code>4.19.0+1</code>.</li>
<li>Both the default kernel (<code>4.19.0+1</code>) and the alternate kernel (<code>4.19.322+1</code>) fail on 8.3.</li>
<li>The hardware is identical across all tests. The NIC firmware is confirmed at the latest version via HPE iLO.</li>
<li>The problem persists after installation — it does not appear to be limited to the installer environment. We confirmed this by using answerfile-based upgrades (see methodology above) to get 8.3 installed, and the driver still failed to probe the NIC on every boot.</li>
<li>The HPE DL380a Gen12 only supports UEFI boot. All testing was performed under UEFI.</li>
</ul>
<h3>What we believe we can rule out</h3>
<ul>
<li><strong>Driver version:</strong> We tested four different driver versions on 8.3. All fail. This suggests the driver version alone does not appear to be the cause.</li>
<li><strong>Kernel version:</strong> Both 8.2.1 and 8.3 use <code>4.19.0+1</code>. The alternate kernel (<code>4.19.322+1</code>) also fails. The kernel version does not appear to be the differentiator.</li>
<li><strong>Hardware / NIC firmware:</strong> The hardware is unchanged between all tests, and the NIC firmware is at the latest version. We do not believe hardware is the cause.</li>
<li><strong>Installer-only issue:</strong> The problem reproduces after a full install and reboot, not just during the installer.</li>
</ul>
<h3>What remains</h3>
<p dir="auto">Based on the above, the main variable that changes between the working 8.2.1 setup and the failing 8.3 setup appears to be the XCP-ng release itself — something other than the kernel or the <code>bnxt_en</code> driver may have changed between 8.2.1 and 8.3 that is causing the NIC probe to fail. We have not been able to identify what that is.</p>
<h3>Additional notes</h3>
<ul>
<li>On 8.3, different driver versions produce different error messages (<code>Firmware not responding, rc: -16 status: 0x8000</code> for v232/v237 vs <code>Error (timeout: 500015) msg (0x0 0x0) len:0</code> for v216), but in all cases the NIC does not appear in <code>ip link show</code>.</li>
<li>The alternate kernel does not produce any <code>bnxt_en</code> error messages at all, but the NIC still does not appear in <code>ip link show</code>.</li>
<li>The Dell R660 forum thread mentions the successful workaround was done via BIOS boot and they "did not attempt UEFI". Since our platform only supports UEFI, we cannot test whether BIOS boot would make a difference.</li>
</ul>
<h2>Environment</h2>
<ul>
<li><strong>Working:</strong> XCP-ng 8.2.1 with <code>broadcom-bnxt-en-1.10.0_216.0.119.1-3</code>, kernel <code>4.19.0+1</code></li>
<li><strong>Failing:</strong> XCP-ng 8.3 (<code>xcp-ng-8.3.0-20250606.2.iso</code>) with all tested driver versions</li>
<li><strong>Server:</strong> HPE ProLiant DL380a Gen12</li>
</ul>
<h2>Related</h2>
<ul>
<li><a href="https://xcp-ng.org/forum/topic/11366/xcp-ng-8.3-and-dell-r660-crash-during-boot-halts-remainder-of-installer-process-bnxt_en/6">XCP-ng Forum: XCP-ng 8.3 and Dell R660 - crash during boot (bnxt_en)</a> — same <code>bnxt_en</code> probe failure on Dell R660 with BCM57504</li>
</ul>
]]></description><link>https://xcp-ng.org/forum/topic/12049/xcp-ng-8.3-broadcom-bcm57414-bnxt_en-driver-fails-to-probe-on-hpe-dl380a-gen12</link><generator>RSS for Node</generator><lastBuildDate>Thu, 13 Aug 2026 15:12:43 GMT</lastBuildDate><atom:link href="https://xcp-ng.org/forum/topic/12049.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 03 Apr 2026 12:49:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Tue, 04 Aug 2026 16:21:59 GMT]]></title><description><![CDATA[<p dir="auto">Very cool, thanks for the feedback <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/maximsachs" aria-label="Profile: maximsachs">@<bdi>maximsachs</bdi></a> !</p>
]]></description><link>https://xcp-ng.org/forum/post/107527</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/107527</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Tue, 04 Aug 2026 16:21:59 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Tue, 04 Aug 2026 13:49:45 GMT]]></title><description><![CDATA[<p dir="auto">Hi we have reached our scheduled downtime window!</p>
<p dir="auto">I ran the PCI-e commands to check as <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/thierryescande" aria-label="Profile: thierryescande">@<bdi>thierryescande</bdi></a>  requested:</p>
<pre><code>[15:36 REDACTED ~]# lspci -nn -s 0001:86:00.0
0001:86:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries BCM57414 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller [14e4:16d7] (rev 01)
[15:46 REDACTED ~]# lspci -nn -s 0001:86:00.1
0001:86:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries BCM57414 NetXtreme-E 10Gb/25Gb RDMA Ethernet Controller [14e4:16d7] (rev 01)
</code></pre>
<p dir="auto">The custom ISO from <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/yannsionneau" aria-label="Profile: yannsionneau">@<bdi>yannsionneau</bdi></a> was able to succesfully upgrade our 8.2 install to 8.3! The installer ran through just as a "normal" iso would.</p>
<p dir="auto">Below is the DMESG output, it seems to also confirm that the root cause may be the removal of the device IDs on 0001.</p>
<p dir="auto"><a href="/forum/assets/uploads/files/1785851122717-dmesg_custom_iso_redacted.txt">dmesg_custom_iso_redacted.txt</a></p>
<p dir="auto">Thank you very much for your great advice and help!</p>
<p dir="auto">Kind regards,<br />
Maxim</p>
]]></description><link>https://xcp-ng.org/forum/post/107526</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/107526</guid><dc:creator><![CDATA[maximsachs]]></dc:creator><pubDate>Tue, 04 Aug 2026 13:49:45 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Thu, 28 May 2026 09:00:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/maximsachs" aria-label="Profile: maximsachs">@<bdi>maximsachs</bdi></a> Thanks for getting back to me on this.<br />
I think (and hope) that in the mean time we will have released an official new ISO that fixes the issue you are having.<br />
So, you will be better off testing the new official ISO rather than this unofficial one <img src="https://xcp-ng.org/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=f084dd9e819" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /><br />
I'll try to ping here when the new official ISO is out.</p>
<p dir="auto">Thanks!<br />
Regards,<br />
Yann</p>
]]></description><link>https://xcp-ng.org/forum/post/105791</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105791</guid><dc:creator><![CDATA[yannsionneau]]></dc:creator><pubDate>Thu, 28 May 2026 09:00:26 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Thu, 28 May 2026 08:55:48 GMT]]></title><description><![CDATA[<p dir="auto">Unfortunately, we will have a bit of delay from our side. We are only able to get sufficient downtime for testing with the servers in the first half of August. So I will have to wait until then to try out the fixes.</p>
]]></description><link>https://xcp-ng.org/forum/post/105790</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105790</guid><dc:creator><![CDATA[maximsachs]]></dc:creator><pubDate>Thu, 28 May 2026 08:55:48 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 20 May 2026 12:36:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/yannsionneau" aria-label="Profile: yannsionneau">@<bdi>yannsionneau</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/thierryescande" aria-label="Profile: thierryescande">@<bdi>thierryescande</bdi></a></p>
<p dir="auto">Thank you very much for the updates!</p>
<p dir="auto">We are scheduling some downtime on the services in the upcoming weeks, then I hope to be able to try out all your suggestions. Our fallback plan is to switch the Broadcom network cards for other Melanox cards.</p>
<p dir="auto">I will be posting the results once we have them!</p>
]]></description><link>https://xcp-ng.org/forum/post/105604</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105604</guid><dc:creator><![CDATA[maximsachs]]></dc:creator><pubDate>Wed, 20 May 2026 12:36:08 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Tue, 19 May 2026 14:48:52 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/maximsachs" aria-label="Profile: maximsachs">@<bdi>maximsachs</bdi></a>,</p>
<p dir="auto">on top of trying what <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/thierryescande" aria-label="Profile: thierryescande">@<bdi>thierryescande</bdi></a> told you, could you also give a try to this ISO installer please?<br />
We have done some internal investigations and we think that the issue could be because of an issue in Xen handling of PCI devices that are on 0001 segment which seems to be your case.</p>
<p dir="auto">Please note that this is a custom test ISO and it is therefore not officially supported, do not use it for production, it is just to confirm that it fixes your issue, we will release a supported ISO in the future (target date for now is June).</p>
<p dir="auto">unsupported test ISO for you to test: <a href="https://nextcloud.vates.tech/index.php/s/iHf8sqq39EqE683" target="_blank" rel="noopener noreferrer nofollow ugc">https://nextcloud.vates.tech/index.php/s/iHf8sqq39EqE683</a></p>
<p dir="auto">Regards,<br />
Yann</p>
]]></description><link>https://xcp-ng.org/forum/post/105573</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105573</guid><dc:creator><![CDATA[yannsionneau]]></dc:creator><pubDate>Tue, 19 May 2026 14:48:52 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 13 May 2026 15:54:54 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/maximsachs" aria-label="Profile: maximsachs">@<bdi>maximsachs</bdi></a>,</p>
<p dir="auto">Sorry for the delay.</p>
<p dir="auto">From what you describe, the driver seems to be probed in all cases but I have a doubt regarding the driver from xcp-ng 8.2. I rebuilt it specifically for 8.3. To completely eliminate a driver issue, can you try <a href="https://nextcloud.vates.tech/public.php/dav/files/R33Dwpt5gjy6CCr/broadcom-bnxt-en-1.10.0_216.0.119.1-1.0.82srcs.0.xcpng8.3.x86_64.rpm" target="_blank" rel="noopener noreferrer nofollow ugc">this RPM</a> ?</p>
<p dir="auto">From the host, this can be done by running the following commands:</p>
<pre><code>$ wget https://nextcloud.vates.tech/public.php/dav/files/R33Dwpt5gjy6CCr/broadcom-bnxt-en-1.10.0_216.0.119.1-1.0.82srcs.0.xcpng8.3.x86_64.rpm
$ yum update ./broadcom-bnxt-en-1.10.0_216.0.119.1-1.0.82srcs.0.xcpng8.3.x86_64.rpm
</code></pre>
<p dir="auto">Also, since this xcpng-8.2 release seems to have support for device IDs that have been removed from the 8.3 one, can you give the output of the following shell commands:</p>
<pre><code>$ lspci -nn -s 0001:86:00.0
</code></pre>
<p dir="auto">and</p>
<pre><code>$ lspci -nn -s 0001:86:00.1
</code></pre>
<p dir="auto">Regards,<br />
Thierry</p>
]]></description><link>https://xcp-ng.org/forum/post/105386</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105386</guid><dc:creator><![CDATA[ThierryEscande]]></dc:creator><pubDate>Wed, 13 May 2026 15:54:54 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 13 May 2026 09:38:03 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/yannsionneau" aria-label="Profile: yannsionneau">@<bdi>yannsionneau</bdi></a>, have you had the time to investigate this issue some more? We would love to hear if there is already a solution.</p>
]]></description><link>https://xcp-ng.org/forum/post/105373</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/105373</guid><dc:creator><![CDATA[maximsachs]]></dc:creator><pubDate>Wed, 13 May 2026 09:38:03 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 15 Apr 2026 11:24:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/yannsionneau" aria-label="Profile: yannsionneau">@<bdi>yannsionneau</bdi></a> Thanks for the update! We are eagerly awaiting your findings! Thanks for looking into it.</p>
]]></description><link>https://xcp-ng.org/forum/post/104465</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/104465</guid><dc:creator><![CDATA[maximsachs]]></dc:creator><pubDate>Wed, 15 Apr 2026 11:24:11 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 15 Apr 2026 15:02:32 GMT]]></title><description><![CDATA[<p dir="auto">FYI this is not being forgotten, we still have a card about this assigned to someone, it will just take a bit more time than I thought before we work on this.<br />
I'll send updates here when we have new elements.<br />
Regards,<br />
Yann</p>
]]></description><link>https://xcp-ng.org/forum/post/104464</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/104464</guid><dc:creator><![CDATA[yannsionneau]]></dc:creator><pubDate>Wed, 15 Apr 2026 15:02:32 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 08 Apr 2026 12:47:11 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">Someone from the Hypervisor &amp; Kernel team will have a look shortly, we'll get back to you with our findings.</p>
<p dir="auto">Thanks a lot for the very detailed report!</p>
<p dir="auto">Yann</p>
]]></description><link>https://xcp-ng.org/forum/post/104264</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/104264</guid><dc:creator><![CDATA[yannsionneau]]></dc:creator><pubDate>Wed, 08 Apr 2026 12:47:11 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Wed, 08 Apr 2026 08:52:43 GMT]]></title><description><![CDATA[<p dir="auto">That's indeed more on <a class="plugin-mentions-group plugin-mentions-a" href="/forum/groups/team-hypervisor-kernel" aria-label="Profile: Team-Hypervisor-Kernel">@<bdi>Team-Hypervisor-Kernel</bdi></a> side. Maybe a driver/firmware version mismatch?</p>
]]></description><link>https://xcp-ng.org/forum/post/104249</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/104249</guid><dc:creator><![CDATA[yann]]></dc:creator><pubDate>Wed, 08 Apr 2026 08:52:43 GMT</pubDate></item><item><title><![CDATA[Reply to XCP-ng 8.3: Broadcom BCM57414 `bnxt_en` Driver Fails to Probe on HPE DL380a Gen12 on Fri, 03 Apr 2026 16:13:38 GMT]]></title><description><![CDATA[<p dir="auto">Pinging <a class="plugin-mentions-group plugin-mentions-a" href="/forum/groups/team-os-platform-release" aria-label="Profile: Team-OS-Platform-Release">@<bdi>Team-OS-Platform-Release</bdi></a></p>
]]></description><link>https://xcp-ng.org/forum/post/104158</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/104158</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Fri, 03 Apr 2026 16:13:38 GMT</pubDate></item></channel></rss>