All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc/spufs: adjust list element pointer type
@ 2020-05-08  9:12 ` Julia Lawall
  0 siblings, 0 replies; 11+ messages in thread
From: Julia Lawall @ 2020-05-08  9:12 UTC (permalink / raw)
  To: Jeremy Kerr
  Cc: Nic Volanschi, Arnd Bergmann, kernel-janitors, linux-kernel,
	Paul Mackerras, linuxppc-dev

Other uses of &gang->aff_list_head, eg in spufs_assert_affinity, indicate
that the list elements have type spu_context, not spu as used here.  Change
the type of tmp accordingly.

This has no impact on the execution, because tmp is not used in the body of
the loop.

Fixes: c5fc8d2a92461 ("[CELL] cell: add placement computation for scheduling of affinity contexts")
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

---
 arch/powerpc/platforms/cell/spufs/sched.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/cell/spufs/sched.c b/arch/powerpc/platforms/cell/spufs/sched.c
index f18d5067cd0f..487fcb47f10d 100644
--- a/arch/powerpc/platforms/cell/spufs/sched.c
+++ b/arch/powerpc/platforms/cell/spufs/sched.c
@@ -344,8 +344,7 @@ static struct spu *aff_ref_location(struct spu_context *ctx, int mem_aff,
 static void aff_set_ref_point_location(struct spu_gang *gang)
 {
 	int mem_aff, gs, lowest_offset;
-	struct spu_context *ctx;
-	struct spu *tmp;
+	struct spu_context *tmp, *ctx;
 
 	mem_aff = gang->aff_ref_ctx->flags & SPU_CREATE_AFFINITY_MEM;
 	lowest_offset = 0;

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-02-15  5:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-08  9:12 [PATCH] powerpc/spufs: adjust list element pointer type Julia Lawall
2020-05-08  9:12 ` Julia Lawall
2020-05-08  9:12 ` Julia Lawall
2020-05-08 10:13 ` Jeremy Kerr
2020-05-08 10:13   ` Jeremy Kerr
2020-05-08 10:13   ` Jeremy Kerr
2020-05-08 10:40   ` Julia Lawall
2020-05-08 10:40     ` Julia Lawall
2020-05-08 10:40     ` Julia Lawall
2022-02-15  5:26 ` Michael Ellerman
2022-02-15  5:26   ` Michael Ellerman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.