[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: GDB stops with sigtrap at 0 address on ia64 wheezy



Stephan,

What's weird to me is in the GCC 4.4 version ends with this:

     306:       00 90 44 20 23 00                 st4 [r17]=r18                       //store result of cmpxchg4
     30c:       00 00 04 00                         nop.i 0x0;;
     310:       11 00 00 00 01 00       [MIB]       nop.m 0x0
     316:       00 00 00 02 00 80                   nop.i 0x0
     31c:       08 00 84 00                         br.ret.sptk.many b0;;            //return r8

but the GCC 4.6 version ends with this:

     330:       11 00 44 40 90 11       [MIB]       st4 [r32]=r17                                                   //store result of cmpxchg4
     336:       00 00 00 02 00 00                   nop.i 0x0
     33c:       a0 ff ff 48                         br.few 2d0 <cmpxchg_futex_value_locked+0x90>;;     //err, branch to middle of code?


so what is at address 2d0?

     2d0:       0b 48 20 1a 19 21       [MMI]       adds r9=3208,r13;;  //???
     2d6:       b0 00 24 20 20 00                   ld4 r11=[r9]               //what are we loading from memory?
     2dc:       00 00 04 00                         nop.i 0x0;;
     2e0:       0b 50 fc 17 3f 23       [MMI]       adds r10=-1,r11;;
     2e6:       00 50 24 20 23 00                 st4 [r9]=r10                 // um what are we writing to memory?
     2ec:       00 00 04 00                         nop.i 0x0;;
     2f0:       10 00 00 00 01 00       [MIB]       nop.m 0x0
     2f6:       00 00 00 02 00 80                   nop.i 0x0
     2fc:       08 00 84 00                         br.ret.sptk.many b0    //return 

That seems really weird -- shouldn't this just do a br.ret.sptk.many b0 like GCC 4.4?

Patrick

On Wed, Oct 31, 2012 at 3:26 PM, Stephan Schreiber <info@fs-driver.org> wrote:
I tried some older Kernel versions in order to get more information about the regression.

Udeb and libudeb0 have been downgraded to version 161 in order to run older Kernels.


Kernel 3.0.0-2 (linux-image-3.0.0-2-mckinley_3.0.0-5_ia64.deb)
GDB 7.4.1 works

Kernel 3.1.0-rc7 (linux-image-3.1.0-rc7-mckinley_3.1.0~rc7-1~experimental.1_ia64.deb)
GDB 7.4.1 works

Kernel 3.1.0-1 (linux-image-3.1.0-1-mckinley_3.1.1-1_ia64.deb)
GDB 7.4.1 doesn't work

Kernel 3.1.0-1 (linux-image-3.1.0-1-mckinley_3.1.4-1_ia64.deb)
GDB 7.4.1 doesn't work


If you read the changelog of linux-2.6, you realize that one difference between 3.1.0~rc7-1 and 3.1.1-1 is the used the GCC version: a change from 4.5 to 4.6.

This also explains the working Gentoo Kernel 3.3.8; it has been compiles with GCC 4.5.3.

I focused the Kernel 3.2.23 for the subsequent tests because it is the one in Wheezy. (Udev and libudev upgraded to the most recent versions in Wheezy.)

As you remember GDB 7.4.1 doesn't work on Kernel 3.2.23 - compiled with GCC 4.6.

I build Kernel 3.2.23 with GCC4.4. GDB 7.4.1 works on that Kernel! But don't be too excited, the bad news is coming soon.

That's quite interesting. Either a problem in some GCC versions or we have some source code in the Kernel which isn't portable in some way.

Emeric Maschine gave me the valuable hint on the Debian ia64 list that he have already seen some GDB trouble after a particular upstream patch in Kernel:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=37a9d912b24f

The result was Debian bug#659485 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659485) and an upstream patch (https://bugzilla.kernel.org/show_bug.cgi?id=42757):
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=c76f39bddb84f93f70a5520d9253ec0317bec216


The source code which was modified by these patches attracted my attention immediately.
Here is the source code of Kernel 3.2.23; the register operand constraints of the assembly block are *wrong*.

File arch/ia64/include/asm/futex.h:

static inline int
futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
                              u32 oldval, u32 newval)
{
        if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
                return -EFAULT;

        {
                register unsigned long r8 __asm ("r8");
                unsigned long prev;
                __asm__ __volatile__(
                        "       mf;;                                    \n"
                        "       mov %0=r0                               \n"
                        "       mov ar.ccv=%4;;                         \n"
                        "[1:]   cmpxchg4.acq %1=[%2],%3,ar.ccv          \n"
                        "       .xdata4 \"__ex_table\", 1b-., 2f-.      \n"
                        "[2:]"
                        : "=r" (r8), "=r" (prev)
                        : "r" (uaddr), "r" (newval),
                          "rO" ((long) (unsigned) oldval)
                        : "memory");
                *uval = prev;
                return r8;
        }
}



