Bug 985342 - illegal instructions with glibc-2.17.90 on armv7hl
Summary: illegal instructions with glibc-2.17.90 on armv7hl
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: glibc
Version: rawhide
Hardware: arm
OS: Unspecified
unspecified
high
Target Milestone: ---
Assignee: Carlos O'Donell
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: AcceptedBlocker
Depends On:
Blocks: ARMTracker F20AlphaBlocker
TreeView+ depends on / blocked
 
Reported: 2013-07-17 10:24 UTC by Jiri Kastner
Modified: 2019-01-09 12:33 UTC (History)
18 users (show)

Fixed In Version: glibc-2.17-18.fc19
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2013-08-30 09:30:34 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)
dmesg with oops (65.34 KB, text/plain)
2013-07-18 08:05 UTC, Jiri Kastner
no flags Details


Links
System ID Private Priority Status Summary Last Updated
Sourceware 15905 0 None None None Never

Description Jiri Kastner 2013-07-17 10:24:05 UTC
Description of problem:
when trying yum --installroot=tmp-rawhide i got failures due illegal instructions. but chroot worked so i downgraded glibc (to glibc-2.17-9.fc20.armv7hl). in chroot reinstalled all without illegal instructions.

Version-Release number of selected component (if applicable):


How reproducible:
always on armv7hl

Steps to Reproduce:
1. on armv7hl device prepare chroot folder (bind /dev /sys and /proc, create /etc and copy there /etc/resolv.conf)
2. run yum --disablerepo=\* --enablerepo=rawhide install @core --installroot=/path/from/step/one
3. check results

Actual results:
more illegal instructions then healthy for rawhide system :)

Expected results:
no illegal instructions

Additional info:
http://paste.fedoraproject.org/25879/37405217/

Comment 1 Jiri Kastner 2013-07-17 14:45:03 UTC
<dgilmore> [root@wandboard01 ~]# rpm -q glibc
<dgilmore> glibc-2.17.90-1.fc20.armv7hl
<e-ndy> dgilmore, on trimslice i'm getting illegal instructions
<nchauvet_> trimslice doesn't have neon instruction ...
<dgilmore> e-ndy: im guessing something is enabled that shouldnt be
<e-ndy> probably
<dgilmore> either neon or 32 vfp registers
<dgilmore> tegra2 has only 16 registers and no neon

Comment 2 Carlos O'Donell 2013-07-17 15:22:25 UTC
As of Fedora 19 the Trimslice is no longer supported.

Fedora rawhide only supports the VFP ABI and your Tegra 2 based system doesn't support the instructions that are part of the VFP ABI and therefore you will get SIGILL when executing those instructions.

The best that can be done here would have been to have the dynamic linker prevent you from starting any userspace applications at all by printing an error and halting. You would have immediately bricked your box, but you'd know why.

Marking CLOSED/NOTABUG.

Comment 3 Kyle McMartin 2013-07-17 15:54:43 UTC
Jiri, could you please
 echo 1 >/proc/sys/kernel/print-fatal-signals
and check dmesg for the oops that should be printed?

I'd like to decode the actual faulting instruction to figure out where the failure is.

regards, Kyle

Comment 4 Brendan Conoboy 2013-07-17 18:00:02 UTC
Sorry, Trimslice is definitely supported in F19.  The Fedora ARM project uses the armv7hl target.  According to "/usr/lib/rpm/redhat/rpmrc" (Provided by redhat-rpm-config), the compiler flag definition is:

optflags: armv7hl %{__global_cflags} -march=armv7-a -mfpu=vfpv3-d16  -mfloat-abi=hard

This is what we have used since the Fedora 15 hard float bootstrap.

