diff options
-rw-r--r-- | drivers/net/ethernet/sfc/ef10.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/sfc/ef10.c b/drivers/net/ethernet/sfc/ef10.c index 45af374b1df9..ca922b958a2e 100644 --- a/drivers/net/ethernet/sfc/ef10.c +++ b/drivers/net/ethernet/sfc/ef10.c | |||
@@ -2259,6 +2259,8 @@ static int efx_ef10_filter_push(struct efx_nic *efx, | |||
2259 | outbuf, sizeof(outbuf), NULL); | 2259 | outbuf, sizeof(outbuf), NULL); |
2260 | if (rc == 0) | 2260 | if (rc == 0) |
2261 | *handle = MCDI_QWORD(outbuf, FILTER_OP_OUT_HANDLE); | 2261 | *handle = MCDI_QWORD(outbuf, FILTER_OP_OUT_HANDLE); |
2262 | if (rc == -ENOSPC) | ||
2263 | rc = -EBUSY; /* to match efx_farch_filter_insert() */ | ||
2262 | return rc; | 2264 | return rc; |
2263 | } | 2265 | } |
2264 | 2266 | ||