The list of output registers is
                        : "=r" (r8), "=r" (prev)
The constraint "=r" means that the GCC has to maintain that these vars are in registers and contain valid info when the program flow leaves the assembly block (output registers).
But "=r" also means that GCC can put them in registers that are used as input registers. Input registers are uaddr, newval, oldval on the example.
The second assembly instruction
                        "       mov %0=r0                               \n"
is the first one which writes to a register; it sets %0 to 0. %0 means the first register operand; it is r8 here. (The r0 is read-only and always 0 on the Itanium; it can be used if an immediate zero value is needed.)
This instruction might overwrite one of the other registers which are still needed.
Whether it really happens depends on how GCC decides what registers it uses and how it optimizes the code.

The objdump utility can give us disassembly.
The futex_atomic_cmpxchg_inatomic() function is inline, so we have to look for a module that uses the funtion. This is the cmpxchg_futex_value_locked() function in
kernel/futex.c:

static int cmpxchg_futex_value_locked(u32 *curval, u32 __user *uaddr,
                                      u32 uval, u32 newval)
{
        int ret;

        pagefault_disable();
        ret = futex_atomic_cmpxchg_inatomic(curval, uaddr, uval, newval);
        pagefault_enable();

        return ret;
}


Now the dissembly. At first from the Kernel package 3.2.23 which has been compiled with GCC 4.4, remeber this Kernel seemed to work:
objdump -d linux-3.2.23/debian/build/build_ia64_none_mckinley/kernel/futex.o

0000000000000230 <cmpxchg_futex_value_locked>:
     230:       0b 18 80 1b 18 21       [MMI]       adds r3=3168,r13;;
     236:       80 40 0d 00 42 00                   adds r8=40,r3
     23c:       00 00 04 00                         nop.i 0x0;;
     240:       0b 50 00 10 10 10       [MMI]       ld4 r10=[r8];;
     246:       90 08 28 00 42 00                 adds r9=1,r10
     24c:       00 00 04 00                         nop.i 0x0;;
     250:       09 00 00 00 01 00       [MMI]       nop.m 0x0
     256:       00 48 20 20 23 00                   st4 [r8]=r9
     25c:       00 00 04 00                         nop.i 0x0;;
     260:       08 10 80 06 00 21       [MMI]       adds r2=32,r3
     266:       00 00 00 02 00 00                   nop.m 0x0
     26c:       02 08 f1 52                         extr.u r16=r33,0,61
     270:       05 40 88 00 08 e0       [MLX]       addp4 r8=r34,r0
     276:       ff ff 0f 00 00 e0                   movl r15=0xfffffffbfff;;
     27c:       f1 f7 ff 65
     280:       09 70 00 04 18 10       [MMI]       ld8 r14=[r2]
     286:       00 00 00 02 00 c0                   nop.m 0x0
     28c:       f0 80 1c d0                         cmp.ltu p6,p7=r15,r16;;
     290:       08 40 fc 1d 09 3b       [MMI]       cmp.eq p8,p9=-1,r14
     296:       00 00 00 02 00 40                   nop.m 0x0
     29c:       e1 08 2d d0                         cmp.ltu p10,p11=r14,r33
     2a0:       56 01 10 00 40 10       [BBB] (p10) br.cond.spnt.few 2e0 <cmpxchg_futex_value_locked+0xb0>
     2a6:       02 08 00 80 21 03             (p08) br.cond.dpnt.few 2b0 <cmpxchg_futex_value_locked+0x80>
     2ac:       40 00 00 41                   (p06) br.cond.spnt.few 2e0 <cmpxchg_futex_value_locked+0xb0>
     2b0:       0a 00 00 00 22 00       [MMI]       mf;;
     2b6:       80 00 00 00 42 00                   mov r8=r0
     2bc:       00 00 04 00                         nop.i 0x0
     2c0:       0b 00 20 40 2a 04       [MMI]       mov.m ar.ccv=r8;;
     2c6:       10 1a 85 22 20 00                   cmpxchg4.acq r33=[r33],r35,ar.ccv
     2cc:       00 00 04 00                         nop.i 0x0;;
     2d0:       10 00 84 40 90 11       [MIB]       st4 [r32]=r33
     2d6:       00 00 00 02 00 00                   nop.i 0x0
     2dc:       20 00 00 40                         br.few 2f0 <cmpxchg_futex_value_locked+0xc0>
     2e0:       09 40 c8 f9 ff 27       [MMI]       mov r8=-14
     2e6:       00 00 00 02 00 00                   nop.m 0x0
     2ec:       00 00 04 00                         nop.i 0x0;;
     2f0:       0b 58 20 1a 19 21       [MMI]       adds r11=3208,r13;;
     2f6:       20 01 2c 20 20 00                   ld4 r18=[r11]
     2fc:       00 00 04 00                         nop.i 0x0;;
     300:       0b 88 fc 25 3f 23       [MMI]       adds r17=-1,r18;;
     306:       00 88 2c 20 23 00                   st4 [r11]=r17
     30c:       00 00 04 00                         nop.i 0x0;;
     310:       11 00 00 00 01 00       [MIB]       nop.m 0x0
     316:       00 00 00 02 00 80                   nop.i 0x0
     31c:       08 00 84 00                         br.ret.sptk.many b0;;


