summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms
diff options
context:
space:
mode:
authorPaul Mackerras2008-11-24 01:54:08 +0100
committerPaul Mackerras2008-11-24 01:54:08 +0100
commit3f9b5d4dda6d85aab33fef32e8351ddc34c81fb4 (patch)
treeb3295e66c18503be9fd6d4e59964ecf32296e177 /arch/powerpc/platforms
parentMerge branch 'merge' of ssh://master.kernel.org/pub/scm/linux/kernel/git/jwbo... (diff)
parentpowerpc/spufs: Fix spinning in spufs_ps_fault on signal (diff)
downloadkernel-qcow2-linux-3f9b5d4dda6d85aab33fef32e8351ddc34c81fb4.tar.gz
kernel-qcow2-linux-3f9b5d4dda6d85aab33fef32e8351ddc34c81fb4.tar.xz
kernel-qcow2-linux-3f9b5d4dda6d85aab33fef32e8351ddc34c81fb4.zip
Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/jk/spufs into merge
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r--arch/powerpc/platforms/cell/spufs/file.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/cell/spufs/file.c b/arch/powerpc/platforms/cell/spufs/file.c
index b73c369cc6f1..1b26071a86ca 100644
--- a/arch/powerpc/platforms/cell/spufs/file.c
+++ b/arch/powerpc/platforms/cell/spufs/file.c
@@ -390,6 +390,9 @@ static int spufs_ps_fault(struct vm_area_struct *vma,
if (offset >= ps_size)
return VM_FAULT_SIGBUS;
+ if (fatal_signal_pending(current))
+ return VM_FAULT_SIGBUS;
+
/*
* Because we release the mmap_sem, the context may be destroyed while
* we're in spu_wait. Grab an extra reference so it isn't destroyed