public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly
@ 2024-07-09 13:57 fweimer at redhat dot com
2024-07-09 13:57 ` [Bug libc/31968] " fweimer at redhat dot com
` (14 more replies)
0 siblings, 15 replies; 16+ messages in thread
From: fweimer at redhat dot com @ 2024-07-09 13:57 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
Bug ID: 31968
Summary: mremap implementation in C does not handle arguments
correctly
Product: glibc
Version: 2.35
Status: NEW
Severity: normal
Priority: P2
Component: libc
Assignee: unassigned at sourceware dot org
Reporter: fweimer at redhat dot com
CC: drepper.fsp at gmail dot com
Target Milestone: ---
Conditional varargs processing for system calls is bad. It causes an ongoing
maintenance headache, and weird application issues. For example, Linux 5.7
added MREMAP_DONTUNMAP, and it can use the address argument just like
MREMAP_FIXED. But the current mremap implementation always passes NULL as a
system call argument.
Regression in 2.35 caused by:
commit 5b3e31e3124bf89710e5c25176c70fdf66c2a212
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Wed Jun 17 09:29:07 2020 -0300
linux: Implement mremap in C
Variadic function calls in syscalls.list does not work for all ABIs
(for instance where the argument are passed on the stack instead of
registers) and might have underlying issues depending of the variadic
type (for instance if a 64-bit argument is used).
Checked on x86_64-linux-gnu.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
@ 2024-07-09 13:57 ` fweimer at redhat dot com
2024-07-09 13:58 ` fweimer at redhat dot com
` (13 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: fweimer at redhat dot com @ 2024-07-09 13:57 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
Florian Weimer <fweimer at redhat dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Flags| |security-
Assignee|unassigned at sourceware dot org |fweimer at redhat dot com
CC| |fweimer at redhat dot com
Status|NEW |ASSIGNED
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
2024-07-09 13:57 ` [Bug libc/31968] " fweimer at redhat dot com
@ 2024-07-09 13:58 ` fweimer at redhat dot com
2024-07-09 15:01 ` fweimer at redhat dot com
` (12 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: fweimer at redhat dot com @ 2024-07-09 13:58 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
Florian Weimer <fweimer at redhat dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://issues.redhat.com/b
| |rowse/RHEL-25441
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
2024-07-09 13:57 ` [Bug libc/31968] " fweimer at redhat dot com
2024-07-09 13:58 ` fweimer at redhat dot com
@ 2024-07-09 15:01 ` fweimer at redhat dot com
2024-07-09 22:13 ` hjl.tools at gmail dot com
` (11 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: fweimer at redhat dot com @ 2024-07-09 15:01 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #1 from Florian Weimer <fweimer at redhat dot com> ---
Patch posted:
[PATCH] Revert "linux: Implement mremap in C" (bug 31968)
<https://inbox.sourceware.org/libc-alpha/87msmqzk2m.fsf@oldenburg.str.redhat.com/>
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (2 preceding siblings ...)
2024-07-09 15:01 ` fweimer at redhat dot com
@ 2024-07-09 22:13 ` hjl.tools at gmail dot com
2024-07-11 3:21 ` hjl.tools at gmail dot com
` (10 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: hjl.tools at gmail dot com @ 2024-07-09 22:13 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #2 from H.J. Lu <hjl.tools at gmail dot com> ---
(In reply to Florian Weimer from comment #1)
> Patch posted:
>
> [PATCH] Revert "linux: Implement mremap in C" (bug 31968)
> <https://inbox.sourceware.org/libc-alpha/87msmqzk2m.fsf@oldenburg.str.redhat.
> com/>
Don't we need a test for MREMAP_DONTUNMAP?
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (3 preceding siblings ...)
2024-07-09 22:13 ` hjl.tools at gmail dot com
@ 2024-07-11 3:21 ` hjl.tools at gmail dot com
2024-07-12 22:38 ` hjl.tools at gmail dot com
` (9 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: hjl.tools at gmail dot com @ 2024-07-11 3:21 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #3 from H.J. Lu <hjl.tools at gmail dot com> ---
Created attachment 15615
--> https://sourceware.org/bugzilla/attachment.cgi?id=15615&action=edit
A different patch
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (4 preceding siblings ...)
2024-07-11 3:21 ` hjl.tools at gmail dot com
@ 2024-07-12 22:38 ` hjl.tools at gmail dot com
2024-07-12 22:39 ` hjl.tools at gmail dot com
` (8 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: hjl.tools at gmail dot com @ 2024-07-12 22:38 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #4 from H.J. Lu <hjl.tools at gmail dot com> ---
A different patch set with tests is at
https://patchwork.sourceware.org/project/glibc/list/?series=36193
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (5 preceding siblings ...)
2024-07-12 22:38 ` hjl.tools at gmail dot com
@ 2024-07-12 22:39 ` hjl.tools at gmail dot com
2024-08-01 12:10 ` cvs-commit at gcc dot gnu.org
` (7 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: hjl.tools at gmail dot com @ 2024-07-12 22:39 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
H.J. Lu <hjl.tools at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hjl.tools at gmail dot com
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (6 preceding siblings ...)
2024-07-12 22:39 ` hjl.tools at gmail dot com
@ 2024-08-01 12:10 ` cvs-commit at gcc dot gnu.org
2024-08-01 12:38 ` cvs-commit at gcc dot gnu.org
` (6 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 12:10 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #5 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by H.J. Lu <hjl@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6c40cb0e9f893d49dc7caee580a055de53562206
commit 6c40cb0e9f893d49dc7caee580a055de53562206
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (7 preceding siblings ...)
2024-08-01 12:10 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 12:38 ` cvs-commit at gcc dot gnu.org
2024-08-01 12:39 ` cvs-commit at gcc dot gnu.org
` (5 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 12:38 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #6 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.39/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9f349d02c6065f77b485526b3d76a637f6f079dc
commit 9f349d02c6065f77b485526b3d76a637f6f079dc
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (8 preceding siblings ...)
2024-08-01 12:38 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 12:39 ` cvs-commit at gcc dot gnu.org
2024-08-01 13:00 ` cvs-commit at gcc dot gnu.org
` (4 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 12:39 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #7 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.40/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=3433a358428bcec2d203fa408b85f442c9a465ca
commit 3433a358428bcec2d203fa408b85f442c9a465ca
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (9 preceding siblings ...)
2024-08-01 12:39 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 13:00 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:15 ` cvs-commit at gcc dot gnu.org
` (3 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 13:00 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #8 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.38/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=0301637b9931766ee389aedf3899cde756b37283
commit 0301637b9931766ee389aedf3899cde756b37283
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (10 preceding siblings ...)
2024-08-01 13:00 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 15:15 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:16 ` cvs-commit at gcc dot gnu.org
` (2 subsequent siblings)
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 15:15 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #9 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.37/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=40fb943e12041190ec38706b1d098fa0ff0910d3
commit 40fb943e12041190ec38706b1d098fa0ff0910d3
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (11 preceding siblings ...)
2024-08-01 15:15 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 15:16 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:30 ` cvs-commit at gcc dot gnu.org
2024-09-06 14:33 ` fweimer at redhat dot com
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 15:16 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #10 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.36/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ab482a557d4a34a913b49fad4b3bd3bf7f1d70bd
commit ab482a557d4a34a913b49fad4b3bd3bf7f1d70bd
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (12 preceding siblings ...)
2024-08-01 15:16 ` cvs-commit at gcc dot gnu.org
@ 2024-08-01 15:30 ` cvs-commit at gcc dot gnu.org
2024-09-06 14:33 ` fweimer at redhat dot com
14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2024-08-01 15:30 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
--- Comment #11 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The release/2.35/master branch has been updated by Florian Weimer
<fw@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=7459b6fe4773ff36d20e6f0890d6e40fbd803ea2
commit 7459b6fe4773ff36d20e6f0890d6e40fbd803ea2
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Wed Jul 24 14:05:13 2024 -0700
linux: Update the mremap C implementation [BZ #31968]
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets. Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.
Note: A test must be added when a new flag bit is introduced.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [Bug libc/31968] mremap implementation in C does not handle arguments correctly
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
` (13 preceding siblings ...)
2024-08-01 15:30 ` cvs-commit at gcc dot gnu.org
@ 2024-09-06 14:33 ` fweimer at redhat dot com
14 siblings, 0 replies; 16+ messages in thread
From: fweimer at redhat dot com @ 2024-09-06 14:33 UTC (permalink / raw)
To: glibc-bugs
https://sourceware.org/bugzilla/show_bug.cgi?id=31968
Florian Weimer <fweimer at redhat dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
Target Milestone|--- |2.41
Status|ASSIGNED |RESOLVED
--- Comment #12 from Florian Weimer <fweimer at redhat dot com> ---
Fixed.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-09-06 14:33 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-09 13:57 [Bug libc/31968] New: mremap implementation in C does not handle arguments correctly fweimer at redhat dot com
2024-07-09 13:57 ` [Bug libc/31968] " fweimer at redhat dot com
2024-07-09 13:58 ` fweimer at redhat dot com
2024-07-09 15:01 ` fweimer at redhat dot com
2024-07-09 22:13 ` hjl.tools at gmail dot com
2024-07-11 3:21 ` hjl.tools at gmail dot com
2024-07-12 22:38 ` hjl.tools at gmail dot com
2024-07-12 22:39 ` hjl.tools at gmail dot com
2024-08-01 12:10 ` cvs-commit at gcc dot gnu.org
2024-08-01 12:38 ` cvs-commit at gcc dot gnu.org
2024-08-01 12:39 ` cvs-commit at gcc dot gnu.org
2024-08-01 13:00 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:15 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:16 ` cvs-commit at gcc dot gnu.org
2024-08-01 15:30 ` cvs-commit at gcc dot gnu.org
2024-09-06 14:33 ` 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).