The two lines
     2b0:       0a 00 00 00 22 00       [MMI]       mf;;
     2b6:       80 00 00 00 42 00                   mov r8=r0
     2bc:       00 00 04 00                         nop.i 0x0
     2c0:       0b 00 20 40 2a 04       [MMI]       mov.m ar.ccv=r8;;
     2c6:       10 1a 85 22 20 00                   cmpxchg4.acq r33=[r33],r35,ar.ccv
     2cc:       00 00 04 00                         nop.i 0x0;;
are the instruction of the assembly block.
Oh!
     2b6:       80 00 00 00 42 00                   mov r8=r0
sets the r8 register to 0 and after that
     2c0:       0b 00 20 40 2a 04       [MMI]       mov.m ar.ccv=r8;;
prepares the 'oldvalue' for the cmpxchg but it takes it from r8. This is wrong! But this is the working Kernel!
I checked three times whether this is the Kernel with GCC4.4; it is. Believe me.
What happened here is what I explained above: An input register is overwritten which is still needed.
This is *not* a GCC bug! The register operand constraints in futex.h are wrong.



At next the same Kernel 3.2.23, compiled with GCC 4.6 - this was the one GDB didn't work with:

0000000000000240 <cmpxchg_futex_value_locked>:
     240:       0b 78 20 1a 19 21       [MMI]       adds r15=3208,r13;;
     246:       20 00 3c 20 20 00                   ld4 r2=[r15]
     24c:       00 00 04 00                         nop.i 0x0;;
     250:       0b 80 04 04 00 21     [MMI]       adds r16=1,r2;;
     256:       00 80 3c 20 23 00                   st4 [r15]=r16
     25c:       00 00 04 00                         nop.i 0x0;;
     260:       08 00 00 00 01 00       [MMI]       nop.m 0x0
     266:       e0 00 34 32 42 00                   adds r14=3200,r13
     26c:       01 08 f1 52                         extr.u r8=r33,0,61
     270:       05 00 00 00 01 c0       [MLX]       nop.m 0x0
     276:       ff ff 0f 00 00 60                   movl r3=0xfffffffbfff;;
     27c:       f0 f7 ff 65
     280:       09 00 00 00 01 00       [MMI]       nop.m 0x0
     286:       e0 00 38 30 20 00                   ld8 r14=[r14]
     28c:       00 00 04 00                         nop.i 0x0;;
     290:       11 30 38 42 07 34        [MIB]       cmp.ltu p6,p7=r14,r33
     296:       00 00 00 02 00 03                   nop.i 0x0
     29c:       30 00 00 41                   (p06) br.cond.spnt.few 2c0 <cmpxchg_futex_value_locked+0x80>;;
     2a0:       11 30 fc 1d 07 3b       [MIB]       cmp.eq p6,p7=-1,r14
     2a6:       00 00 00 02 00 03                   nop.i 0x0
     2ac:       60 00 00 43                   (p06) br.cond.dpnt.few 300 <cmpxchg_futex_value_locked+0xc0>;;
     2b0:       10 00 00 00 01 00       [MIB]       nop.m 0x0
     2b6:       70 18 20 0c 68 03                   cmp.ltu p7,p6=r3,r8
     2bc:       50 00 00 40                   (p06) br.cond.sptk.few 300 <cmpxchg_futex_value_locked+0xc0>
     2c0:       09 40 c8 f9 ff 27       [MMI]       mov r8=-14
     2c6:       00 00 00 02 00 00                   nop.m 0x0
     2cc:       00 00 04 00                         nop.i 0x0;;
     2d0:       0b 48 20 1a 19 21       [MMI]       adds r9=3208,r13;;
     2d6:       b0 00 24 20 20 00                   ld4 r11=[r9]
     2dc:       00 00 04 00                         nop.i 0x0;;
     2e0:       0b 50 fc 17 3f 23       [MMI]       adds r10=-1,r11;;
     2e6:       00 50 24 20 23 00                 st4 [r9]=r10
     2ec:       00 00 04 00                         nop.i 0x0;;
     2f0:       10 00 00 00 01 00       [MIB]       nop.m 0x0
     2f6:       00 00 00 02 00 80                   nop.i 0x0
     2fc:       08 00 84 00                         br.ret.sptk.many b0
     300:       09 00 00 00 01 00       [MMI]       nop.m 0x0
     306:       10 11 01 10 40 00                   addp4 r17=r34,r0
     30c:       00 00 04 00                         nop.i 0x0;;
     310:       0a 00 00 00 22 00       [MMI]       mf;;
     316:       80 00 00 00 42 00                   mov r8=r0
     31c:       00 00 04 00                         nop.i 0x0
     320:       0b 00 44 40 2a 04       [MMI]       mov.m ar.ccv=r17;;
     326:       10 1a 85 22 20 00                   cmpxchg4.acq r33=[r33],r35,ar.ccv
     32c:       00 00 04 00                         nop.i 0x0;;
     330:       11 00 84 40 90 11       [MIB]       st4 [r32]=r33
     336:       00 00 00 02 00 00                   nop.i 0x0
     33c:       a0 ff ff 48                         br.few 2d0 <cmpxchg_futex_value_locked+0x90>;;

