mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
mlx5en: only enable to toggle offload caps if they are supported
Some checks are pending
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /opt/homebrew/opt/llvm@18/bin, macos-latest, bmake libarchive llvm@18, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /opt/homebrew/opt/llvm@18/bin, macos-latest, bmake libarchive llvm@18, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /usr/lib/llvm-18/bin, ubuntu-24.04, bmake libarchive-dev clang-18 lld-18, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /usr/lib/llvm-18/bin, ubuntu-24.04, bmake libarchive-dev clang-18 lld-18, arm64, aarch64) (push) Waiting to run
Some checks are pending
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-14, /usr/lib/llvm-14/bin, ubuntu-22.04, bmake libarchive-dev clang-14 lld-14, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /opt/homebrew/opt/llvm@18/bin, macos-latest, bmake libarchive llvm@18, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /opt/homebrew/opt/llvm@18/bin, macos-latest, bmake libarchive llvm@18, arm64, aarch64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /usr/lib/llvm-18/bin, ubuntu-24.04, bmake libarchive-dev clang-18 lld-18, amd64, amd64) (push) Waiting to run
Cross-build Kernel / ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.compiler }}) (clang-18, /usr/lib/llvm-18/bin, ubuntu-24.04, bmake libarchive-dev clang-18 lld-18, arm64, aarch64) (push) Waiting to run
Reviewed by: Ariel Ehrenberg <aehrenberg@nvidia.com> Sponsored by: NVidia networking MFC after: 1 week
This commit is contained in:
parent
cca0dc49e0
commit
4cc5d081d8
@ -3552,6 +3552,24 @@ mlx5e_ioctl(if_t ifp, u_long command, caddr_t data)
|
|||||||
drv_ioctl_data = (struct siocsifcapnv_driver_data *)data;
|
drv_ioctl_data = (struct siocsifcapnv_driver_data *)data;
|
||||||
PRIV_LOCK(priv);
|
PRIV_LOCK(priv);
|
||||||
siocsifcap_driver:
|
siocsifcap_driver:
|
||||||
|
if (!mlx5e_is_tlstx_capable(priv->mdev)) {
|
||||||
|
drv_ioctl_data->reqcap &= ~(IFCAP_TXTLS4 |
|
||||||
|
IFCAP_TXTLS6);
|
||||||
|
}
|
||||||
|
if (!mlx5e_is_tlsrx_capable(priv->mdev)) {
|
||||||
|
drv_ioctl_data->reqcap &= ~(
|
||||||
|
IFCAP2_BIT(IFCAP2_RXTLS4) |
|
||||||
|
IFCAP2_BIT(IFCAP2_RXTLS6));
|
||||||
|
}
|
||||||
|
if (!mlx5e_is_ipsec_capable(priv->mdev)) {
|
||||||
|
drv_ioctl_data->reqcap &=
|
||||||
|
~IFCAP2_BIT(IFCAP2_IPSEC_OFFLOAD);
|
||||||
|
}
|
||||||
|
if (!mlx5e_is_ratelimit_capable(priv->mdev)) {
|
||||||
|
drv_ioctl_data->reqcap &= ~(IFCAP_TXTLS_RTLMT |
|
||||||
|
IFCAP_TXRTLMT);
|
||||||
|
}
|
||||||
|
|
||||||
mask = drv_ioctl_data->reqcap ^ if_getcapenable(ifp);
|
mask = drv_ioctl_data->reqcap ^ if_getcapenable(ifp);
|
||||||
|
|
||||||
if (mask & IFCAP_TXCSUM) {
|
if (mask & IFCAP_TXCSUM) {
|
||||||
|
Loading…
Reference in New Issue
Block a user