aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Joyner <erj@FreeBSD.org>2024-10-30 20:35:40 +0000
committerEric Joyner <erj@FreeBSD.org>2024-10-30 20:35:40 +0000
commit03e1f25dcb200edbd6553ffc2748e7410b9ff264 (patch)
treec2df1530374b25131341ee7e61b0c3c68b7ae2f6
parent50b5a37a12d032085276b1f0ebb5f92c0cabed32 (diff)
downloadsrc-03e1f25dcb20.tar.gz
src-03e1f25dcb20.zip
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
-rw-r--r--sys/dev/ice/if_ice_iflib.c3
1 files changed, 1 insertions, 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);