mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
afk: propagate failures in afk_epic_rx correctly
If the co-processor crashes afk_epic_poll will always fail which results in afk_epic_rx getting stuck in an infinite loop calling afk_epic_poll again and again. This happens with e.g. old/incompatible DCP firmware. Make sure the m1n1 proxy still works in those cases by propagating the error correctly. Signed-off-by: Sven Peter <sven@svenpeter.dev>
This commit is contained in:
parent
b2cb605832
commit
00404e9bc3
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ static int afk_epic_rx(afk_epic_ep_t *epic, struct afk_qe **qe)
|
|||
do {
|
||||
ret = afk_epic_poll(epic);
|
||||
if (ret < 0)
|
||||
break;
|
||||
return ret;
|
||||
} while (ret == 0);
|
||||
dma_rmb();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue