Fix igb backports from 1.6

This commit is contained in:
Bjarne von Horn 2024-06-07 11:20:03 +02:00
parent 85ed1a08c5
commit f7d2c053bc
3 changed files with 3 additions and 3 deletions

View File

@ -8122,7 +8122,7 @@ static int igb_poll(struct napi_struct *napi, int budget)
bool clean_complete = true;
int work_done = 0;
if (get_ecdev(q_vector->adapter)) {
if (q_vector->adapter->ecdev) {
return -EBUSY;
}

View File

@ -8112,7 +8112,7 @@ static int igb_poll(struct napi_struct *napi, int budget)
bool clean_complete = true;
int work_done = 0;
if (get_ecdev(q_vector->adapter)) {
if (q_vector->adapter->ecdev) {
return -EBUSY;
}

View File

@ -8265,7 +8265,7 @@ static int igb_poll(struct napi_struct *napi, int budget)
bool clean_complete = true;
int work_done = 0;
if (get_ecdev(q_vector->adapter)) {
if (q_vector->adapter->ecdev) {
return -EBUSY;
}