Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 106089
b: refs/heads/master
c: ad1ede1
h: refs/heads/master
i:
  106087: 6ac6b5b
v: v3
  • Loading branch information
Andre Detsch authored and Jeremy Kerr committed Jul 24, 2008
1 parent ac5bf71 commit 13cbe5a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0855b543222e79cbbd9d66dd56cb54740e7d524f
refs/heads/master: ad1ede127760d6ca4903f44dfe1a8a38b3bfb36c
17 changes: 17 additions & 0 deletions trunk/arch/powerpc/platforms/cell/spufs/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,27 @@ static struct spu *aff_ref_location(struct spu_context *ctx, int mem_aff,
*/
node = cpu_to_node(raw_smp_processor_id());
for (n = 0; n < MAX_NUMNODES; n++, node++) {
int available_spus;

node = (node < MAX_NUMNODES) ? node : 0;
if (!node_allowed(ctx, node))
continue;

available_spus = 0;
mutex_lock(&cbe_spu_info[node].list_mutex);
list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
if (spu->ctx && spu->ctx->gang
&& spu->ctx->aff_offset == 0)
available_spus -=
(spu->ctx->gang->contexts - 1);
else
available_spus++;
}
if (available_spus < ctx->gang->contexts) {
mutex_unlock(&cbe_spu_info[node].list_mutex);
continue;
}

list_for_each_entry(spu, &cbe_spu_info[node].spus, cbe_list) {
if ((!mem_aff || spu->has_mem_affinity) &&
sched_spu(spu)) {
Expand Down

0 comments on commit 13cbe5a

Please sign in to comment.