File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,10 @@ static enum ibv_wc_status vendor_error_to_wc_error(uint32_t vendor_error)
383
383
case VENDOR_ERR_RX_NOT_EMPTY_ON_DISABLE :
384
384
case VENDOR_ERR_SW_FLUSHED :
385
385
return IBV_WC_WR_FLUSH_ERR ;
386
+ case VENDOR_ERR_TX_RETRY_LIMIT_EXCEEDED :
387
+ return IBV_WC_RETRY_EXC_ERR ;
388
+ case VENDOR_ERR_RX_RNR_NAK :
389
+ return IBV_WC_RNR_RETRY_EXC_ERR ;
386
390
default :
387
391
return IBV_WC_GENERAL_ERR ;
388
392
}
Original file line number Diff line number Diff line change @@ -249,10 +249,12 @@ enum mana_error_code {
249
249
VENDOR_ERR_RX_INVALID_REQ_NAK = 0x161 ,
250
250
VENDOR_ERR_RX_REMOTE_ACCESS_NAK = 0x162 ,
251
251
VENDOR_ERR_RX_REMOTE_OP_ERR_NAK = 0x163 ,
252
+ VENDOR_ERR_RX_RNR_NAK = 0x164 ,
252
253
VENDOR_ERR_RX_ATB_SGE_ADDR_RIGHT = 0x183 ,
253
254
VENDOR_ERR_RX_ATB_WQE_ADDR_RIGHT = 0x185 ,
254
255
VENDOR_ERR_RX_ATB_SGE_ADDR_RANGE = 0x1c3 ,
255
256
VENDOR_ERR_RX_ATB_WQE_ADDR_RANGE = 0x1c5 ,
257
+ VENDOR_ERR_TX_RETRY_LIMIT_EXCEEDED = 0x1c6 ,
256
258
VENDOR_ERR_RX_NOT_EMPTY_ON_DISABLE = 0x1c7 ,
257
259
VENDOR_ERR_TX_GDMA_CORRUPTED_WQE = 0x201 ,
258
260
VENDOR_ERR_TX_ATB_WQE_ACCESS_VIOLATION = 0x202 ,
You can’t perform that action at this time.
0 commit comments