]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[POWERPC] spufs: always send sigtrap on breakpoint
authorArnd Bergmann <arnd@arndb.de>
Mon, 27 Nov 2006 18:18:53 +0000 (19:18 +0100)
committerPaul Mackerras <paulus@samba.org>
Mon, 4 Dec 2006 09:41:09 +0000 (20:41 +1100)
Currently, we only send a sigtrap if the current task is being ptraced.
This is somewhat inconsistant, and it breaks utrace support in fedora.
Removing the check should do the right thing in all cases.

Cc: Ulrich Weigand <ulrich.weigand@de.ibm.com>
Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
arch/powerpc/platforms/cell/spufs/run.c

index 1be4e3339d8e170275ea183f6122bdeb13dacdc0..1acc2ffef8c8ac67749be5dbf1a43ef176648304 100644 (file)
@@ -350,12 +350,10 @@ out2:
               (status >> SPU_STOP_STATUS_SHIFT != 0x2104)))))
                ret = status;
 
-       if (unlikely(current->ptrace & PT_PTRACED)) {
-               if ((status & SPU_STATUS_STOPPED_BY_STOP)
-                   && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff) {
-                       force_sig(SIGTRAP, current);
-                       ret = -ERESTARTSYS;
-               }
+       if ((status & SPU_STATUS_STOPPED_BY_STOP)
+           && (status >> SPU_STOP_STATUS_SHIFT) == 0x3fff) {
+               force_sig(SIGTRAP, current);
+               ret = -ERESTARTSYS;
        }
 
 out: