diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2007-04-23 15:08:24 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@klappe.arndb.de> | 2007-04-23 15:18:58 -0400 |
commit | d3764397d07b1e03943edfdcc3fb77af7bdac02b (patch) | |
tree | c68fdc9fb4dd0eb02880b264a154b132c16c4983 | |
parent | f11f5ee70f48899506514e5e0d10ee2c8ddd359a (diff) |
[POWERPC] spufs: Minor cleanup of spu_wait
Change the loop in spu_wait to be a little more straightforward.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/spufs.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/spufs.h b/arch/powerpc/platforms/cell/spufs/spufs.h index dd5fc6494ecf..0a947fd7de57 100644 --- a/arch/powerpc/platforms/cell/spufs/spufs.h +++ b/arch/powerpc/platforms/cell/spufs/spufs.h | |||
@@ -223,14 +223,13 @@ extern char *isolated_loader; | |||
223 | prepare_to_wait(&(wq), &__wait, TASK_INTERRUPTIBLE); \ | 223 | prepare_to_wait(&(wq), &__wait, TASK_INTERRUPTIBLE); \ |
224 | if (condition) \ | 224 | if (condition) \ |
225 | break; \ | 225 | break; \ |
226 | if (!signal_pending(current)) { \ | 226 | if (signal_pending(current)) { \ |
227 | spu_release(ctx); \ | 227 | __ret = -ERESTARTSYS; \ |
228 | schedule(); \ | 228 | break; \ |
229 | spu_acquire(ctx); \ | ||
230 | continue; \ | ||
231 | } \ | 229 | } \ |
232 | __ret = -ERESTARTSYS; \ | 230 | spu_release(ctx); \ |
233 | break; \ | 231 | schedule(); \ |
232 | spu_acquire(ctx); \ | ||
234 | } \ | 233 | } \ |
235 | finish_wait(&(wq), &__wait); \ | 234 | finish_wait(&(wq), &__wait); \ |
236 | __ret; \ | 235 | __ret; \ |