mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
irqchip/gic-v3-its: Properly handle command queue wrapping
wait_for_range_completion() is nicely busted when handling wrapping of the command queue, leading to an early exit instead of waiting for the command to have been executed. Fortunately, the impact is pretty minor, as it only impair the detection of an ITS that doesn't make any forward progress for a whole second. And an ITS should *never* lock up. Reported-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
This commit is contained in:
parent
319ec8b3a5
commit
9bdd8b1cde
@ -453,7 +453,13 @@ static void its_wait_for_range_completion(struct its_node *its,
|
||||
|
||||
while (1) {
|
||||
rd_idx = readl_relaxed(its->base + GITS_CREADR);
|
||||
if (rd_idx >= to_idx || rd_idx < from_idx)
|
||||
|
||||
/* Direct case */
|
||||
if (from_idx < to_idx && rd_idx >= to_idx)
|
||||
break;
|
||||
|
||||
/* Wrapped case */
|
||||
if (from_idx >= to_idx && rd_idx >= to_idx && rd_idx < from_idx)
|
||||
break;
|
||||
|
||||
count--;
|
||||
|
Loading…
Reference in New Issue
Block a user