search for: mlx5_adev_name

Displaying 2 results from an estimated 2 matches for "mlx5_adev_name".

2020 Nov 02
0
[PATCH mlx5-next v1 03/11] net/mlx5_core: Clean driver version and name
...> + .name = KBUILD_MODNAME, > > .id_table = mlx5_core_pci_table, > > .probe = init_one, > > .remove = remove_one, > > @@ -1643,6 +1642,10 @@ static int __init init(void) { > > int err; > > > > + WARN_ONCE(strcmp(MLX5_ADEV_NAME, KBUILD_MODNAME) || > > + strlen(MLX5_ADEV_NAME) != strlen(KBUILD_MODNAME), > > + "mlx5_core name not in sync with kernel module name"); > > + > In which case, both the strings are same but their length not? > You likely don't need the string length check...
2020 Nov 01
12
[PATCH mlx5-next v1 00/11] Convert mlx5 to use auxiliary bus
From: Leon Romanovsky <leonro at nvidia.com> Changelog: v1: * Renamed _mlx5_rescan_driver to be mlx5_rescan_driver_locked like in other parts of the mlx5 driver. * Renamed MLX5_INTERFACE_PROTOCOL_VDPA to tbe MLX5_INTERFACE_PROTOCOL_VNET as a preparation to coming series from Eli C. * Some small naming renames in mlx5_vdpa. * Refactored adev index code to make Parav's SF series