Here I can't find anything. This should work. This is luck that the code is correct with the wrong register operand constraints in futex.h.
Here isn't the explanation why GDB doesn't work at all.


At next I fixed the register operand constraints in futex.h. A patch is attached.
The code after patching of it:

static inline int
futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
                              u32 oldval, u32 newval)
{
        if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
                return -EFAULT;

        {
                register unsigned long r8 __asm ("r8") = 0;
                unsigned long prev;
                __asm__ __volatile__(
                        "       mf;;                                    \n"
                        "       mov ar.ccv=%4;;                         \n"
                        "[1:]   cmpxchg4.acq %1=[%2],%3,ar.ccv          \n"
                        "       .xdata4 \"__ex_table\", 1b-., 2f-.      \n"
                        "[2:]"
                        : "+r" (r8), "=&r" (prev)
                        : "r" (uaddr), "r" (newval),
                          "rO" ((long) (unsigned) oldval)
                        : "memory");
                *uval = prev;
                return r8;
        }
}

I also initialized the 'r8' var with the C programming language.
(The _asm qualifier on the definition of the 'r8' var forces GCC to use the r8 processor register for it.)
I don't believe that we need inline assembly for zeroing out a local variable.
The constraint is
"+r" (r8)
what means that it is both an input register and an output register.
Note that the page fault handler will modify the r8 register which will be the return value of the function.
The real fix is
"=&r" (prev)
The & means that GCC must not use any of the input registers to place this output register in.

Patched the Kernel 3.2.23 and compiled it with GCC4.4:

