public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28
@ 2011-01-16  9:39 allan at archlinux dot org
  2011-01-16  9:53 ` [Bug nptl/12403] " allan at archlinux dot org
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: allan at archlinux dot org @ 2011-01-16  9:39 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

           Summary: futex issues with --enable-kernel=2.6.22 to 2.6.28
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: nptl
        AssignedTo: drepper.fsp@gmail.com
        ReportedBy: allan@archlinux.org
              Host: x86_64-unknown-linux-gnu


When building glibc on x86_64 linux with --enable-kernel set for 2.6.22 to
2.6.28 inclusive, the following tests fail:

make[2]: *** [/build/glibc-build/nptl/tst-rwlock6.out] Error 1
make[2]: *** [/build/glibc-build/nptl/tst-rwlock7.out] Error 1
make[2]: *** [/build/glibc-build/nptl/tst-rwlock9.out] Error 1
make[2]: *** [/build/glibc-build/nptl/tst-rwlock11.out] Error 1
make[2]: *** [/build/glibc-build/nptl/tst-rwlock12.out] Error 11
make[2]: *** [/build/glibc-build/nptl/tst-rwlock14.out] Error 1
make[2]: *** [/build/glibc-build/nptl/tst-abstime.out] Error 1

This issue also results in crashes in various real-world applications.

Looking at what is enabled at the failure boundaries indicates a futex issue:
Support for private futexes was added in 2.6.22
Support for the FUTEX_CLOCK_REALTIME flag was added in 2.6.29

Confirming this is an issue with futex support, glibc built with one of the bad
values for --enable-kernel (2.6.27) and manually adjusting the following
defines:

1 - default - 2.6.22 - 2.6.28:
  # define __ASSUME_PRIVATE_FUTEX    1
  # undef __ASSUME_FUTEX_CLOCK_REALTIME
Glibc tests fail.

2 - default pre 2.6.22:
  # undef __ASSUME_PRIVATE_FUTEX
  # undef __ASSUME_FUTEX_CLOCK_REALTIME
Glibc tests pass.

3 - default 2.6.29 and later:
  # define __ASSUME_PRIVATE_FUTEX    1
  # define __ASSUME_FUTEX_CLOCK_REALTIME    1
Glibc tests pass.

This issues does not occur on i686-pc-linux-gnu.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
@ 2011-01-16  9:53 ` allan at archlinux dot org
  2011-01-16 22:50 ` drepper.fsp at gmail dot com
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: allan at archlinux dot org @ 2011-01-16  9:53 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #1 from Allan McRae <allan at archlinux dot org> 2011-01-16 09:53:22 UTC ---
Naively trying to locate the source of this bug...  Generating a list of files
that have #ifdef/#ifndef on the __ASSUME_PRIVATE_FUTEX and
__ASSUME_FUTEX_CLOCK_REALTIME defines (assuming this is not some more complex
interaction) and are x86_64 specific (as this does not occur on i686 builds)
gives:

nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S
nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S
nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S

If we further assume that the bug requires a nested #ifdef for these two
values, that restricts the issue to small parts of the last three files and
given the test suite failures we can exclude the first of those.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
  2011-01-16  9:53 ` [Bug nptl/12403] " allan at archlinux dot org
@ 2011-01-16 22:50 ` drepper.fsp at gmail dot com
  2011-01-17 22:55 ` allan at archlinux dot org
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: drepper.fsp at gmail dot com @ 2011-01-16 22:50 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Ulrich Drepper <drepper.fsp at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE

--- Comment #2 from Ulrich Drepper <drepper.fsp at gmail dot com> 2011-01-16 16:03:22 UTC ---
This is no place to report such problems.

*** This bug has been marked as a duplicate of bug 333 ***

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
  2011-01-16  9:53 ` [Bug nptl/12403] " allan at archlinux dot org
  2011-01-16 22:50 ` drepper.fsp at gmail dot com
@ 2011-01-17 22:55 ` allan at archlinux dot org
  2011-01-23 22:38 ` bz-glibc at kdzbn dot homelinux.net
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: allan at archlinux dot org @ 2011-01-17 22:55 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #3 from Allan McRae <allan at archlinux dot org> 2011-01-16 22:50:05 UTC ---
I have shown the issue occurs on a specific platform and with specific values
for --enable-kernel and shown it is a specific combination of defines that
results in the issue.

