/usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/linux/mlx5
NameSizeModeActions
cq.h59050644editdlrm
device.h390130644editdlrm
doorbell.h22710644editdlrm
driver.h358590644editdlrm
eq.h17610644editdlrm
eswitch.h65620644editdlrm
fs.h94890644editdlrm
fs_helpers.h29780644editdlrm
mlx5_ifc.h2919310644editdlrm
mlx5_ifc_fpga.h90760644editdlrm
mlx5_ifc_vdpa.h39140644editdlrm
mpfs.h5400644editdlrm
port.h76460644editdlrm
qp.h124700644editdlrm
rsc_dump.h12880644editdlrm
transobj.h35670644editdlrm
vport.h56220644editdlrm
Edit: /usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/linux/mlx5/mpfs.h (540B)
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB * Copyright (c) 2021 Mellanox Technologies Ltd. */ #ifndef _MLX5_MPFS_ #define _MLX5_MPFS_ struct mlx5_core_dev; #ifdef CONFIG_MLX5_MPFS int mlx5_mpfs_add_mac(struct mlx5_core_dev *dev, u8 *mac); int mlx5_mpfs_del_mac(struct mlx5_core_dev *dev, u8 *mac); #else /* #ifndef CONFIG_MLX5_MPFS */ static inline int mlx5_mpfs_add_mac(struct mlx5_core_dev *dev, u8 *mac) { return 0; } static inline int mlx5_mpfs_del_mac(struct mlx5_core_dev *dev, u8 *mac) { return 0; } #endif #endif