diff options
Diffstat (limited to 'drivers/net/mlx4/cmd.c')
| -rw-r--r-- | drivers/net/mlx4/cmd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/mlx4/cmd.c b/drivers/net/mlx4/cmd.c index 2845a0560b84..65ec77dc31f5 100644 --- a/drivers/net/mlx4/cmd.c +++ b/drivers/net/mlx4/cmd.c | |||
| @@ -80,7 +80,9 @@ enum { | |||
| 80 | /* Bad management packet (silently discarded): */ | 80 | /* Bad management packet (silently discarded): */ |
| 81 | CMD_STAT_BAD_PKT = 0x30, | 81 | CMD_STAT_BAD_PKT = 0x30, |
| 82 | /* More outstanding CQEs in CQ than new CQ size: */ | 82 | /* More outstanding CQEs in CQ than new CQ size: */ |
| 83 | CMD_STAT_BAD_SIZE = 0x40 | 83 | CMD_STAT_BAD_SIZE = 0x40, |
| 84 | /* Multi Function device support required: */ | ||
| 85 | CMD_STAT_MULTI_FUNC_REQ = 0x50, | ||
| 84 | }; | 86 | }; |
| 85 | 87 | ||
| 86 | enum { | 88 | enum { |
| @@ -128,6 +130,7 @@ static int mlx4_status_to_errno(u8 status) | |||
| 128 | [CMD_STAT_LAM_NOT_PRE] = -EAGAIN, | 130 | [CMD_STAT_LAM_NOT_PRE] = -EAGAIN, |
| 129 | [CMD_STAT_BAD_PKT] = -EINVAL, | 131 | [CMD_STAT_BAD_PKT] = -EINVAL, |
| 130 | [CMD_STAT_BAD_SIZE] = -ENOMEM, | 132 | [CMD_STAT_BAD_SIZE] = -ENOMEM, |
| 133 | [CMD_STAT_MULTI_FUNC_REQ] = -EACCES, | ||
| 131 | }; | 134 | }; |
| 132 | 135 | ||
| 133 | if (status >= ARRAY_SIZE(trans_table) || | 136 | if (status >= ARRAY_SIZE(trans_table) || |