I would have thought that specific enough to be able to replicate the issue and
for it not to be a #333 duplicate. What further information is needed to show
this is a genuine glibc issue?

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (2 preceding siblings ...)
  2011-01-17 22:55 ` allan at archlinux dot org
@ 2011-01-23 22:38 ` bz-glibc at kdzbn dot homelinux.net
  2011-01-24  5:17 ` bz-glibc at kdzbn dot homelinux.net
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: bz-glibc at kdzbn dot homelinux.net @ 2011-01-23 22:38 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #4 from Bryan Kadzban <bz-glibc at kdzbn dot homelinux.net> 2011-01-23 22:37:14 UTC ---
Created attachment 5208
  --> http://sourceware.org/bugzilla/attachment.cgi?id=5208
Fix stack imbalance under --assume-kernel=2.6.{22..29} in rwlock code

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (3 preceding siblings ...)
  2011-01-23 22:38 ` bz-glibc at kdzbn dot homelinux.net
@ 2011-01-24  5:17 ` bz-glibc at kdzbn dot homelinux.net
  2011-01-24 23:00 ` allan at archlinux dot org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: bz-glibc at kdzbn dot homelinux.net @ 2011-01-24  5:17 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Bryan Kadzban <bz-glibc at kdzbn dot homelinux.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bz-glibc at kdzbn dot
                   |                            |homelinux.net

--- Comment #5 from Bryan Kadzban <bz-glibc at kdzbn dot homelinux.net> 2011-01-23 22:38:12 UTC ---
I'm seeing this as well.  I've tracked it down to a bug in the cleanup code in
pthread_rwlock_timedwrlock.S (causing a stack imbalance just before "retq") --
it uses __ASSUME_PRIVATE_FUTEX when deciding whether or not to clean up after
the local variables (and saved register) created for
__ASSUME_FUTEX_CLOCK_REALTIME.  When these two are set differently, "retq"
jumps off into never-never-land.

There's a related bug in pthread_rwlock_timedrdlock.S, which emits the wrong
CFI directives, but I don't think this will affect runtime.  (Could be wrong
though; I don't know a lot about CFI.)

Attached is a patch that fixes both issues; with this, all crashing in the
testsuite is gone.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (4 preceding siblings ...)
  2011-01-24  5:17 ` bz-glibc at kdzbn dot homelinux.net
@ 2011-01-24 23:00 ` allan at archlinux dot org
  2011-02-14  4:52 ` vapier at gentoo dot org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: allan at archlinux dot org @ 2011-01-24 23:00 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Allan McRae <allan at archlinux dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|DUPLICATE                   |

--- Comment #6 from Allan McRae <allan at archlinux dot org> 2011-01-24 05:17:46 UTC ---
Thanks. I can confirm that patch fixes the issues I was observing.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (5 preceding siblings ...)
  2011-01-24 23:00 ` allan at archlinux dot org
@ 2011-02-14  4:52 ` vapier at gentoo dot org
  2011-07-25  9:44 ` j at bitron dot ch
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: vapier at gentoo dot org @ 2011-02-14  4:52 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Mike Frysinger <vapier at gentoo dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |toolchain at gentoo dot org

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (6 preceding siblings ...)
  2011-02-14  4:52 ` vapier at gentoo dot org
@ 2011-07-25  9:44 ` j at bitron dot ch
  2011-08-18  6:52 ` schwab@linux-m68k.org
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: j at bitron dot ch @ 2011-07-25  9:44 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Jürg Billeter <j at bitron dot ch> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |j at bitron dot ch

--- Comment #7 from Jürg Billeter <j at bitron dot ch> 2011-07-25 09:43:57 UTC ---
I've just spent some time debugging a crash in asterisk which I tracked down to
the issue described here; my patch looks identical. Is there any reason why
this is not yet in master (and at least 2.13 and 2.14).

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (7 preceding siblings ...)
  2011-07-25  9:44 ` j at bitron dot ch
@ 2011-08-18  6:52 ` schwab@linux-m68k.org
  2011-09-09  3:56 ` drepper.fsp at gmail dot com
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: schwab@linux-m68k.org @ 2011-08-18  6:52 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Andreas Schwab <schwab@linux-m68k.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hjl.tools at gmail dot com

--- Comment #8 from Andreas Schwab <schwab@linux-m68k.org> 2011-08-18 06:51:58 UTC ---
*** Bug 13106 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (8 preceding siblings ...)
  2011-08-18  6:52 ` schwab@linux-m68k.org
@ 2011-09-09  3:56 ` drepper.fsp at gmail dot com
  2012-01-09 19:39 ` vapier at gentoo dot org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: drepper.fsp at gmail dot com @ 2011-09-09  3:56 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

Ulrich Drepper <drepper.fsp at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #9 from Ulrich Drepper <drepper.fsp at gmail dot com> 2011-09-09 03:55:40 UTC ---
I checked in a patch.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (9 preceding siblings ...)
  2011-09-09  3:56 ` drepper.fsp at gmail dot com
@ 2012-01-09 19:39 ` vapier at gentoo dot org
  2012-01-10  7:12 ` bz-glibc at kdzbn dot homelinux.net
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: vapier at gentoo dot org @ 2012-01-09 19:39 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #10 from Mike Frysinger <vapier at gentoo dot org> 2012-01-09 19:39:22 UTC ---
guess only one site needed updating:

