mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
The new mlx5ib(4) module requires some existing values to be redefined.
Sponsored by: Mellanox Technologies
This commit is contained in:
parent
8e6e287f8d
commit
059ecd56d0
1 changed files with 4 additions and 4 deletions
|
|
@ -110,10 +110,10 @@ enum {
|
|||
};
|
||||
|
||||
enum {
|
||||
MLX5_NON_ZERO_RQ = 0 << 24,
|
||||
MLX5_SRQ_RQ = 1 << 24,
|
||||
MLX5_CRQ_RQ = 2 << 24,
|
||||
MLX5_ZERO_LEN_RQ = 3 << 24
|
||||
MLX5_NON_ZERO_RQ = 0x0,
|
||||
MLX5_SRQ_RQ = 0x1,
|
||||
MLX5_CRQ_RQ = 0x2,
|
||||
MLX5_ZERO_LEN_RQ = 0x3
|
||||
};
|
||||
|
||||
enum {
|
||||
|
|
|
|||
Loading…
Reference in a new issue