Comment 5 Carlos O'Donell 2013-07-17 19:15:06 UTC
(In reply to Brendan Conoboy from comment #4)
> Sorry, Trimslice is definitely supported in F19.  The Fedora ARM project
> uses the armv7hl target.  According to "/usr/lib/rpm/redhat/rpmrc" (Provided
> by redhat-rpm-config), the compiler flag definition is:
> 
> optflags: armv7hl %{__global_cflags} -march=armv7-a -mfpu=vfpv3-d16 
> -mfloat-abi=hard
> 
> This is what we have used since the Fedora 15 hard float bootstrap.

Brendan thanks for the clarification and the distinction between armv7hl vs. armv7hnl (which requires neon). I had misunderstood and expected armv7hl to require NEON which excludes Trimslice.

I will say that in general VFP ABI without NEON is not a configuration that upstream tests, but it's a valid configuration for systems that do not have NEON.

The next step is to find out exactly what instruction faulted and where.

Comment 6 Jiri Kastner 2013-07-18 08:05:45 UTC
Created attachment 775172 [details]
dmesg with oops

Comment 7 Jiri Kastner 2013-07-18 08:10:31 UTC
(In reply to Carlos O'Donell from comment #5)
> (In reply to Brendan Conoboy from comment #4)
> > Sorry, Trimslice is definitely supported in F19.  The Fedora ARM project
> > uses the armv7hl target.  According to "/usr/lib/rpm/redhat/rpmrc" (Provided
> > by redhat-rpm-config), the compiler flag definition is:
> > 
> > optflags: armv7hl %{__global_cflags} -march=armv7-a -mfpu=vfpv3-d16 
> > -mfloat-abi=hard
> > 
> > This is what we have used since the Fedora 15 hard float bootstrap.
> 
> Brendan thanks for the clarification and the distinction between armv7hl vs.
> armv7hnl (which requires neon). I had misunderstood and expected armv7hl to
> require NEON which excludes Trimslice.
> 
> I will say that in general VFP ABI without NEON is not a configuration that
> upstream tests, but it's a valid configuration for systems that do not have
> NEON.
> 
> The next step is to find out exactly what instruction faulted and where.

what i did:

echo 1 >/proc/sys/kernel/print-fatal-signals

yum --disablerepo=\* --enablerepo=rawhide --installroot=/mnt/target install glibc coreutils

chroot /mnt/target

in chroot:

ls

ls /root

rpm -qa

rpmdb --help

Comment 8 Carlos O'Donell 2013-07-18 08:29:09 UTC
(In reply to Jiri Kastner from comment #7)
> echo 1 >/proc/sys/kernel/print-fatal-signals

This isn't enough since it doesn't appear to contain the faulting instruction.

The best would be to get a core file for any SIGILL.

Take that core file to a working system and use gdb to do a backtrace and disassembly to see exactly what instruction was the one that faulted.

Extra points if you identify the routine in the original libc.so.6 that had the faulting instruction.

Comment 9 Carlos O'Donell 2013-07-23 23:30:23 UTC
The core files show a completely corrupt stack with no ability to determine the faulting instruction. It looks like the applications jumped into the heap and started executing data which leads to SIGILL.

This looks like it could be a glibc bug.

I need the reporter to try the following:

* Try to reproduce this using a trivial appliation.
  e.g. write a hello world C application.

* Compile the trivial application against the chroot's version of glibc.
  e.g. gcc -Wl,--dynamic-linker=/chroot/lib/ld-linux.so.3 -Wl,-rpath=/chroot/lib:/chroot/usr/lib -g3 -O0 -o app app.c

* Debug the application e.g. gdb app, and see if it works. If glibc is a problem then the application should crash and you should be able to try debug why.

Notes:
- Don't use threads.

Comment 10 Jiri Kastner 2013-07-24 08:14:15 UTC
[root@dhcp-26-143 ~]# gcc -Wl,--dynamic-linker=/root/rawhide/lib/ld-linux.so.3 -Wl,-rpath=/root/rawhide/lib/:/ro
ot/rawhide/usr/lib -g3 -O0 -o app app.c
[root@dhcp-26-143 ~]# gdb app
GNU gdb (GDB) Fedora (7.6-30.fc19)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "armv7hl-redhat-linux-gnueabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /root/app...done.
(gdb) run
Starting program: /root/app
/root/app: relocation error: /root/rawhide/lib/libc.so.6: symbol _dl_find_dso_for_object, version GLIBC_PRIVATE not defined in file ld-linux-armhf.so.3 with link time reference
[Inferior 1 (process 1675) exited with code 0177]
(gdb) quit

Comment 11 Carlos O'Donell 2013-07-24 13:08:40 UTC
(In reply to Jiri Kastner from comment #10)
> /root/app: relocation error: /root/rawhide/lib/libc.so.6: symbol
> _dl_find_dso_for_object, version GLIBC_PRIVATE not defined in file
> ld-linux-armhf.so.3 with link time reference

What does ldd /root/app say?

Either way I've found the problem.

Your chroot is hard-float with NEON support required and that is incompatible with your Trimslice hardware which lacks NEON.

readelf -a -W /root/rawhide/lib/libc-2.17.90.so
...
Attribute Section: aeabi
File Attributes
  Tag_CPU_name: "7-A"
  Tag_CPU_arch: v7
  Tag_CPU_arch_profile: Application
  Tag_ARM_ISA_use: Yes
  Tag_THUMB_ISA_use: Thumb-2
  Tag_FP_arch: VFPv3
  Tag_Advanced_SIMD_arch: NEONv1
  Tag_ABI_PCS_wchar_t: 4
  Tag_ABI_FP_rounding: Needed
  Tag_ABI_FP_denormal: Needed
  Tag_ABI_FP_exceptions: Needed
  Tag_ABI_FP_number_model: IEEE 754
  Tag_ABI_align_needed: 8-byte
  Tag_ABI_enum_size: int
  Tag_ABI_HardFP_use: SP and DP
  Tag_ABI_VFP_args: VFP registers
  Tag_CPU_unaligned_access: v6

Your installed system is simply hard-float with only vfpv3 reuqired e.g. armv7hl
readelf -a -W /lib/libc-2.17.so 
...
Attribute Section: aeabi
File Attributes
  Tag_CPU_name: "7-A"
  Tag_CPU_arch: v7
  Tag_CPU_arch_profile: Application
  Tag_ARM_ISA_use: Yes
  Tag_THUMB_ISA_use: Thumb-2
  Tag_FP_arch: VFPv3-D16
  Tag_ABI_PCS_wchar_t: 4
  Tag_ABI_FP_rounding: Needed
  Tag_ABI_FP_denormal: Needed
  Tag_ABI_FP_exceptions: Needed
  Tag_ABI_FP_number_model: IEEE 754
  Tag_ABI_align_needed: 8-byte
  Tag_ABI_align_preserved: 8-byte, except leaf SP
  Tag_ABI_enum_size: int
  Tag_ABI_HardFP_use: SP and DP
  Tag_ABI_VFP_args: VFP registers
  Tag_CPU_unaligned_access: v6

You need to install a non-NEON rawhide chroot.

Sorry for not noticing this earlier when you provided access to the box.

Does that clarify the issue?

Is everyone OK with me closing this as NOTABUG?

Comment 12 Kyle McMartin 2013-07-24 13:49:20 UTC
All rawhide is "non-NEON" as we don't build armv7hnl, just armv7hl, so either GCC is generating NEON code when it hasn't been asked for, or something else is amiss.

Comment 13 Carlos O'Donell 2013-07-24 17:11:41 UTC
(In reply to Kyle McMartin from comment #12)
> All rawhide is "non-NEON" as we don't build armv7hnl, just armv7hl, so
> either GCC is generating NEON code when it hasn't been asked for, or
> something else is amiss.

OK, rawhide is new enough that it has IFUNC support and therefore multiarch support.

e.g.

00089d80 <__GI___memcpy_neon>:
__memcpy_neon():
   89d80:       e1a0c000        mov     ip, r0
   89d84:       e3520040        cmp     r2, #64 ; 0x40
   89d88:       aa000019        bge     89df4 <__GI___memcpy_neon+0x74>
   89d8c:       e2023038        and     r3, r2, #56     ; 0x38
   89d90:       e2633034        rsb     r3, r3, #52     ; 0x34
   89d94:       e08ff003        add     pc, pc, r3
   89d98:       f421070d        vld1.8  {d0}, [r1]!
   89d9c:       f40c070d        vst1.8  {d0}, [ip]!
   89da0:       f421070d        vld1.8  {d0}, [r1]!
   89da4:       f40c070d        vst1.8  {d0}, [ip]!
   89da8:       f421070d        vld1.8  {d0}, [r1]!
   89dac:       f40c070d        vst1.8  {d0}, [ip]!
   89db0:       f421070d        vld1.8  {d0}, [r1]!
   89db4:       f40c070d        vst1.8  {d0}, [ip]!
   89db8:       f421070d        vld1.8  {d0}, [r1]!
   89dbc:       f40c070d        vst1.8  {d0}, [ip]!
   89dc0:       f421070d        vld1.8  {d0}, [r1]!
   89dc4:       f40c070d        vst1.8  {d0}, [ip]!
   89dc8:       f421070d        vld1.8  {d0}, [r1]!
   89dcc:       f40c070d        vst1.8  {d0}, [ip]!
...

The vld1.8 is a part of the NEON memcpy.

However, in 2.17 we have IFUNC support for selecting between VFP and NEON.

00084600 <memcpy>:
__GI_memcpy():
   84600:       e59f1010        ldr     r1, [pc, #16]   ; 84618 <memcpy+0x18>
   84604:       e3100a01        tst     r0, #4096       ; 0x1000
   84608:       159f1004        ldrne   r1, [pc, #4]    ; 84614 <memcpy+0x14>
   8460c:       e081000f        add     r0, r1, pc
   84610:       e12fff1e        bx      lr
   84614:       0000576c        .word   0x0000576c
   84618:       00005c6c        .word   0x00005c6c
$d():
   8461c:       e1a00000        .word   0xe1a00000
   84620:       e1a00000        .word   0xe1a00000
   84624:       e1a00000        .word   0xe1a00000
   84628:       e1a00000        .word   0xe1a00000
   8462c:       e1a00000        .word   0xe1a00000
   84630:       e1a00000        .word   0xe1a00000
   84634:       e1a00000        .word   0xe1a00000
   84638:       e1a00000        .word   0xe1a00000
   8463c:       e1a00000        .word   0xe1a00000

Which is roughly:
        ldr     r1, .Lmemcpy_vfp
        tst     r0, #HWCAP_ARM_NEON
        ldrne   r1, .Lmemcpy_neon
        add     r0, r1, pc
        DO_RET(lr)

The AT_HWCAP is passed into the resolver as r0 (arg0) of the function.

#define HWCAP_NEON      (1 << 12)

So 4096 matches.

Rebuilding /root/app with a direct reference to the non-symlinked dynamic loader lets us load it correctly.

Note:
ls -alt /root/rawhide/lib/ld-linux.so.3 
lrwxrwxrwx. 1 root root 24 Jul 18 11:09 /root/rawhide/lib/ld-linux.so.3 -> /lib/ld-linux-armhf.so.3
Should have been a relative symlink :-(

~~~ glibc.spec ~~~
# Leave a compatibility symlink for the dynamic loader on armhfp targets,
# at least until the world gets rebuilt
%ifarch armv7hl armv7hnl
ln -sf /lib/ld-linux-armhf.so.3 $RPM_BUILD_ROOT/lib/ld-linux.so.3
%endif
~~~
(Yes the glibc "Move to /usr" transition is still incomplete, but we've rewritten the spec file for that and it will be in rawhide and rhel-7.0 soon)

That should be something like this:
~~~
pushd $RPM_BUILD_ROOT%{libdir}
ln -sf ld-linux-armhf.so.3 ld-linux.so.3
popd
~~~
I'll make note of this for later.

./build-app.sh 
ldd app
	libc.so.6 => /root/rawhide/lib/libc.so.6 (0xb6dbb000)
	libgcc_s.so.1 => /root/rawhide/lib/libgcc_s.so.1 (0xb6d95000)
	/root/rawhide/lib/ld-linux-armhf.so.3 => /lib/ld-linux-armhf.so.3 (0x4d438000)

gdb app
GNU gdb (GDB) Fedora (7.6-30.fc19)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "armv7hl-redhat-linux-gnueabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /root/app...done.
(gdb) r
Starting program: /root/app 
Missing separate debuginfo for /root/rawhide/usr/lib/ld-linux-armhf.so.3
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/ec/d92013935f4d40996c9f62b64c0acd56121fff.debug
Missing separate debuginfo for /root/rawhide/lib/libc.so.6
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/9d/e30aa450690168dcf0bae2992ad434a09a67ab.debug
Missing separate debuginfo for /root/rawhide/lib/libgcc_s.so.1
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/17/a726db52ebf56cdf57c03aa483476c70a63d75.debug
hello, world[Inferior 1 (process 3474) exited with code 01]
(gdb) 

No failure.

Adding memcpy to the mix:
gdb app
GNU gdb (GDB) Fedora (7.6-30.fc19)
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "armv7hl-redhat-linux-gnueabi".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /root/app...done.
(gdb) break main
Breakpoint 1 at 0x85b0: file app.c, line 9.
(gdb) r
Starting program: /root/app 
Missing separate debuginfo for /root/rawhide/usr/lib/ld-linux-armhf.so.3
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/ec/d92013935f4d40996c9f62b64c0acd56121fff.debug
Missing separate debuginfo for /root/rawhide/lib/libc.so.6
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/9d/e30aa450690168dcf0bae2992ad434a09a67ab.debug
Missing separate debuginfo for /root/rawhide/lib/libgcc_s.so.1
Try: yum --disablerepo='*' --enablerepo='*debug*' install /usr/lib/debug/.build-id/17/a726db52ebf56cdf57c03aa483476c70a63d75.debug

Breakpoint 1, main () at app.c:9
9	  printf("hello, world");
(gdb) break memcpy
Breakpoint 2 at gnu-indirect-function resolver at 0xb6f03600
(gdb) c
Continuing.

Breakpoint 2, 0xb6f09280 in __memcpy_vfp () from /root/rawhide/lib/libc.so.6
(gdb) 

We get the correct __memcpy_vfp from the resolver per the AT_HWCAP bits.

I see nothing wrong nor why the binaries would be crashing.

Someone needs to come up with a relinked example that fails and examine why it fails in the new rawhide runtime.

There might be a non-ifunc function that is using NEON, but I don't know.

Again a testcase that fails would really help :-)

Comment 14 Kamil Páral 2013-08-21 16:32:14 UTC
Discussed at 2013-08-21 blocker review meeting [1]. This is accepted as an Alpha blocker, because it violates the following F20 alpha release criterion for trimslice (and potentially others): "A system installed with a release-blocking desktop must boot to a log in screen where it is possible to log in to a working desktop using a user account created during installation or a 'first boot' utility." [2]

[1] http://meetbot.fedoraproject.org/fedora-blocker-review/2013-08-21/
[2] https://fedoraproject.org/wiki/Fedora_20_Alpha_Release_Criteria#Expected_image_boot_behavior

Comment 15 Kyle McMartin 2013-08-22 18:49:10 UTC
Carlos, we're definitely crashing inside __memcpy_neon with the vld1.8 instruction:
[  170.431044] bash (878): undefined instruction: pc=b6e10540
[  170.431060] Code: f421070d f40c070d f421070d f40c070d (f421070d) 

Not entirely sure how this could be happening, all the kernel and glibc instrumentation I've done shows that elf_hwcap is right.

Comment 16 Carlos O'Donell 2013-08-22 19:08:29 UTC
(In reply to Kyle McMartin from comment #15)
> Carlos, we're definitely crashing inside __memcpy_neon with the vld1.8
> instruction:
> [  170.431044] bash (878): undefined instruction: pc=b6e10540
> [  170.431060] Code: f421070d f40c070d f421070d f40c070d (f421070d) 
> 
> Not entirely sure how this could be happening, all the kernel and glibc
> instrumentation I've done shows that elf_hwcap is right.

I'll debug from the ifunc resolver up to see what's happening. IIUC it shouldn't select the neon memcpy.

Comment 18 Carlos O'Donell 2013-08-27 19:06:34 UTC
Finished a 2.19 master build on the test box (trimslice2) provided by Kyle.

The test results are *terrible*, I'd say a lot of the testsuite is failing with SIGILL. I don't know if it's random, but the results are terrible enough that such a build/test should never see the light of day.

With glibc we are going to get to the point where such a build would have been failed if such failures didn't match baseline on a koji build system (but we aren't there yet).

Comment 19 Carlos O'Donell 2013-08-27 19:07:02 UTC
Looking into the testsuite failures.

Comment 20 Carlos O'Donell 2013-08-27 20:37:02 UTC
Kyle noticed that ARM isn't following the IFUNC API and is not passing in the hwcap as required to the resolver function for REL relocs.

There was a partial patch by Will Newton from Linaro which fixed this for RELA relocs but not REL[1]

AAELF for ARM requires support for both REL and RELA relocs:
~~~
4.6.1.1 Addends and PC -bias compensation
A binary file may use REL or RELA relocations or a mixture of the two (but multiple relocations for the same address m ust use only one type)
~~~

Kyle's patch fixes it for REL. Testing Kyle's patch right now. If this fixes it I'll post and checkin upstream.

[1] http://patches.linaro.org/18232/

Comment 21 Carlos O'Donell 2013-08-28 04:24:47 UTC
Patch posted upstream:
http://sourceware.org/ml/libc-ports/2013-08/msg00053.html

Set of testsuite failures is now down to a much more reasonable 7 failures, of which one is due to my failure to install stdc++-static for the static C++ tests (tst-cancel24-static).

Comment 22 Carlos O'Donell 2013-08-28 04:36:48 UTC
Pushed into rawhide.

commit b8280fad3dff1766f9b87d38acefdfdb7ba61c09
Author: Carlos O'Donell <carlos>
Date:   Wed Aug 28 00:34:43 2013 -0400

    Fix indirect function support to avoid calling optimized routines
    for the wrong hardware (#985342).

Build started:
http://koji.fedoraproject.org/koji/taskinfo?taskID=5863325

Comment 23 Jaroslav Reznik 2013-08-28 11:45:40 UTC
(In reply to Carlos O'Donell from comment #22)
> Pushed into rawhide.
> 
> commit b8280fad3dff1766f9b87d38acefdfdb7ba61c09
> Author: Carlos O'Donell <carlos>
> Date:   Wed Aug 28 00:34:43 2013 -0400
> 
>     Fix indirect function support to avoid calling optimized routines
>     for the wrong hardware (#985342).
> 
> Build started:
> http://koji.fedoraproject.org/koji/taskinfo?taskID=5863325

Carlos, could you please build it for F20 too - as this is approved F20 Alpha blocker. Thanks.

Comment 24 Carlos O'Donell 2013-08-28 13:09:13 UTC
(In reply to Jaroslav Reznik from comment #23)
> (In reply to Carlos O'Donell from comment #22)
> > Pushed into rawhide.
> > 
> > commit b8280fad3dff1766f9b87d38acefdfdb7ba61c09
> > Author: Carlos O'Donell <carlos>
> > Date:   Wed Aug 28 00:34:43 2013 -0400
> > 
> >     Fix indirect function support to avoid calling optimized routines
> >     for the wrong hardware (#985342).
> > 
> > Build started:
> > http://koji.fedoraproject.org/koji/taskinfo?taskID=5863325
> 
> Carlos, could you please build it for F20 too - as this is approved F20
> Alpha blocker. Thanks.

The rawhide build baseline matches my expectations so everything went well.

Pushed to f20.

Build started:
http://koji.fedoraproject.org/koji/taskinfo?taskID=5864423

Comment 25 Kyle McMartin 2013-08-28 14:36:52 UTC
awesome, thank you carlos.

Comment 26 Jiri Kastner 2013-08-28 20:58:21 UTC
i just tested it on trimslice with rawhide, no illegal instructions. same reproducer as in description.

Comment 27 Carlos O'Donell 2013-08-29 04:25:17 UTC
Fixed upstream now:
http://sourceware.org/bugzilla/show_bug.cgi?id=15905

Comment 28 Adam Williamson 2013-08-30 01:34:37 UTC
we should probably mark this fixed as soon as someone confirms an image built with the fixed glibc works on a trimslice.

Comment 29 Peter Robinson 2013-08-30 09:30:34 UTC
We've had a number of people confirm this is now working so closing

Comment 30 Fedora Update System 2013-09-23 10:16:49 UTC
glibc-2.17-18.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/glibc-2.17-18.fc19

Comment 31 Fedora Update System 2013-09-23 10:17:31 UTC
glibc-2.18-9.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/glibc-2.18-9.fc20

Comment 32 Fedora Update System 2013-09-26 06:12:09 UTC
glibc-2.18-9.fc20 has been pushed to the Fedora 20 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 33 Fedora Update System 2013-09-28 00:06:26 UTC
glibc-2.17-18.fc19 has been pushed to the Fedora 19 stable repository.  If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.