search for: remaining_size

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

2020 Nov 02
0
[PATCH mlx5-next v1 03/11] net/mlx5_core: Clean driver version and name
...ION(DRIVER_VERSION); > > > > unsigned int mlx5_core_debug_mask; > > module_param_named(debug_mask, mlx5_core_debug_mask, uint, 0644); > > @@ -228,7 +227,7 @@ static void mlx5_set_driver_version(struct > > mlx5_core_dev *dev) > > strncat(string, ",", remaining_size); > > > > remaining_size = max_t(int, 0, driver_ver_sz - strlen(string)); > > - strncat(string, DRIVER_NAME, remaining_size); > > + strncat(string, KBUILD_MODNAME, remaining_size); > > > > remaining_size = max_t(int, 0, driver_ver_sz - strlen(string)); > &...
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