0000000000000230 <cmpxchg_futex_value_locked>:
     230:       0b 18 80 1b 18 21       [MMI]       adds r3=3168,r13;;
     236:       80 40 0d 00 42 00                   adds r8=40,r3
     23c:       00 00 04 00                         nop.i 0x0;;
     240:       0b 50 00 10 10 10       [MMI]       ld4 r10=[r8];;
     246:       90 08 28 00 42 00                 adds r9=1,r10
     24c:       00 00 04 00                         nop.i 0x0;;
     250:       09 00 00 00 01 00       [MMI]       nop.m 0x0
     256:       00 48 20 20 23 00                   st4 [r8]=r9
     25c:       00 00 04 00                         nop.i 0x0;;
     260:       08 10 80 06 00 21       [MMI]       adds r2=32,r3
     266:       20 12 01 10 40 00                 addp4 r34=r34,r0
     26c:       02 08 f1 52                         extr.u r16=r33,0,61
     270:       05 40 00 00 00 e1       [MLX]       mov r8=r0
     276:       ff ff 0f 00 00 e0                   movl r15=0xfffffffbfff;;
     27c:       f1 f7 ff 65
     280:       09 70 00 04 18 10       [MMI]       ld8 r14=[r2]
     286:       00 00 00 02 00 c0                   nop.m 0x0
     28c:       f0 80 1c d0                         cmp.ltu p6,p7=r15,r16;;
     290:       08 40 fc 1d 09 3b       [MMI]       cmp.eq p8,p9=-1,r14
     296:       00 00 00 02 00 40                   nop.m 0x0
     29c:       e1 08 2d d0                         cmp.ltu p10,p11=r14,r33
     2a0:       56 01 10 00 40 10       [BBB] (p10) br.cond.spnt.few 2e0 <cmpxchg_futex_value_locked+0xb0>
     2a6:       02 08 00 80 21 03             (p08) br.cond.dpnt.few 2b0 <cmpxchg_futex_value_locked+0x80>
     2ac:       40 00 00 41                   (p06) br.cond.spnt.few 2e0 <cmpxchg_futex_value_locked+0xb0>
     2b0:       0b 00 00 00 22 00       [MMI]       mf;;
     2b6:       00 10 81 54 08 00                   mov.m ar.ccv=r34
     2bc:       00 00 04 00                         nop.i 0x0;;
     2c0:       09 58 8c 42 11 10       [MMI]       cmpxchg4.acq r11=[r33],r35,ar.ccv
     2c6:       00 00 00 02 00 00                   nop.m 0x0
     2cc:       00 00 04 00                         nop.i 0x0;;
     2d0:       10 00 2c 40 90 11       [MIB]       st4 [r32]=r11
     2d6:       00 00 00 02 00 00                   nop.i 0x0
     2dc:       20 00 00 40                         br.few 2f0 <cmpxchg_futex_value_locked+0xc0>
     2e0:       09 40 c8 f9 ff 27       [MMI]       mov r8=-14
     2e6:       00 00 00 02 00 00                   nop.m 0x0
     2ec:       00 00 04 00                         nop.i 0x0;;
     2f0:       0b 88 20 1a 19 21       [MMI]       adds r17=3208,r13;;
     2f6:       30 01 44 20 20 00                   ld4 r19=[r17]
     2fc:       00 00 04 00                         nop.i 0x0;;
     300:       0b 90 fc 27 3f 23       [MMI]       adds r18=-1,r19;;
     306:       00 90 44 20 23 00                 st4 [r17]=r18
     30c:       00 00 04 00                         nop.i 0x0;;
     310:       11 00 00 00 01 00       [MIB]       nop.m 0x0
     316:       00 00 00 02 00 80                   nop.i 0x0
     31c:       08 00 84 00                         br.ret.sptk.many b0;;

Much better.
There is a
     270:       05 40 00 00 00 e1       [MLX]       mov r8=r0
which was generated by C code r8 = 0. Below
     2b6:       00 10 81 54 08 00                   mov.m ar.ccv=r34
what means that oldval is no longer overwritten.
This Kernel (GCC4.4) works as well, GDB works on it; I have a just better feeling since I know that the wrong machine code is gone.



