Skip to content

Commit

Permalink
Merge pull request #44 from Nerabus/master
Browse files Browse the repository at this point in the history
Fix what looks like a thinko in _handle_afu.  This corrects a "bad machine path" behavior in the event the afu sets a non-zero jerror at the same time it asserts jdone.
  • Loading branch information
LanceThompson committed May 26, 2016
2 parents 14c8b3b + d59bdf4 commit 624b092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pslse/psl.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ static void _handle_afu(struct psl *psl)
for (i = 0; i < psl->max_clients; i++) {
if (psl->client[i] == NULL)
continue;
client_drop(client, PSL_IDLE_CYCLES, CLIENT_NONE);
client_drop(psl->client[i], PSL_IDLE_CYCLES, CLIENT_NONE);
}
}
}
Expand Down

0 comments on commit 624b092

Please sign in to comment.