aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mlx4/mlx4_core/mlx4.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump the Mellanox driver version numbers and the FreeBSD version number.Hans Petter Selasky2019-05-081-2/+2
| | | | | | | | MFC after: 3 days Sponsored by: Mellanox Technologies Notes: svn path=/head/; revision=347325
* mlx4/mlx5: Updated driver version to 3.5.0Slava Shwartsman2018-12-051-2/+2
| | | | | | | | | Approved by: hselasky (mentor) MFC after: 1 week Sponsored by: Mellanox Technologies Notes: svn path=/head/; revision=341587
* Add mapping for several ethernet types used by Linux to FreeBSDAndrey V. Elsukov2018-03-061-2/+0
| | | | | | | | | | | ethernet types. Reviewed by: hselasky MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D14594 Notes: svn path=/head/; revision=330537
* Update the mlx4 core and mlx4en(4) modules towards Linux v4.9.Hans Petter Selasky2017-11-151-100/+237
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Background: The coming ibcore update forces an update of mlx4ib(4) which in turn requires an updated mlx4 core module. This also affects the mlx4en(4) module because commonly used APIs are updated. This commit is a middle step updating the mlx4 modules towards the new ibcore. This change contains no major new features. Changes in mlx4: a) Improved error handling when mlx4 PCI devices are detached inside VMs. b) Major update of codebase towards Linux 4.9. Changes in mlx4ib(4): a) Minimal changes needed in order to compile using the updated mlx4 core APIs. Changes in mlx4en(4): a) Update flow steering code in mlx4en to use new APIs for registering MAC addresses and IP addresses. b) Update all statistics counters to be 64-bit. c) Minimal changes needed in order to compile using the updated mlx4 core APIs. Sponsored by: Mellanox Technologies MFC after: 1 week Notes: svn path=/head/; revision=325841
* mlx(4): remove date from log messageEd Maste2016-12-231-1/+0
| | | | | | | | | | Further to r310425, go one step further and just remove the date. Reviewed by: hselasky Differential Revision: https://reviews.freebsd.org/D8888 Notes: svn path=/head/; revision=310488
* mlx: avoid use of __DATE__ to make build reproducibleEd Maste2016-12-221-1/+1
| | | | | | | | Reviewed by: hselasky Differential Revision: https://reviews.freebsd.org/D8886 Notes: svn path=/head/; revision=310425
* Move the ConnectX-3 and ConnectX-2 driver from sys/ofed into sys/dev/mlx4Hans Petter Selasky2016-09-301-0/+1328
like other PCI network drivers. The sys/ofed directory is now mainly reserved for generic infiniband code, with exception of the mthca driver. - Add new manual page, mlx4en(4), describing how to configure and load mlx4en. - All relevant driver C-files are now prefixed mlx4, mlx4_en and mlx4_ib respectivly to avoid object filename collisions when compiling the kernel. This also fixes an issue with proper dependency file generation for the C-files in question. - Device mlxen is now device mlx4en and depends on device mlx4, see mlx4en(4). Only the network device name remains unchanged. - The mlx4 and mlx4en modules are now built by default on i386 and amd64 targets. Only building the mlx4ib module depends on WITH_OFED=YES . Sponsored by: Mellanox Technologies Notes: svn path=/head/; revision=306486