diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2007-06-29 10:58:04 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-07-03 15:24:46 +1000 |
commit | 08c9692b168240729cf89c69c4ad722760a5690c (patch) | |
tree | bbba70fa9e16b4ee0dd1fa12d1ad6372e0862bdc | |
parent | e9f8a0b65ac716fd7974159240ce34bddea780b3 (diff) | |
download | linux-3.10-08c9692b168240729cf89c69c4ad722760a5690c.tar.gz linux-3.10-08c9692b168240729cf89c69c4ad722760a5690c.tar.bz2 linux-3.10-08c9692b168240729cf89c69c4ad722760a5690c.zip |
[POWERPC] spufs: Fix libassist accounting
We're currently too permissive with counting libassist calls - fix the
check on the SPE stop-and-signal status.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/run.c b/arch/powerpc/platforms/cell/spufs/run.c index c69f63dd5f0..05cf815dbda 100644 --- a/arch/powerpc/platforms/cell/spufs/run.c +++ b/arch/powerpc/platforms/cell/spufs/run.c @@ -352,7 +352,7 @@ long spufs_run_spu(struct file *file, struct spu_context *ctx, SPU_STATUS_SINGLE_STEP))); if ((status & SPU_STATUS_STOPPED_BY_STOP) && - ((status >> SPU_STOP_STATUS_SHIFT) & 0x2100)) + (((status >> SPU_STOP_STATUS_SHIFT) & 0x3f00) == 0x2100)) ctx->stats.libassist++; ctx->ops->master_stop(ctx); |