http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=1e4bd093e664f2889c48e63714583ef06b90d5b9

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (10 preceding siblings ...)
  2012-01-09 19:39 ` vapier at gentoo dot org
@ 2012-01-10  7:12 ` bz-glibc at kdzbn dot homelinux.net
  2012-01-10 21:04 ` vapier at gentoo dot org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: bz-glibc at kdzbn dot homelinux.net @ 2012-01-10  7:12 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #11 from Bryan Kadzban <bz-glibc at kdzbn dot homelinux.net> 2012-01-10 07:11:17 UTC ---
> guess only one site needed updating:

Sort of.  Only one site affects the generated machine code (and that site was
fixed in the git change that you linked to), but git head still has broken CFI
data at the other site.

Which may or may not be an actual problem, depending on what happens.  If the
kernel tries to trace back into userspace from one of the other syscalls, the
info still might be totally broken.  But at least the code works now, which is
a step up from before.  I'm not very hopeful about the CFI data *ever* getting
fixed, unfortunately.  :-/

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (11 preceding siblings ...)
  2012-01-10  7:12 ` bz-glibc at kdzbn dot homelinux.net
@ 2012-01-10 21:04 ` vapier at gentoo dot org
  2014-02-16 17:45 ` jackie.rosen at hushmail dot com
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: vapier at gentoo dot org @ 2012-01-10 21:04 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=12403

--- Comment #12 from Mike Frysinger <vapier at gentoo dot org> 2012-01-10 21:03:52 UTC ---
that sounds like a diff (if semi-related) bug.  could you file a new one for us
to track it ?

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (12 preceding siblings ...)
  2012-01-10 21:04 ` vapier at gentoo dot org
@ 2014-02-16 17:45 ` jackie.rosen at hushmail dot com
  2014-05-28 19:43 ` schwab at sourceware dot org
  2014-06-27 12:25 ` fweimer at redhat dot com
  15 siblings, 0 replies; 17+ messages in thread
From: jackie.rosen at hushmail dot com @ 2014-02-16 17:45 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=12403

Jackie Rosen <jackie.rosen at hushmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jackie.rosen at hushmail dot com

--- Comment #13 from Jackie Rosen <jackie.rosen at hushmail dot com> ---
*** Bug 260998 has been marked as a duplicate of this bug. ***
Seen from the domain http://volichat.com
Page where seen: http://volichat.com/adult-chat-rooms
Marked for reference. Resolved as fixed @bugzilla.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (13 preceding siblings ...)
  2014-02-16 17:45 ` jackie.rosen at hushmail dot com
@ 2014-05-28 19:43 ` schwab at sourceware dot org
  2014-06-27 12:25 ` fweimer at redhat dot com
  15 siblings, 0 replies; 17+ messages in thread
From: schwab at sourceware dot org @ 2014-05-28 19:43 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=12403

Andreas Schwab <schwab at sourceware dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|jackie.rosen at hushmail dot com   |

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

* [Bug nptl/12403] futex issues with --enable-kernel=2.6.22 to 2.6.28
  2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
                   ` (14 preceding siblings ...)
  2014-05-28 19:43 ` schwab at sourceware dot org
@ 2014-06-27 12:25 ` fweimer at redhat dot com
  15 siblings, 0 replies; 17+ messages in thread
From: fweimer at redhat dot com @ 2014-06-27 12:25 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=12403

Florian Weimer <fweimer at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
              Flags|                            |security-

-- 
You are receiving this mail because:
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2014-06-27 12:25 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-16  9:39 [Bug nptl/12403] New: futex issues with --enable-kernel=2.6.22 to 2.6.28 allan at archlinux dot org
2011-01-16  9:53 ` [Bug nptl/12403] " allan at archlinux dot org
2011-01-16 22:50 ` drepper.fsp at gmail dot com
2011-01-17 22:55 ` allan at archlinux dot org
2011-01-23 22:38 ` bz-glibc at kdzbn dot homelinux.net
2011-01-24  5:17 ` bz-glibc at kdzbn dot homelinux.net
2011-01-24 23:00 ` allan at archlinux dot org
2011-02-14  4:52 ` vapier at gentoo dot org
2011-07-25  9:44 ` j at bitron dot ch
2011-08-18  6:52 ` schwab@linux-m68k.org
2011-09-09  3:56 ` drepper.fsp at gmail dot com
2012-01-09 19:39 ` vapier at gentoo dot org
2012-01-10  7:12 ` bz-glibc at kdzbn dot homelinux.net
2012-01-10 21:04 ` vapier at gentoo dot org
2014-02-16 17:45 ` jackie.rosen at hushmail dot com
2014-05-28 19:43 ` schwab at sourceware dot org
2014-06-27 12:25 ` fweimer at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).