git: 25ad37c9532b - stable/14 - ice: Remove RDMA feature block on E830 devices
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 30 Oct 2024 20:57:28 UTC
The branch stable/14 has been updated by erj:
URL: https://cgit.FreeBSD.org/src/commit/?id=25ad37c9532b8c0d753c55347e7e150b40b4929a
commit 25ad37c9532b8c0d753c55347e7e150b40b4929a
Author: Eric Joyner <erj@FreeBSD.org>
AuthorDate: 2024-10-30 20:35:40 +0000
Commit: Eric Joyner <erj@FreeBSD.org>
CommitDate: 2024-10-30 20:53:03 +0000
ice: Remove RDMA feature block on E830 devices
The decision to disable RDMA on E830 devices has been reversed; some
SKUs will officially launch with RDMA support.
This reverts a change introduced in "ice: Update to 1.42.5-k".
Signed-off-by: Eric Joyner <erj@FreeBSD.org>
Sponsored by: Intel Corporation
(cherry picked from commit 03e1f25dcb200edbd6553ffc2748e7410b9ff264)
---
sys/dev/ice/if_ice_iflib.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sys/dev/ice/if_ice_iflib.c b/sys/dev/ice/if_ice_iflib.c
index 9b3f38f885b9..e60ee0f1c5c3 100644
--- a/sys/dev/ice/if_ice_iflib.c
+++ b/sys/dev/ice/if_ice_iflib.c
@@ -2916,8 +2916,7 @@ ice_init_device_features(struct ice_softc *sc)
/* Disable features due to hardware limitations... */
if (!hw->func_caps.common_cap.rss_table_size)
ice_clear_bit(ICE_FEATURE_RSS, sc->feat_cap);
- if (!hw->func_caps.common_cap.iwarp || !ice_enable_irdma ||
- ice_is_e830(hw))
+ if (!hw->func_caps.common_cap.iwarp || !ice_enable_irdma)
ice_clear_bit(ICE_FEATURE_RDMA, sc->feat_cap);
if (!hw->func_caps.common_cap.dcb)
ice_clear_bit(ICE_FEATURE_DCB, sc->feat_cap);