Patched the Kernel 3.2.23 and compiled it with GCC4.6:
0000000000000240 <cmpxchg_futex_value_locked>:
     240:       0b 78 20 1a 19 21       [MMI]       adds r15=3208,r13;;
     246:       20 00 3c 20 20 00                   ld4 r2=[r15]
     24c:       00 00 04 00                         nop.i 0x0;;
     250:       0b 80 04 04 00 21     [MMI]       adds r16=1,r2;;
     256:       00 80 3c 20 23 00                   st4 [r15]=r16
     25c:       00 00 04 00                         nop.i 0x0;;
     260:       08 00 00 00 01 00       [MMI]       nop.m 0x0
     266:       e0 00 34 32 42 00                   adds r14=3200,r13
     26c:       01 08 f1 52                         extr.u r8=r33,0,61
     270:       05 00 00 00 01 c0       [MLX]       nop.m 0x0
     276:       ff ff 0f 00 00 60                   movl r3=0xfffffffbfff;;
     27c:       f0 f7 ff 65
     280:       09 00 00 00 01 00       [MMI]       nop.m 0x0
     286:       e0 00 38 30 20 00                   ld8 r14=[r14]
     28c:       00 00 04 00                         nop.i 0x0;;
     290:       11 30 38 42 07 34        [MIB]       cmp.ltu p6,p7=r14,r33
     296:       00 00 00 02 00 03                   nop.i 0x0
     29c:       30 00 00 41                   (p06) br.cond.spnt.few 2c0 <cmpxchg_futex_value_locked+0x80>;;
     2a0:       11 30 fc 1d 07 3b       [MIB]       cmp.eq p6,p7=-1,r14
     2a6:       00 00 00 02 00 03                   nop.i 0x0
     2ac:       60 00 00 43                   (p06) br.cond.dpnt.few 300 <cmpxchg_futex_value_locked+0xc0>;;
     2b0:       10 00 00 00 01 00       [MIB]       nop.m 0x0
     2b6:       70 18 20 0c 68 03                   cmp.ltu p7,p6=r3,r8
     2bc:       50 00 00 40                   (p06) br.cond.sptk.few 300 <cmpxchg_futex_value_locked+0xc0>
     2c0:       09 40 c8 f9 ff 27       [MMI]       mov r8=-14
     2c6:       00 00 00 02 00 00                   nop.m 0x0
     2cc:       00 00 04 00                         nop.i 0x0;;
     2d0:       0b 48 20 1a 19 21       [MMI]       adds r9=3208,r13;;
     2d6:       b0 00 24 20 20 00                   ld4 r11=[r9]
     2dc:       00 00 04 00                         nop.i 0x0;;
     2e0:       0b 50 fc 17 3f 23       [MMI]       adds r10=-1,r11;;
     2e6:       00 50 24 20 23 00                 st4 [r9]=r10
     2ec:       00 00 04 00                         nop.i 0x0;;
     2f0:       10 00 00 00 01 00       [MIB]       nop.m 0x0
     2f6:       00 00 00 02 00 80                   nop.i 0x0
     2fc:       08 00 84 00                         br.ret.sptk.many b0
     300:       09 40 00 00 00 21       [MMI]       mov r8=r0
     306:       00 00 00 02 00 40                   nop.m 0x0
     30c:       24 02 20 80                         addp4 r34=r34,r0;;
     310:       0b 00 00 00 22 00       [MMI]       mf;;
     316:       00 10 81 54 08 00                   mov.m ar.ccv=r34
     31c:       00 00 04 00                         nop.i 0x0;;
     320:       09 88 8c 42 11 10       [MMI]       cmpxchg4.acq r17=[r33],r35,ar.ccv
     326:       00 00 00 02 00 00                   nop.m 0x0
     32c:       00 00 04 00                         nop.i 0x0;;
     330:       11 00 44 40 90 11       [MIB]       st4 [r32]=r17
     336:       00 00 00 02 00 00                   nop.i 0x0
     33c:       a0 ff ff 48                         br.few 2d0 <cmpxchg_futex_value_locked+0x90>;;


The code is slightly different from the unpatched one with GCC4.6.
GDB doesn't work with the that patched Kernel - still the odd behaviour with the SIGTRAP.


Summary for today:
The patch of Debian bug#659485 sucks and should be revised since it can make trouble with future versions of GCC.

I don't know yet whether the considered patches are related with the GDB problem or not. An if so, how.
I will take a Kernel 3.2.23 at next and revert *all* patches I have mentioned above, so that the files
arch/ia64/include/asm/futex.h
and
kernel/futex.c
look like on Kernel 2.6.26 or so, and try whether GDB works with it.

Stephan



Reply to: