Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 08fcf1d6 authored by Luke Browning's avatar Luke Browning Committed by Paul Mackerras
Browse files

[POWERPC] spufs: Fix pointer reference in find_victim



If victim (not ctx) is in spu_run, add victim to rq.

Signed-off-by: default avatarLuke Browning <lukebrowning@us.ibm.com>
Acked-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent bfd123bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -659,7 +659,7 @@ static struct spu *find_victim(struct spu_context *ctx)

			victim->stats.invol_ctx_switch++;
			spu->stats.invol_ctx_switch++;
			if (test_bit(SPU_SCHED_SPU_RUN, &ctx->sched_flags))
			if (test_bit(SPU_SCHED_SPU_RUN, &victim->sched_flags))
				spu_add_to_rq(victim);

			mutex_unlock(&victim->state_mutex);