diff --git a/SOURCES/glibc-RHEL-145156-1.patch b/SOURCES/glibc-RHEL-145156-1.patch new file mode 100644 index 0000000..d591eea --- /dev/null +++ b/SOURCES/glibc-RHEL-145156-1.patch @@ -0,0 +1,206 @@ +commit 0981c03c2752b5f12ede24e6e696d5a29f7c6396 +Author: Frédéric Bérat +Date: Wed Apr 29 15:53:51 2026 +0200 + + libio: Fix gconv module reference counter overflow in swscanf + + The swscanf family of functions creates a wide-oriented FILE stream + on the stack. Initialization of this stream invokes `_IO_fwide`, which + clones the global locale's gconv transformation steps via + `__wcsmbs_clone_conv`. This increments the reference counter (`__counter`) + of the gconv module. + + Because the FILE stream is stack-allocated, `fclose` cannot be called, + and so `__gconv_release_step` is never invoked. The counter leaks, + eventually hitting the 32-bit integer overflow limit and aborting the + process. + + To resolve this, we introduce `_IO_wstrfile_fclose_stack`, a dedicated + cleanup function for stack-allocated FILE streams. This function invokes + `_IO_FINISH` and correctly releases the gconv steps via + `__gconv_release_step` without attempting to `free` the FILE pointer. + This cleanup function is then hooked into all variants of swscanf right + before they return. + + Reviewed-by: Adhemerval Zanella + +Conflicts: + sysdeps/ieee754/ldbl-opt/nldbl-compat.c + (isoc23 variants not present downstream) + sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc23_swscanf.c + (not present downstream) + sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc23_vswscanf.c + (not present downstream) + wcsmbs/isoc23_swscanf.c + (not present downstream) + wcsmbs/isoc23_vswscanf.c + (not present downstream) + +diff --git a/libio/iofwide.c b/libio/iofwide.c +index a7f29fa0b9693cc3..972f154365e88bb3 100644 +--- a/libio/iofwide.c ++++ b/libio/iofwide.c +@@ -257,3 +257,18 @@ __libio_codecvt_length (struct _IO_codecvt *codecvt, __mbstate_t *statep, + + return result; + } ++ ++void ++_IO_wstrfile_fclose_stack (FILE *fp) ++{ ++ _IO_FINISH (fp); ++ if (fp->_mode > 0) ++ { ++ struct _IO_codecvt *cc = fp->_codecvt; ++ ++ __libc_lock_lock (__gconv_lock); ++ __gconv_release_step (cc->__cd_in.step); ++ __gconv_release_step (cc->__cd_out.step); ++ __libc_lock_unlock (__gconv_lock); ++ } ++} +diff --git a/libio/iovswscanf.c b/libio/iovswscanf.c +index 35bddc0daeca917f..284c61615ebddd47 100644 +--- a/libio/iovswscanf.c ++++ b/libio/iovswscanf.c +@@ -38,6 +38,8 @@ __vswscanf (const wchar_t *string, const wchar_t *format, va_list args) + _IO_strfile sf; + struct _IO_wide_data wd; + FILE *f = _IO_strfile_readw (&sf, &wd, string); +- return __vfwscanf_internal (f, format, args, 0); ++ int done = __vfwscanf_internal (f, format, args, 0); ++ _IO_wstrfile_fclose_stack (f); ++ return done; + } + ldbl_weak_alias (__vswscanf, vswscanf) +diff --git a/libio/libioP.h b/libio/libioP.h +index 50570f89de5a7010..76fd7853dc087bf9 100644 +--- a/libio/libioP.h ++++ b/libio/libioP.h +@@ -594,6 +594,7 @@ extern FILE* _IO_new_file_fopen (FILE *, const char *, const char *, + int); + extern void _IO_no_init (FILE *, int, int, struct _IO_wide_data *, + const struct _IO_jump_t *) __THROW; ++extern void _IO_wstrfile_fclose_stack (FILE *) attribute_hidden; + extern void _IO_new_file_init_internal (struct _IO_FILE_plus *) + __THROW attribute_hidden; + extern FILE* _IO_new_file_setbuf (FILE *, char *, ssize_t); +diff --git a/libio/swscanf.c b/libio/swscanf.c +index 88a19144342cdc38..cb3795599c6f70c6 100644 +--- a/libio/swscanf.c ++++ b/libio/swscanf.c +@@ -37,7 +37,7 @@ __swscanf (const wchar_t *s, const wchar_t *format, ...) + va_start (arg, format); + done = __vfwscanf_internal (f, format, arg, 0); + va_end (arg); +- ++ _IO_wstrfile_fclose_stack (f); + return done; + } + ldbl_strong_alias (__swscanf, swscanf) +diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_swscanf.c b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_swscanf.c +index ef8c1317dcd7f5e5..96bf2ac3559186e7 100644 +--- a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_swscanf.c ++++ b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_swscanf.c +@@ -34,7 +34,7 @@ ___ieee128_isoc99_swscanf (const wchar_t *string, const wchar_t *format, ...) + va_start (ap, format); + done = __vfwscanf_internal (fp, format, ap, mode_flags); + va_end (ap); +- ++ _IO_wstrfile_fclose_stack (fp); + return done; + } + strong_alias (___ieee128_isoc99_swscanf, __isoc99_swscanfieee128) +diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_vswscanf.c b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_vswscanf.c +index f77bb64638a4717f..8fa10ee2e22e238f 100644 +--- a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_vswscanf.c ++++ b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-isoc99_vswscanf.c +@@ -27,6 +27,8 @@ ___ieee128_isoc99_vswscanf (wchar_t *string, const wchar_t *format, va_list ap) + struct _IO_wide_data wd; + FILE *fp = _IO_strfile_readw (&sf, &wd, string); + int mode_flags = SCANF_ISOC99_A | SCANF_LDBL_USES_FLOAT128; +- return __vfwscanf_internal (fp, format, ap, mode_flags); ++ int done = __vfwscanf_internal (fp, format, ap, mode_flags); ++ _IO_wstrfile_fclose_stack (fp); ++ return done; + } + strong_alias (___ieee128_isoc99_vswscanf, __isoc99_vswscanfieee128) +diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-swscanf.c b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-swscanf.c +index 04ee5419200298b1..509eaa663d0a9a33 100644 +--- a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-swscanf.c ++++ b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-swscanf.c +@@ -34,7 +34,7 @@ ___ieee128_swscanf (const wchar_t *string, const wchar_t *format, ...) + done = __vfwscanf_internal (fp, format, ap, + SCANF_LDBL_USES_FLOAT128); + va_end (ap); +- ++ _IO_wstrfile_fclose_stack (fp); + return done; + } + strong_alias (___ieee128_swscanf, __swscanfieee128) +diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-vswscanf.c b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-vswscanf.c +index 7aebc5f1c12939b6..18aa6deaacdde682 100644 +--- a/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-vswscanf.c ++++ b/sysdeps/ieee754/ldbl-128ibm-compat/ieee128-vswscanf.c +@@ -27,6 +27,8 @@ ___ieee128_vswscanf (const wchar_t *string, const wchar_t *format, + _IO_strfile sf; + struct _IO_wide_data wd; + FILE *fp = _IO_strfile_readw (&sf, &wd, string); +- return __vfwscanf_internal (fp, format, ap, SCANF_LDBL_USES_FLOAT128); ++ int done = __vfwscanf_internal (fp, format, ap, SCANF_LDBL_USES_FLOAT128); ++ _IO_wstrfile_fclose_stack (fp); ++ return done; + } + strong_alias (___ieee128_vswscanf, __vswscanfieee128) +diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c +index a6c5c49ecb151bf5..81d53a4cf30acb89 100644 +--- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.c ++++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.c +@@ -388,7 +388,9 @@ __nldbl_vswscanf (const wchar_t *s, const wchar_t *fmt, va_list ap) + struct _IO_wide_data wd; + FILE *f = _IO_strfile_readw (&sf, &wd, s); + +- return __vfwscanf_internal (f, fmt, ap, SCANF_LDBL_IS_DBL); ++ int ret = __vfwscanf_internal (f, fmt, ap, SCANF_LDBL_IS_DBL); ++ _IO_wstrfile_fclose_stack (f); ++ return ret; + } + libc_hidden_def (__nldbl_vswscanf) + +@@ -952,7 +954,9 @@ __nldbl___isoc99_vswscanf (const wchar_t *s, const wchar_t *fmt, va_list ap) + struct _IO_wide_data wd; + FILE *f = _IO_strfile_readw (&sf, &wd, s); + +- return __vfwscanf_internal (f, fmt, ap, SCANF_LDBL_IS_DBL | SCANF_ISOC99_A); ++ int ret = __vfwscanf_internal (f, fmt, ap, SCANF_LDBL_IS_DBL | SCANF_ISOC99_A); ++ _IO_wstrfile_fclose_stack (f); ++ return ret; + } + libc_hidden_def (__nldbl___isoc99_vswscanf) + +diff --git a/wcsmbs/isoc99_swscanf.c b/wcsmbs/isoc99_swscanf.c +index bb6d8f2035d8e4a4..3fda1f7be695b31e 100644 +--- a/wcsmbs/isoc99_swscanf.c ++++ b/wcsmbs/isoc99_swscanf.c +@@ -32,6 +32,6 @@ __isoc99_swscanf (const wchar_t *s, const wchar_t *format, ...) + va_start (arg, format); + done = __vfwscanf_internal (f, format, arg, SCANF_ISOC99_A); + va_end (arg); +- ++ _IO_wstrfile_fclose_stack (f); + return done; + } +diff --git a/wcsmbs/isoc99_vswscanf.c b/wcsmbs/isoc99_vswscanf.c +index 3cd0a28c21ffa36f..1df90438416d3bb7 100644 +--- a/wcsmbs/isoc99_vswscanf.c ++++ b/wcsmbs/isoc99_vswscanf.c +@@ -33,6 +33,8 @@ __isoc99_vswscanf (const wchar_t *string, const wchar_t *format, va_list args) + _IO_strfile sf; + struct _IO_wide_data wd; + FILE *f = _IO_strfile_readw (&sf, &wd, string); +- return __vfwscanf_internal (f, format, args, SCANF_ISOC99_A); ++ int done = __vfwscanf_internal (f, format, args, SCANF_ISOC99_A); ++ _IO_wstrfile_fclose_stack (f); ++ return done; + } + libc_hidden_def (__isoc99_vswscanf) diff --git a/SOURCES/glibc-RHEL-145156-2.patch b/SOURCES/glibc-RHEL-145156-2.patch new file mode 100644 index 0000000..01b7d9c --- /dev/null +++ b/SOURCES/glibc-RHEL-145156-2.patch @@ -0,0 +1,57 @@ +libio: Fix gconv module reference counter overflow in vswprintf + +The vswprintf family of functions (swprintf, vswprintf and their +fortified/ldbl-compat wrappers) creates a wide-oriented FILE stream +on the stack via _IO_no_init with _IO_wstrn_jumps, then calls +_IO_fwide which clones the gconv transformation steps via +__wcsmbs_clone_conv, incrementing the __counter reference counter. + +Because the FILE is stack-allocated, fclose is never called, and the +counter is never decremented. In a long-running process calling +swprintf repeatedly with a non-builtin locale (e.g. en_US.UTF-8), +the counter eventually overflows, triggering a fatal abort. + +This is the same class of bug fixed upstream for swscanf in commit +0981c03c2752b5f12ede24e6e696d5a29f7c6396. Upstream resolved the +swprintf path architecturally by reworking the printf subsystem to +use struct __wprintf_buffer instead of FILE * (commit 118816de3383), +eliminating the _IO_fwide call entirely. That rework is too large +to backport to glibc 2.34. + +Instead, apply the same pattern as the swscanf fix: call +_IO_wstrfile_fclose_stack after __vfwprintf_internal returns to +release the gconv steps before the stack FILE goes out of scope. +All ldbl-compat wrappers (ieee128, nldbl) call __vswprintf_internal, +so they are covered by this single change. + +Note: _IO_wstrfile_fclose_stack calls _IO_FINISH which invokes +_IO_wstr_finish, and that NULLs out _IO_buf_base. Therefore the +cleanup must happen after the overflow check (which compares +_IO_buf_base against overflow_buf) and after string termination +(which dereferences _IO_write_ptr). + +diff --git a/libio/vswprintf.c b/libio/vswprintf.c +index b7036f1480733ac6..accbb8516f860680 100644 +--- a/libio/vswprintf.c ++++ b/libio/vswprintf.c +@@ -111,13 +111,17 @@ __vswprintf_internal (wchar_t *string, size_t maxlen, const wchar_t *format, + ret = __vfwprintf_internal ((FILE *) &sf.f._sbf, format, args, mode_flags); + + if (sf.f._sbf._f._wide_data->_IO_buf_base == sf.overflow_buf) +- /* ISO C99 requires swprintf/vswprintf to return an error if the +- output does not fit in the provided buffer. */ +- return -1; ++ { ++ /* ISO C99 requires swprintf/vswprintf to return an error if the ++ output does not fit in the provided buffer. */ ++ _IO_wstrfile_fclose_stack ((FILE *) &sf.f._sbf); ++ return -1; ++ } + + /* Terminate the string. */ + *sf.f._sbf._f._wide_data->_IO_write_ptr = '\0'; + ++ _IO_wstrfile_fclose_stack ((FILE *) &sf.f._sbf); + return ret; + } + diff --git a/SOURCES/glibc-RHEL-145156-3.patch b/SOURCES/glibc-RHEL-145156-3.patch new file mode 100644 index 0000000..78b117e --- /dev/null +++ b/SOURCES/glibc-RHEL-145156-3.patch @@ -0,0 +1,123 @@ +commit 1cc165baed20b6589ef2f2c8c0e0415139bbb151 +Author: Frédéric Bérat +Date: Wed Apr 29 13:26:38 2026 +0200 + + test: Add gconv refcount leak test for swscanf + + Add a new internal test, `tst-wcsmbs-clone-overflow`, to verify correct + gconv module reference counting. The Makefile is updated to include this + test in the `tests-internal` list and ensure it runs with generated locales. + + This test specifically checks that the `__counter` for `gconv_fcts->towc` + does not leak references when `swscanf` is used with a stack-allocated + wide character stream. It ensures that `_IO_wstrfile_fclose_stack` + properly decrements the module reference counter, preventing a module + from staying loaded indefinitely due to unreleased references. + + Assisted-by: LLM + Reviewed-by: Adhemerval Zanella + +Conflicts: + wcsmbs/Makefile + (test-c8rtomb, test-mbrtoc8, tst-wscanf-to_inpunct not present + downstream) + wcsmbs/tst-wcsmbs-clone-overflow.c + (struct lc_ctype_data not present downstream; use + loc->private.ctype directly instead) + +diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile +index 0e5fe909a83c7a13..f74b06d9749eaa02 100644 +--- a/wcsmbs/Makefile ++++ b/wcsmbs/Makefile +@@ -59,6 +59,12 @@ tests := tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-btowc tst-mbrtowc \ + # This test runs for a long time. + xtests += test-wcsncmp-nonarray + ++tests-internal += \ ++ tst-wcsmbs-clone-overflow ++ ++tests-static += \ ++ tst-wcsmbs-clone-overflow ++ + + include ../Rules + +@@ -77,6 +83,7 @@ $(objpfx)tst-wcstol-locale.out: $(gen-locales) + $(objpfx)tst-wcstod-nan-locale.out: $(gen-locales) + $(objpfx)tst-c16-surrogate.out: $(gen-locales) + $(objpfx)tst-c32-state.out: $(gen-locales) ++$(objpfx)tst-wcsmbs-clone-overflow.out: $(gen-locales) + endif + + $(objpfx)tst-wcstod-round: $(libm) +diff --git a/wcsmbs/tst-wcsmbs-clone-overflow.c b/wcsmbs/tst-wcsmbs-clone-overflow.c +new file mode 100644 +index 0000000000000000..412e1c54085c68d5 +--- /dev/null ++++ b/wcsmbs/tst-wcsmbs-clone-overflow.c +@@ -0,0 +1,65 @@ ++/* Test for gconv module reference counter leak. ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Internal headers for accessing the gconv structures. */ ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ if (setlocale (LC_ALL, "de_DE.ISO-8859-1") == NULL) ++ FAIL_EXIT1 ("setlocale failed, check if de_DE.ISO-8859-1 is generated"); ++ ++ wchar_t buf[32] = L"123"; ++ int j; ++ ++ /* First iteration initializes the gconv functions internally. */ ++ if (swscanf (buf, L"%d", &j) < 1) ++ FAIL_EXIT1 ("swscanf failed"); ++ ++ /* Retrieve the current gconv_fcts from the LC_CTYPE locale data. */ ++ struct __locale_data *loc = _NL_CURRENT_DATA (LC_CTYPE); ++ const struct gconv_fcts *fcts = loc->private.ctype; ++ ++ TEST_VERIFY_EXIT (fcts != NULL); ++ TEST_VERIFY_EXIT (fcts->towc != NULL); ++ ++ /* Capture the reference counter. */ ++ int initial_counter = fcts->towc->__counter; ++ ++ /* Perform a second iteration of swscanf. If the stack-allocated FILE ++ leaks the gconv reference, the counter will increment. */ ++ if (swscanf (buf, L"%d", &j) < 1) ++ FAIL_EXIT1 ("swscanf failed"); ++ ++ /* The counter should be unchanged, as _IO_wstrfile_fclose_stack should ++ have decremented it correctly. */ ++ TEST_COMPARE (fcts->towc->__counter, initial_counter); ++ ++ return 0; ++} ++ ++#include diff --git a/SOURCES/glibc-RHEL-145156-4.patch b/SOURCES/glibc-RHEL-145156-4.patch new file mode 100644 index 0000000..62dec63 --- /dev/null +++ b/SOURCES/glibc-RHEL-145156-4.patch @@ -0,0 +1,146 @@ +commit 9ef37798fa7dc2b10926742e3f3bd304a17a9ad1 +Author: Frédéric Bérat +Date: Tue May 26 13:29:57 2026 +0200 + + test: Fix and stabilize tst-wcsmbs-clone-overflow test + + The test tst-wcsmbs-clone-overflow was initially added to tests-static. + However, this causes the test to be unstable because gconv modules + dynamically load libc.so. Any discrepancy between the statically linked + version and the dynamically loaded one can lead to a crash. + + By removing the test from tests-static, it relies on dynamic linking, + safely bypassing the dlopen crash. Since the test is now dynamically + linked, it cannot use the internal thread-local symbol + _NL_CURRENT_DATA(LC_CTYPE) because _nl_current_LC_CTYPE is hidden in + libc.so, leading to undefined references. Thus, the test now uses + newlocale and uselocale, safely extracting the locale data from the + returned locale_t object. + + Furthermore, using newlocale requires the gconv-modules configuration to + be built and available so that the ISO8859-1.so module can be + dynamically loaded. Otherwise, glibc falls back to the built-in C locale + conversions, leaving __shlib_handle as NULL and silently bypassing the + reference counter increment. + A new Makefile fragment, gen-gconv-modules.mk, is introduced to ensure + the gconv-modules are built before the test runs, and an explicit check + for __shlib_handle != NULL is added to the test. + + Reviewed-by: Carlos O'Donell + +Conflicts: + wcsmbs/Makefile + (test-c8rtomb, test-mbrtoc8, tst-wscanf-to_inpunct not present + downstream) + wcsmbs/tst-wcsmbs-clone-overflow.c + (struct lc_ctype_data not present downstream; use + loc->private.ctype directly instead) + +diff --git a/gen-gconv-modules.mk b/gen-gconv-modules.mk +new file mode 100644 +index 0000000000000000..046721a7a7bf460c +--- /dev/null ++++ b/gen-gconv-modules.mk +@@ -0,0 +1,6 @@ ++# defines target $(gen-gconv-modules) that ensures gconv-modules are available ++ ++gen-gconv-modules := $(common-objpfx)iconvdata/gconv-modules ++ ++$(gen-gconv-modules): ++ $(MAKE) -C ../iconvdata subdir=iconvdata $@ +diff --git a/localedata/Makefile b/localedata/Makefile +index 56de42e9262decd3..0cc02c430d96d804 100644 +--- a/localedata/Makefile ++++ b/localedata/Makefile +@@ -204,7 +204,7 @@ install-others := $(addprefix $(inst_i18ndir)/, \ + $(locales)) + endif + +-tests: $(objdir)/iconvdata/gconv-modules ++tests: $(gen-gconv-modules) + + tests-static += tst-langinfo-newlocale-static tst-langinfo-setlocale-static + +@@ -315,6 +315,7 @@ LOCALES := \ + $(NULL) + + include ../gen-locales.mk ++include ../gen-gconv-modules.mk + + $(objpfx)tst-iconv-math-trans.out: $(gen-locales) + endif +@@ -486,6 +487,3 @@ $(objpfx)mtrace-tst-leaks.out: $(objpfx)tst-leaks.out + + bug-setlocale1-ENV-only = LOCPATH=$(objpfx) LC_CTYPE=de_DE.UTF-8 + bug-setlocale1-static-ENV-only = $(bug-setlocale1-ENV-only) +- +-$(objdir)/iconvdata/gconv-modules: +- $(MAKE) -C ../iconvdata subdir=iconvdata $@ +diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile +index f74b06d9749eaa02..bb03d92576700a99 100644 +--- a/wcsmbs/Makefile ++++ b/wcsmbs/Makefile +@@ -62,16 +62,13 @@ xtests += test-wcsncmp-nonarray + tests-internal += \ + tst-wcsmbs-clone-overflow + +-tests-static += \ +- tst-wcsmbs-clone-overflow +- +- + include ../Rules + + ifeq ($(run-built-tests),yes) + LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 hr_HR.ISO-8859-2 \ + ja_JP.EUC-JP zh_TW.EUC-TW tr_TR.UTF-8 tr_TR.ISO-8859-9 + include ../gen-locales.mk ++include ../gen-gconv-modules.mk + + $(objpfx)tst-btowc.out: $(gen-locales) + $(objpfx)tst-c16c32-1.out: $(gen-locales) +@@ -83,7 +80,7 @@ $(objpfx)tst-wcstol-locale.out: $(gen-locales) + $(objpfx)tst-wcstod-nan-locale.out: $(gen-locales) + $(objpfx)tst-c16-surrogate.out: $(gen-locales) + $(objpfx)tst-c32-state.out: $(gen-locales) +-$(objpfx)tst-wcsmbs-clone-overflow.out: $(gen-locales) ++$(objpfx)tst-wcsmbs-clone-overflow.out: $(gen-locales) $(gen-gconv-modules) + endif + + $(objpfx)tst-wcstod-round: $(libm) +diff --git a/wcsmbs/tst-wcsmbs-clone-overflow.c b/wcsmbs/tst-wcsmbs-clone-overflow.c +index 412e1c54085c68d5..6d8b643f48aa7775 100644 +--- a/wcsmbs/tst-wcsmbs-clone-overflow.c ++++ b/wcsmbs/tst-wcsmbs-clone-overflow.c +@@ -30,8 +30,11 @@ + static int + do_test (void) + { +- if (setlocale (LC_ALL, "de_DE.ISO-8859-1") == NULL) +- FAIL_EXIT1 ("setlocale failed, check if de_DE.ISO-8859-1 is generated"); ++ locale_t loc_obj = newlocale (LC_ALL_MASK, "de_DE.ISO-8859-1", NULL); ++ if (loc_obj == NULL) ++ FAIL_EXIT1 ("newlocale failed, check if de_DE.ISO-8859-1 is generated"); ++ ++ uselocale (loc_obj); + + wchar_t buf[32] = L"123"; + int j; +@@ -41,7 +44,7 @@ do_test (void) + FAIL_EXIT1 ("swscanf failed"); + + /* Retrieve the current gconv_fcts from the LC_CTYPE locale data. */ +- struct __locale_data *loc = _NL_CURRENT_DATA (LC_CTYPE); ++ struct __locale_data *loc = loc_obj->__locales[LC_CTYPE]; + const struct gconv_fcts *fcts = loc->private.ctype; + + TEST_VERIFY_EXIT (fcts != NULL); +@@ -50,6 +53,9 @@ do_test (void) + /* Capture the reference counter. */ + int initial_counter = fcts->towc->__counter; + ++ if (fcts->towc->__shlib_handle == NULL) ++ FAIL_EXIT1 ("__shlib_handle is NULL!"); ++ + /* Perform a second iteration of swscanf. If the stack-allocated FILE + leaks the gconv reference, the counter will increment. */ + if (swscanf (buf, L"%d", &j) < 1) diff --git a/SOURCES/glibc-RHEL-145156-5.patch b/SOURCES/glibc-RHEL-145156-5.patch new file mode 100644 index 0000000..41d91fd --- /dev/null +++ b/SOURCES/glibc-RHEL-145156-5.patch @@ -0,0 +1,111 @@ +test: Add gconv refcount leak test for swprintf + +Add a new internal test, tst-wcsmbs-clone-overflow-swprintf, to verify +correct gconv module reference counting for the swprintf path. + +This is the swprintf counterpart to tst-wcsmbs-clone-overflow (which +tests swscanf). The vswprintf/swprintf family creates a wide-oriented +stack-allocated FILE stream via _IO_no_init and _IO_fwide, which clones +the gconv transformation steps. This test verifies that the __counter +for gconv_fcts->towc does not leak references after swprintf returns, +confirming that _IO_wstrfile_fclose_stack properly releases the gconv +steps. + +diff --git a/wcsmbs/Makefile b/wcsmbs/Makefile +index bb03d92576700a99..252630457146de35 100644 +--- a/wcsmbs/Makefile ++++ b/wcsmbs/Makefile +@@ -60,7 +60,8 @@ tests := tst-wcstof wcsmbs-tst1 tst-wcsnlen tst-btowc tst-mbrtowc \ + xtests += test-wcsncmp-nonarray + + tests-internal += \ +- tst-wcsmbs-clone-overflow ++ tst-wcsmbs-clone-overflow \ ++ tst-wcsmbs-clone-overflow-swprintf + + include ../Rules + +@@ -81,6 +82,7 @@ $(objpfx)tst-wcstod-nan-locale.out: $(gen-locales) + $(objpfx)tst-c16-surrogate.out: $(gen-locales) + $(objpfx)tst-c32-state.out: $(gen-locales) + $(objpfx)tst-wcsmbs-clone-overflow.out: $(gen-locales) $(gen-gconv-modules) ++$(objpfx)tst-wcsmbs-clone-overflow-swprintf.out: $(gen-locales) $(gen-gconv-modules) + endif + + $(objpfx)tst-wcstod-round: $(libm) +diff --git a/wcsmbs/tst-wcsmbs-clone-overflow-swprintf.c b/wcsmbs/tst-wcsmbs-clone-overflow-swprintf.c +new file mode 100644 +index 0000000000000000..daccb08e6352a943 +--- /dev/null ++++ b/wcsmbs/tst-wcsmbs-clone-overflow-swprintf.c +@@ -0,0 +1,70 @@ ++/* Test for gconv module reference counter leak in swprintf. ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Internal headers for accessing the gconv structures. */ ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ locale_t loc_obj = newlocale (LC_ALL_MASK, "de_DE.ISO-8859-1", NULL); ++ if (loc_obj == NULL) ++ FAIL_EXIT1 ("newlocale failed, check if de_DE.ISO-8859-1 is generated"); ++ ++ uselocale (loc_obj); ++ ++ wchar_t buf[32]; ++ ++ /* First iteration initializes the gconv functions internally. */ ++ if (swprintf (buf, sizeof (buf) / sizeof (buf[0]), L"%d", 123) < 0) ++ FAIL_EXIT1 ("swprintf failed"); ++ ++ /* Retrieve the current gconv_fcts from the LC_CTYPE locale data. */ ++ struct __locale_data *loc = loc_obj->__locales[LC_CTYPE]; ++ const struct gconv_fcts *fcts = loc->private.ctype; ++ ++ TEST_VERIFY_EXIT (fcts != NULL); ++ TEST_VERIFY_EXIT (fcts->towc != NULL); ++ ++ /* Capture the reference counter. */ ++ int initial_counter = fcts->towc->__counter; ++ ++ if (fcts->towc->__shlib_handle == NULL) ++ FAIL_EXIT1 ("__shlib_handle is NULL!"); ++ ++ /* Perform a second iteration of swprintf. If the stack-allocated FILE ++ leaks the gconv reference, the counter will increment. */ ++ if (swprintf (buf, sizeof (buf) / sizeof (buf[0]), L"%d", 456) < 0) ++ FAIL_EXIT1 ("swprintf failed"); ++ ++ /* The counter should be unchanged, as _IO_wstrfile_fclose_stack should ++ have decremented it correctly. */ ++ TEST_COMPARE (fcts->towc->__counter, initial_counter); ++ ++ return 0; ++} ++ ++#include diff --git a/SOURCES/glibc-RHEL-172710-1.patch b/SOURCES/glibc-RHEL-172710-1.patch new file mode 100644 index 0000000..1bd6427 --- /dev/null +++ b/SOURCES/glibc-RHEL-172710-1.patch @@ -0,0 +1,126 @@ +commit 839898777226a3ed88c0859f25ffe712519b4ead +Author: Rocket Ma +Date: Fri Apr 17 23:48:41 2026 -0700 + + stdio-common: Fix buffer overflow in scanf %mc [BZ #34008] + + * stdio-common/vfscanf-internal.c: When enlarging allocated buffer with + format %mc or %mC, glibc allocates one byte less, leading to + user-controlled one byte overflow. This commit fixes BZ #34008, or + CVE-2026-5450. + + Reviewed-by: Carlos O'Donell + Signed-off-by: Rocket Ma + Reviewed-by: H.J. Lu + +Conflicts: + stdio-common/Makefile + (usual test differences) + +diff -Nrup a/stdio-common/Makefile b/stdio-common/Makefile +--- a/stdio-common/Makefile 2026-06-16 08:24:01.348860456 -0400 ++++ b/stdio-common/Makefile 2026-06-16 08:18:22.791126117 -0400 +@@ -290,6 +290,7 @@ tests := \ + tst-vfprintf-mbs-prec \ + tst-vfprintf-user-type \ + tst-vfprintf-width-prec-alloc \ ++ tst-vfscanf-bz34008 \ + tst-wc-printf \ + tstdiomisc \ + tstgetln \ +@@ -441,6 +442,9 @@ tst-printf-bz18872-ENV = MALLOC_TRACE=$( + tst-vfprintf-width-prec-ENV = \ + MALLOC_TRACE=$(objpfx)tst-vfprintf-width-prec.mtrace \ + LD_PRELOAD=$(common-objpfx)/malloc/libc_malloc_debug.so ++tst-vfscanf-bz34008-ENV = \ ++ MALLOC_CHECK_=3 \ ++ LD_PRELOAD=$(common-objpfx)/malloc/libc_malloc_debug.so + tst-printf-bz25691-ENV = \ + MALLOC_TRACE=$(objpfx)tst-printf-bz25691.mtrace \ + LD_PRELOAD=$(common-objpfx)/malloc/libc_malloc_debug.so +diff --git a/stdio-common/tst-vfscanf-bz34008.c b/stdio-common/tst-vfscanf-bz34008.c +new file mode 100644 +index 0000000000..48371c8a3d +--- /dev/null ++++ b/stdio-common/tst-vfscanf-bz34008.c +@@ -0,0 +1,48 @@ ++/* Regression test for vfscanf %Nmc out-of-bound write (BZ #34008) ++ Copyright (C) 2026 The GNU Toolchain Authors. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include "malloc/mcheck.h" ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#define WIDTH 0x410 ++#define SCANFSTR "%1040mc" ++static int ++do_test (void) ++{ ++ mcheck_pedantic (NULL); ++ char *input = malloc (WIDTH + 1); ++ TEST_VERIFY (input != NULL); ++ memset (input, 'A', WIDTH); ++ input[WIDTH] = '\0'; ++ ++ char *buf = NULL; ++ TEST_VERIFY (sscanf (input, SCANFSTR, &buf) != -1); ++ TEST_VERIFY (buf != NULL); ++ ++ free (buf); ++ free (input); ++ return 0; ++} ++ ++#include +diff --git a/stdio-common/vfscanf-internal.c b/stdio-common/vfscanf-internal.c +index 59fc8208aa..3d11ac261e 100644 +--- a/stdio-common/vfscanf-internal.c ++++ b/stdio-common/vfscanf-internal.c +@@ -855,8 +855,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + { + /* Enlarge the buffer. */ + size_t newsize +- = strsize +- + (strsize >= width ? width - 1 : strsize); ++ = strsize + (strsize >= width ? width : strsize); + + str = (char *) realloc (*strptr, newsize); + if (str == NULL) +@@ -929,7 +928,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + && wstr == (wchar_t *) *strptr + strsize) + { + size_t newsize +- = strsize + (strsize > width ? width - 1 : strsize); ++ = strsize + (strsize >= width ? width : strsize); + /* Enlarge the buffer. */ + wstr = (wchar_t *) realloc (*strptr, + newsize * sizeof (wchar_t)); +@@ -984,7 +983,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + && wstr == (wchar_t *) *strptr + strsize) + { + size_t newsize +- = strsize + (strsize > width ? width - 1 : strsize); ++ = strsize + (strsize >= width ? width : strsize); + /* Enlarge the buffer. */ + wstr = (wchar_t *) realloc (*strptr, + newsize * sizeof (wchar_t)); diff --git a/SOURCES/glibc-RHEL-172710-2.patch b/SOURCES/glibc-RHEL-172710-2.patch new file mode 100644 index 0000000..a334a8c --- /dev/null +++ b/SOURCES/glibc-RHEL-172710-2.patch @@ -0,0 +1,80 @@ +commit b866ef29773b22a1343ff9084374775114350b78 +Author: Maciej W. Rozycki +Date: Wed May 27 12:57:10 2026 -0400 + + support: Implement 'xfmemopen' for seamless 'fmemopen' use + + Add 'xfmemopen' wrapper for seamless 'fmemopen' use in tests, following + 'xfopen', 'xfclose', etc., and providing a standardized error reporting + facility. + + Reviewed-by: Florian Weimer + (cherry picked from commit fe709cc24578ecfd2ff5b07e10e3829fcb55075b) + + Reviewed-by: Carlos O'Donell + +Conflicts: + support/Makefile + (usual test differences) + support/xstdio.h + (adjust for downstream context difference) + +diff -Nrup a/support/Makefile b/support/Makefile +--- a/support/Makefile 2026-06-16 10:34:13.241874132 -0400 ++++ b/support/Makefile 2026-06-16 10:37:06.085172353 -0400 +@@ -135,6 +135,7 @@ libsupport-routines = \ + xfchmod \ + xfclose \ + xfdopendir \ ++ xfmemopen \ + xfopen \ + xfork \ + xfread \ +diff --git a/support/xfmemopen.c b/support/xfmemopen.c +new file mode 100644 +index 0000000000..f1dbc72c67 +--- /dev/null ++++ b/support/xfmemopen.c +@@ -0,0 +1,31 @@ ++/* fmemopen with error checking. ++ Copyright (C) 2025 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++ ++#include ++#include ++ ++FILE * ++xfmemopen (void *mem, size_t len, const char *mode) ++{ ++ FILE *fp = fmemopen (mem, len, mode); ++ if (fp == NULL) ++ FAIL_EXIT1 ("fmemopen (mode \"%s\"): %m", mode); ++ return fp; ++} +diff -Nrup a/support/xstdio.h b/support/xstdio.h +--- a/support/xstdio.h 2026-06-16 10:34:10.450856660 -0400 ++++ b/support/xstdio.h 2026-06-16 10:39:05.792825780 -0400 +@@ -26,6 +26,7 @@ __BEGIN_DECLS + + FILE *xfopen (const char *path, const char *mode); + void xfclose (FILE *); ++FILE *xfmemopen (void *mem, size_t len, const char *mode); + void xfread (void *ptr, size_t size, size_t nmemb, FILE *stream); + + /* Read a line from FP, using getline. *BUFFER must be NULL, or a diff --git a/SOURCES/glibc-RHEL-172710-3.patch b/SOURCES/glibc-RHEL-172710-3.patch new file mode 100644 index 0000000..6bfe8c5 --- /dev/null +++ b/SOURCES/glibc-RHEL-172710-3.patch @@ -0,0 +1,457 @@ +commit 97926e9017f3faeaacce9337f1288460f5e6ec7d +Author: Maciej W. Rozycki +Date: Wed May 27 12:57:10 2026 -0400 + + stdio-common: Reject insufficient character data in scanf [BZ #12701] + + Reject invalid formatted scanf character data with the 'c' conversion + where there is not enough input available to satisfy the field width + requested. It is required by ISO C that this conversion matches a + sequence of characters of exactly the number specified by the field + width and it is also already documented as such in our own manual: + + "It reads precisely the next N characters, and fails if it cannot get + that many." + + Currently a matching success is instead incorrectly produced where the + EOF condition is encountered before the required number of characters + has been retrieved, and the characters actually obtained are stored in + the buffer provided. + + Add test cases accordingly and remove placeholders from 'c' conversion + input data for the existing scanf tests. + + Reviewed-by: Adhemerval Zanella + + [This is a modified version of commit 2b16c76609, which tests for the + old behavior and only includes the test cases, for older branches + and downstream backports - DJ] + + Reviewed-by: Carlos O'Donell + +Conflicts: + localedata/Makefile + stdio-common/Makefile + (usual test differences) + +diff -Nrup a/localedata/Makefile b/localedata/Makefile +--- a/localedata/Makefile 2026-06-16 09:15:19.295653341 -0400 ++++ b/localedata/Makefile 2026-06-16 09:11:51.111414458 -0400 +@@ -160,6 +160,7 @@ tests = \ + bug-iconv-trans \ + bug-setlocale1 \ + bug-usesetlocale \ ++ tst-bz12701-lc \ + tst-c-utf8-consistency \ + tst-digits \ + tst-iconv-math-trans \ +diff --git a/localedata/tst-bz12701-lc.c b/localedata/tst-bz12701-lc.c +new file mode 100644 +index 0000000000..23c2ab7d2a +--- /dev/null ++++ b/localedata/tst-bz12701-lc.c +@@ -0,0 +1,218 @@ ++/* Verify scanf field width handling with the 'lc' conversion (BZ #12701). ++ Copyright (C) 2025-2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++/* Compare character-wise the initial part of the wide character object ++ pointed to by WS corresponding to wide characters obtained by the ++ conversion of first N bytes of the multibyte character object pointed ++ to by S. */ ++ ++static int ++tst_bz12701_lc_memcmp (const wchar_t *ds, const char *s, size_t n) ++{ ++ size_t nc = mbsnrtowcs (NULL, &s, n, 0, NULL); ++ ++ struct support_next_to_fault ntf; ++ ntf = support_next_to_fault_allocate (nc * sizeof (wchar_t)); ++ wchar_t *ss = (wchar_t *) ntf.buffer; ++ ++ mbsnrtowcs (ss, &s, n, nc, NULL); ++ int r = wmemcmp (ds, ss, nc); ++ ++ support_next_to_fault_free (&ntf); ++ ++ return r; ++} ++ ++/* Verify various aspects of field width handling, including the data ++ obtained, the number of bytes consumed, and the stream position. */ ++ ++static int ++do_test (void) ++{ ++ if (setlocale (LC_ALL, "pl_PL.UTF-8") == NULL) ++ FAIL_EXIT1 ("setlocale (LC_ALL, \"pl_PL.UTF-8\")"); ++ ++ /* Part of a tongue-twister in Polish, which says: ++ "On a rainy morning cuckoos and warblers, rather than starting ++ on earthworms, stuffed themselves fasted with the flesh of cress." */ ++ static const char s[126] = "Dżdżystym rankiem gżegżółki i piegże, " ++ "zamiast wziąć się za dżdżownice, " ++ "nażarły się na czczo miąższu rzeżuchy"; ++ ++ const char *sp = s; ++ size_t nc; ++ TEST_VERIFY_EXIT ((nc = mbsnrtowcs (NULL, &sp, sizeof (s), 0, NULL)) == 108); ++ ++ struct support_next_to_fault ntfo, ntfi; ++ ntfo = support_next_to_fault_allocate (nc * sizeof (wchar_t)); ++ ntfi = support_next_to_fault_allocate (sizeof (s)); ++ wchar_t *e = (wchar_t *) ntfo.buffer + nc; ++ char *b = ntfi.buffer; ++ ++ wchar_t *c; ++ FILE *f; ++ int ic; ++ int n; ++ int i; ++ ++ memcpy (ntfi.buffer, s, sizeof (s)); ++ ++ ic = i = 0; ++ f = xfmemopen (b, sizeof (s), "r"); ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ /* Avoid: "warning: zero width in gnu_scanf format [-Werror=format=]". */ ++ DIAG_PUSH_NEEDS_COMMENT; ++ DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat"); ++ TEST_VERIFY_EXIT (fscanf (f, "%0lc%n", c, &n) == 1); ++ DIAG_POP_NEEDS_COMMENT; ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 1; ++ i += n; ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 2); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 1; ++ i += n; ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%1lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 1; ++ i += n; ++ ++ c = e - 2; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 3); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 2; ++ i += n; ++ ++ c = e - 4; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%4lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 4); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 4; ++ i += n; ++ ++ c = e - 8; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%8lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 8); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 8; ++ i += n; ++ ++ c = e - 16; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%16lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 20); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 16; ++ i += n; ++ ++ c = e - 32; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%32lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 38); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 32; ++ i += n; ++ ++ c = e - (nc - ic); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_COMPARE (fscanf (f, "%64lc%n", c, &n), 1); ++ TEST_COMPARE (n , 49); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, sizeof (s) - i) == 0); ++ ++ TEST_VERIFY_EXIT (ftell (f) == sizeof (s)); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ ic = i = 0; ++ f = xfmemopen (b, 3, "r"); ++ ++ c = e - 2; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 3); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 2; ++ i += n; ++ ++ c = e - (nc - ic); ++ TEST_VERIFY_EXIT (feof (f) == 0); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2lc%n", c, &n) == EOF); ++ TEST_VERIFY_EXIT (n == 3); ++ ++ TEST_VERIFY_EXIT (ftell (f) == 3); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ ic = i = 0; ++ f = xfmemopen (b, 3, "r"); ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, n) == 0); ++ ic += 1; ++ i += n; ++ ++ c = e - (nc - ic); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2lc%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 2); ++ TEST_VERIFY_EXIT (tst_bz12701_lc_memcmp (c, s + i, 3 - i) == 0); ++ ++ TEST_VERIFY_EXIT (ftell (f) == 3); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ support_next_to_fault_free (&ntfi); ++ support_next_to_fault_free (&ntfo); ++ ++ return 0; ++} ++ ++#include +diff -Nrup a/stdio-common/Makefile b/stdio-common/Makefile +--- a/stdio-common/Makefile 2026-06-16 09:15:19.320447732 -0400 ++++ b/stdio-common/Makefile 2026-06-16 09:14:09.814624522 -0400 +@@ -217,6 +217,7 @@ tests := \ + tllformat \ + tst-bz11319 \ + tst-bz11319-fortify2 \ ++ tst-bz12701-c \ + tst-cookie \ + tst-fclose-devzero \ + tst-fclose-offset \ +diff --git a/stdio-common/tst-bz12701-c.c b/stdio-common/tst-bz12701-c.c +new file mode 100644 +index 0000000000..4f3616fbfd +--- /dev/null ++++ b/stdio-common/tst-bz12701-c.c +@@ -0,0 +1,169 @@ ++/* Verify scanf field width handling with the 'c' conversion (BZ #12701). ++ Copyright (C) 2025-2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++/* Verify various aspects of field width handling, including the data ++ obtained, the number of bytes consumed, and the stream position. */ ++ ++static int ++do_test (void) ++{ ++ static const char s[43] = "The quick brown fox jumps over the lazy dog"; ++ struct support_next_to_fault ntfo, ntfi; ++ ntfo = support_next_to_fault_allocate (sizeof (s)); ++ ntfi = support_next_to_fault_allocate (sizeof (s)); ++ char *e = ntfo.buffer + sizeof (s); ++ char *b = ntfi.buffer; ++ ++ char *c; ++ FILE *f; ++ int n; ++ int i; ++ ++ memcpy (ntfi.buffer, s, sizeof (s)); ++ ++ i = 0; ++ f = xfmemopen (b, sizeof (s), "r"); ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ /* Avoid: "warning: zero width in gnu_scanf format [-Werror=format=]". */ ++ DIAG_PUSH_NEEDS_COMMENT; ++ DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat"); ++ TEST_VERIFY_EXIT (fscanf (f, "%0c%n", c, &n) == 1); ++ DIAG_POP_NEEDS_COMMENT; ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%1c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 2; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 2); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 4; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%4c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 4); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 8; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%8c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 8); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 16; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%16c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 16); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - (sizeof (s) - i); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%32c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 10); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, sizeof (s) - i) == 0); ++ ++ TEST_VERIFY_EXIT (ftell (f) == sizeof (s)); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ i = 0; ++ f = xfmemopen (b, 3, "r"); ++ ++ c = e - 1; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - 2; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 2); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - (3 - i); ++ TEST_VERIFY_EXIT (feof (f) == 0); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2c%n", c, &n) == EOF); ++ TEST_VERIFY_EXIT (n == 2); ++ ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ i = 0; ++ f = xfmemopen (b, 3, "r"); ++ ++ c = e - 2; ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 2); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, n) == 0); ++ i += n; ++ ++ c = e - (3 - i); ++ TEST_VERIFY_EXIT (ftell (f) == i); ++ TEST_VERIFY_EXIT (fscanf (f, "%2c%n", c, &n) == 1); ++ TEST_VERIFY_EXIT (n == 1); ++ TEST_VERIFY_EXIT (memcmp (c, s + i, 3 - i) == 0); ++ ++ TEST_VERIFY_EXIT (ftell (f) == 3); ++ TEST_VERIFY_EXIT (feof (f) != 0); ++ ++ xfclose (f); ++ ++ support_next_to_fault_free (&ntfi); ++ support_next_to_fault_free (&ntfo); ++ ++ return 0; ++} ++ ++#include diff --git a/SOURCES/glibc-RHEL-172710-4.patch b/SOURCES/glibc-RHEL-172710-4.patch new file mode 100644 index 0000000..12a03cd --- /dev/null +++ b/SOURCES/glibc-RHEL-172710-4.patch @@ -0,0 +1,193 @@ +commit 6cebb0b80fd783e442a8ad27c3f52cde52a9cac7 +Author: DJ Delorie +Date: Wed May 27 12:57:10 2026 -0400 + + stdio-common: Allow partially-filled %mc buffers [BZ #12701] + + This is a backwards-compatible alternative to the main solution to + the %mc part of 12701. The allocated buffer is expanded to the + requested size and NUL padded, but truncated reads are allowed. + + Reviewed-by: Carlos O'Donell + +Conflicts: + localedata/Makefile + stdio-common/Makefile + (usual test differences) + +diff -Nrup a/localedata/Makefile b/localedata/Makefile +--- a/localedata/Makefile 2026-06-16 10:00:37.802495527 -0400 ++++ b/localedata/Makefile 2026-06-16 09:59:09.766677507 -0400 +@@ -161,6 +161,7 @@ tests = \ + bug-setlocale1 \ + bug-usesetlocale \ + tst-bz12701-lc \ ++ tst-bz12701-lc2 \ + tst-c-utf8-consistency \ + tst-digits \ + tst-iconv-math-trans \ +diff --git a/localedata/tst-bz12701-lc2.c b/localedata/tst-bz12701-lc2.c +new file mode 100644 +index 0000000000..b24e86df0b +--- /dev/null ++++ b/localedata/tst-bz12701-lc2.c +@@ -0,0 +1,47 @@ ++/* Verify scanf memory handling with the 'c' conversion (BZ #12701). ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ wchar_t *c = NULL; ++ int i; ++ ++ TEST_VERIFY (sscanf ("1234", "%30mlc", &c) == 1); ++ ++ TEST_VERIFY (c != NULL); ++ TEST_COMPARE_BLOB (c, 5 * sizeof (wchar_t), ++ L"1234\0", 5 * sizeof (wchar_t)); ++ for (i = 5; i < 30; i ++) ++ TEST_VERIFY (c[i] == L'\0'); ++ ++ TEST_VERIFY (malloc_usable_size (c) >= 30 * sizeof(wchar_t)); ++ ++ return 0; ++} ++ ++#include +diff -Nrup a/stdio-common/Makefile b/stdio-common/Makefile +--- a/stdio-common/Makefile 2026-06-16 10:00:37.803143281 -0400 ++++ b/stdio-common/Makefile 2026-06-16 09:59:54.974421920 -0400 +@@ -218,6 +218,7 @@ tests := \ + tst-bz11319 \ + tst-bz11319-fortify2 \ + tst-bz12701-c \ ++ tst-bz12701-c2 \ + tst-cookie \ + tst-fclose-devzero \ + tst-fclose-offset \ +diff --git a/stdio-common/tst-bz12701-c2.c b/stdio-common/tst-bz12701-c2.c +new file mode 100644 +index 0000000000..5f9ca7c592 +--- /dev/null ++++ b/stdio-common/tst-bz12701-c2.c +@@ -0,0 +1,46 @@ ++/* Verify scanf memory handling with the 'c' conversion (BZ #12701). ++ Copyright (C) 2026 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, see ++ . */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ char *c = NULL; ++ int i; ++ ++ TEST_VERIFY (sscanf ("1234", "%30mc", &c) == 1); ++ ++ TEST_VERIFY (c != NULL); ++ TEST_COMPARE_BLOB (c, 5, "1234\0", 5); ++ for (i = 5; i < 30; i ++) ++ TEST_VERIFY (c[i] == '\0'); ++ ++ TEST_VERIFY (malloc_usable_size (c) >= 30); ++ ++ return 0; ++} ++ ++#include +diff --git a/stdio-common/vfscanf-internal.c b/stdio-common/vfscanf-internal.c +index 17b5565d0f..90a1886951 100644 +--- a/stdio-common/vfscanf-internal.c ++++ b/stdio-common/vfscanf-internal.c +@@ -780,9 +780,9 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + conv_error (); \ + } while (0) + #ifdef COMPILE_WSCANF +- STRING_ARG (str, char, 100); ++ STRING_ARG (str, char, (width > 0 ? width : 1)); + #else +- STRING_ARG (str, char, (width > 1024 ? 1024 : width)); ++ STRING_ARG (str, char, (width > 0 ? width : 1)); + #endif + + c = inchar (); +@@ -891,6 +891,11 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + + if (!(flags & SUPPRESS)) + { ++ /* If the buffer isn't completely filled, pad it with NULs. */ ++ if (flags & MALLOC) ++ while (width-- > 0) ++ *str++ = '\0'; ++ + if ((flags & MALLOC) && str - *strptr != strsize) + { + char *cp = (char *) realloc (*strptr, str - *strptr); +@@ -908,7 +913,7 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + if (width == -1) + width = 1; + +- STRING_ARG (wstr, wchar_t, (width > 1024 ? 1024 : width)); ++ STRING_ARG (wstr, wchar_t, (width > 0 ? width : 1)); + + c = inchar (); + if (__glibc_unlikely (c == EOF)) +@@ -1044,6 +1049,11 @@ __vfscanf_internal (FILE *s, const char *format, va_list argptr, + + if (!(flags & SUPPRESS)) + { ++ /* If the buffer isn't completely filled, pad it with NULs. */ ++ if (flags & MALLOC) ++ while (width-- > 0) ++ *wstr++ = L'\0'; ++ + if ((flags & MALLOC) && wstr - (wchar_t *) *strptr != strsize) + { + wchar_t *cp = (wchar_t *) realloc (*strptr, diff --git a/SOURCES/patch-git-generated-commit.txt b/SOURCES/patch-git-generated-commit.txt index 2990474..8fae518 100644 --- a/SOURCES/patch-git-generated-commit.txt +++ b/SOURCES/patch-git-generated-commit.txt @@ -1,2 +1,2 @@ -381936891b4e421cd9a03b682bcb5a66039fd230 +ec99e297ec21a794af038ae0b8ad9eae6a5b7a54 v1 diff --git a/SOURCES/patch-git-generated-log.txt b/SOURCES/patch-git-generated-log.txt index 5b1e131..c505b05 100644 --- a/SOURCES/patch-git-generated-log.txt +++ b/SOURCES/patch-git-generated-log.txt @@ -1,3 +1,47 @@ +commit ec99e297ec21a794af038ae0b8ad9eae6a5b7a54 +Author: Patsy Griffin +AuthorDate: Mon Jun 22 06:53:56 2026 -0400 +Commit: pfrankli +CommitDate: Mon Jun 22 13:49:01 2026 +0000 + + CVE-2026-5450: Fix buffer overflow in scanf (RHEL-172710) + + Resolves: RHEL-172710 + +:000000 100644 0000000 1bd6427 A glibc-RHEL-172710-1.patch +:000000 100644 0000000 a334a8c A glibc-RHEL-172710-2.patch +:000000 100644 0000000 6bfe8c5 A glibc-RHEL-172710-3.patch +:000000 100644 0000000 12a03cd A glibc-RHEL-172710-4.patch + +commit 396dbae5399bc8ee97a617cc9ad4e1d95d26faf1 +Author: Sergey Kolosov +AuthorDate: Fri Jun 19 14:54:09 2026 +0200 +Commit: Sergey Kolosov +CommitDate: Fri Jun 19 14:54:09 2026 +0200 + + CI Gating: Add fail-fast test plan jobs as required rules + + RPM-Changelog: - + RPM-Skip-Release: yes + +:100644 100644 ba7f921 9300333 M gating.yaml + +commit beeb5b354b9f5fd8745cc034694041b2ca91e31d +Author: Frédéric Bérat +AuthorDate: Thu Jun 4 11:49:13 2026 +0200 +Commit: Frédéric Bérat +CommitDate: Tue Jun 9 11:29:39 2026 +0200 + + Fix gconv module reference counter overflow in swscanf and swprintf families + + Resolves: RHEL-145156 + +:000000 100644 0000000 d591eea A glibc-RHEL-145156-1.patch +:000000 100644 0000000 01b7d9c A glibc-RHEL-145156-2.patch +:000000 100644 0000000 78b117e A glibc-RHEL-145156-3.patch +:000000 100644 0000000 62dec63 A glibc-RHEL-145156-4.patch +:000000 100644 0000000 41d91fd A glibc-RHEL-145156-5.patch + commit 381936891b4e421cd9a03b682bcb5a66039fd230 Author: Patsy Griffin AuthorDate: Mon May 4 22:48:56 2026 -0400 @@ -8,7 +52,7 @@ CommitDate: Sun May 10 17:40:44 2026 +0000 Resolves: RHEL-148252 -:100644 100644 54e9fb1c 509fa59d M glibc.spec +:100644 100644 54e9fb1 509fa59 M glibc.spec commit c86a21c28e56e47fa7ff5507191d9f3146363574 Author: Frédéric Bérat @@ -20,7 +64,7 @@ CommitDate: Sun May 10 05:29:05 2026 +0000 Resolves: RHEL-168096 -:000000 100644 00000000 cd80ed75 A glibc-RHEL-168096.patch +:000000 100644 0000000 cd80ed7 A glibc-RHEL-168096.patch commit a35ccbc1615d3cc93ac7427a3c3b3d2f4da64e55 Author: Arjun Shankar @@ -33,8 +77,8 @@ CommitDate: Sat May 9 08:46:30 2026 +0000 Resolves: RHEL-168851 Resolves: RHEL-168852 -:000000 100644 00000000 9e41b3f3 A glibc-RHEL-168851.patch -:000000 100644 00000000 159e4d52 A glibc-RHEL-168852.patch +:000000 100644 0000000 9e41b3f A glibc-RHEL-168851.patch +:000000 100644 0000000 159e4d5 A glibc-RHEL-168852.patch commit 437183f942920f2ae5a825d4a710edd5b0def2d1 Author: Frédéric Bérat @@ -46,9 +90,9 @@ CommitDate: Wed May 6 08:18:22 2026 +0000 Resolves: RHEL-162901 -:000000 100644 00000000 39624a78 A glibc-RHEL-162901-1.patch -:000000 100644 00000000 b31887c7 A glibc-RHEL-162901-2.patch -:000000 100644 00000000 9294f79b A glibc-RHEL-162901-3.patch +:000000 100644 0000000 39624a7 A glibc-RHEL-162901-1.patch +:000000 100644 0000000 b31887c A glibc-RHEL-162901-2.patch +:000000 100644 0000000 9294f79 A glibc-RHEL-162901-3.patch commit 7fbc71a39a05131ddc4e61bd013acc2e34c62ca5 Author: Martin Coufal @@ -61,7 +105,7 @@ CommitDate: Thu Apr 30 10:13:36 2026 +0200 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 a1e2d559 ba7f921c M gating.yaml +:100644 100644 a1e2d55 ba7f921 M gating.yaml commit 6876da6c3cd740735f9227fa71494e3e72c91cdf Author: Frédéric Bérat @@ -73,7 +117,7 @@ CommitDate: Thu Mar 26 16:10:21 2026 +0000 Resolves: RHEL-52966 -:000000 100644 00000000 52a65c16 A glibc-RHEL-52966.patch +:000000 100644 0000000 52a65c1 A glibc-RHEL-52966.patch commit d19518e588c4477fcde9374ec70350a1bc382c0b Author: Frédéric Bérat @@ -85,10 +129,10 @@ CommitDate: Wed Mar 25 20:42:54 2026 +0000 Resolves: RHEL-150269 -:000000 100644 00000000 0eda8a77 A glibc-RHEL-150269-1.patch -:000000 100644 00000000 39255656 A glibc-RHEL-150269-2.patch -:000000 100644 00000000 7c99f3d9 A glibc-RHEL-150269-3.patch -:000000 100644 00000000 f811d428 A glibc-RHEL-150269-4.patch +:000000 100644 0000000 0eda8a7 A glibc-RHEL-150269-1.patch +:000000 100644 0000000 3925565 A glibc-RHEL-150269-2.patch +:000000 100644 0000000 7c99f3d A glibc-RHEL-150269-3.patch +:000000 100644 0000000 f811d42 A glibc-RHEL-150269-4.patch commit 0e8e4ecae9fa126d2cea194d09042c554bdc420c Author: Frédéric Bérat @@ -100,12 +144,12 @@ CommitDate: Wed Mar 25 12:30:41 2026 +0000 Resolves: RHEL-49785 -:000000 100644 00000000 b9a8d925 A glibc-RHEL-49785-1.patch -:000000 100644 00000000 312faf76 A glibc-RHEL-49785-2.patch -:000000 100644 00000000 39691659 A glibc-RHEL-49785-3.patch -:000000 100644 00000000 6ee9ef6c A glibc-RHEL-49785-4.patch -:000000 100644 00000000 be0b0eb7 A glibc-RHEL-49785-5.patch -:000000 100644 00000000 e109ac52 A glibc-RHEL-49785-6.patch +:000000 100644 0000000 b9a8d92 A glibc-RHEL-49785-1.patch +:000000 100644 0000000 312faf7 A glibc-RHEL-49785-2.patch +:000000 100644 0000000 3969165 A glibc-RHEL-49785-3.patch +:000000 100644 0000000 6ee9ef6 A glibc-RHEL-49785-4.patch +:000000 100644 0000000 be0b0eb A glibc-RHEL-49785-5.patch +:000000 100644 0000000 e109ac5 A glibc-RHEL-49785-6.patch commit d58e05d599e91bf2d7597da217208b2ef4c92fc1 Author: Florian Weimer @@ -117,9 +161,9 @@ CommitDate: Mon Mar 23 16:53:51 2026 +0100 Resolves: RHEL-153056 -:000000 100644 00000000 bf93cf76 A glibc-RHEL-153056-1.patch -:000000 100644 00000000 df435366 A glibc-RHEL-153056-2.patch -:000000 100644 00000000 ed5efd81 A glibc-RHEL-153056-3.patch +:000000 100644 0000000 bf93cf7 A glibc-RHEL-153056-1.patch +:000000 100644 0000000 df43536 A glibc-RHEL-153056-2.patch +:000000 100644 0000000 ed5efd8 A glibc-RHEL-153056-3.patch commit 6a5da8faa95148af5ace04cd63a9e11686b61d12 Author: Arjun Shankar @@ -131,7 +175,7 @@ CommitDate: Tue Mar 17 12:39:23 2026 +0100 Resolves: RHEL-54450 -:000000 100644 00000000 ab7c187a A glibc-RHEL-54450.patch +:000000 100644 0000000 ab7c187 A glibc-RHEL-54450.patch commit 7bff59bb7c59d40d81878bbe411782c7e393b538 Author: Sergey Kolosov @@ -148,7 +192,7 @@ CommitDate: Mon Mar 9 08:59:24 2026 +0000 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 07eeedb5 a1e2d559 M gating.yaml +:100644 100644 07eeedb a1e2d55 M gating.yaml commit e2834b00283401e1a1cb8c6a1768b2c2fdaa7836 Author: Sergey Kolosov @@ -161,7 +205,7 @@ CommitDate: Mon Mar 2 19:10:44 2026 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 72495752 7749a2d4 M plans/ci.fmf +:100644 100644 7249575 7749a2d M plans/ci.fmf commit ca2c60812dc5d34b77f94382c7340dbdf0ca2748 Author: Sergey Kolosov @@ -177,11 +221,11 @@ CommitDate: Mon Mar 2 19:10:44 2026 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:000000 100644 00000000 2852f585 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/Makefile -:000000 100644 00000000 020631ca A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE -:000000 100644 00000000 45d13719 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/main.fmf -:000000 100755 00000000 d36bb2d4 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh -:000000 100644 00000000 b8a08ec4 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/testlib.cc +:000000 100644 0000000 2852f58 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/Makefile +:000000 100644 0000000 020631c A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/PURPOSE +:000000 100644 0000000 45d1371 A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/main.fmf +:000000 100755 0000000 d36bb2d A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/runtest.sh +:000000 100644 0000000 b8a08ec A tests/Regression/bz1882466-RHEL8-2-LD-PRELOAD-of-some-lib-that-has/testlib.cc commit 1d7a0617ff0c43317425ee2a5b7379c7e2ef73ac Author: Patsy Griffin @@ -193,14 +237,14 @@ CommitDate: Thu Feb 26 10:03:06 2026 +0000 Resolves: RHEL-142196 -:000000 100644 00000000 fa52d55f A glibc-RHEL-142196-1.patch -:000000 100644 00000000 f12aeb87 A glibc-RHEL-142196-2.patch -:000000 100644 00000000 28567d26 A glibc-RHEL-142196-3.patch -:000000 100644 00000000 e1a8ab7d A glibc-RHEL-142196-4.patch -:000000 100644 00000000 84b027a4 A glibc-RHEL-142196-5.patch -:000000 100644 00000000 68cdcffc A glibc-RHEL-142196-6.patch -:000000 100644 00000000 79975600 A glibc-RHEL-142196-7.patch -:000000 100644 00000000 a999fc88 A glibc-RHEL-142196-8.patch +:000000 100644 0000000 fa52d55 A glibc-RHEL-142196-1.patch +:000000 100644 0000000 f12aeb8 A glibc-RHEL-142196-2.patch +:000000 100644 0000000 28567d2 A glibc-RHEL-142196-3.patch +:000000 100644 0000000 e1a8ab7 A glibc-RHEL-142196-4.patch +:000000 100644 0000000 84b027a A glibc-RHEL-142196-5.patch +:000000 100644 0000000 68cdcff A glibc-RHEL-142196-6.patch +:000000 100644 0000000 7997560 A glibc-RHEL-142196-7.patch +:000000 100644 0000000 a999fc8 A glibc-RHEL-142196-8.patch commit 8a9ddda3347d613915845ebc322ed2c38145b070 Author: Frédéric Bérat @@ -212,7 +256,7 @@ CommitDate: Tue Feb 24 15:23:26 2026 +0100 Resolves: RHEL-142209 -:000000 100644 00000000 0b0cc99c A glibc-RHEL-142209.patch +:000000 100644 0000000 0b0cc99 A glibc-RHEL-142209.patch commit a5df4f06f796a4c1f78aa9c8e06f4ca823431072 Author: Frédéric Bérat @@ -224,7 +268,7 @@ CommitDate: Mon Feb 23 14:17:12 2026 +0100 Resolves: RHEL-1018 -:000000 100644 00000000 ffe3c502 A glibc-RHEL-1018.patch +:000000 100644 0000000 ffe3c50 A glibc-RHEL-1018.patch commit 3b96603253e3faf6588dee6d8b20043566c6d5e4 Author: Patsy Griffin @@ -236,7 +280,7 @@ CommitDate: Mon Feb 16 07:43:17 2026 +0000 Resolves: RHEL-141072 -:000000 100644 00000000 496a62f4 A glibc-RHEL-141072.patch +:000000 100644 0000000 496a62f A glibc-RHEL-141072.patch commit c7f278779ca2b29a5524121252ab11f051cfb8bb Author: Patsy Griffin @@ -248,7 +292,7 @@ CommitDate: Fri Feb 13 15:27:36 2026 +0000 Resolves: RHEL-140105 -:000000 100644 00000000 1b763ae2 A glibc-RHEL-140105.patch +:000000 100644 0000000 1b763ae A glibc-RHEL-140105.patch commit 426ad63b6259338de1b2083c57dab64d16b06bb0 Author: Sergey Kolosov @@ -264,7 +308,7 @@ CommitDate: Fri Feb 13 15:21:49 2026 +0000 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 4a3341c3 36de4261 M tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/main.fmf +:100644 100644 4a3341c 36de426 M tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/main.fmf commit eae38d8010e461f8f0d4a9ec27080eb89bc2e6fe Author: Florian Weimer @@ -276,7 +320,7 @@ CommitDate: Fri Feb 13 07:20:22 2026 +0000 Resolves: RHEL-141850 -:000000 100644 00000000 1d3cf7f3 A glibc-RHEL-141850.patch +:000000 100644 0000000 1d3cf7f A glibc-RHEL-141850.patch commit 949d465bf8b7390fe9f8f723597f0f1cdffc00a2 Author: Florian Weimer @@ -288,7 +332,7 @@ CommitDate: Thu Feb 12 19:34:58 2026 +0000 Resolves: RHEL-141739 -:000000 100644 00000000 98fe129e A glibc-RHEL-141739.patch +:000000 100644 0000000 98fe129 A glibc-RHEL-141739.patch commit 9520284df9ed49d3e5df2e861baa2990be584656 Author: Florian Weimer @@ -300,8 +344,8 @@ CommitDate: Thu Feb 12 15:11:32 2026 +0100 Resolves: RHEL-142788 -:000000 100644 00000000 be5ed54a A glibc-RHEL-142788-1.patch -:000000 100644 00000000 b459da17 A glibc-RHEL-142788-2.patch +:000000 100644 0000000 be5ed54 A glibc-RHEL-142788-1.patch +:000000 100644 0000000 b459da1 A glibc-RHEL-142788-2.patch commit a4f5c93ccf6366e83ef12d55d1191d7dbd351fb4 Author: Arjun Shankar @@ -313,7 +357,7 @@ CommitDate: Wed Feb 11 10:41:15 2026 +0100 Resolves: RHEL-137186 -:000000 100644 00000000 08b03810 A glibc-RHEL-137186.patch +:000000 100644 0000000 08b0381 A glibc-RHEL-137186.patch commit 7da8fd8c51dab268299ddbadcf50818b3f6b59b0 Author: Florian Weimer @@ -340,7 +384,7 @@ CommitDate: Fri Feb 6 15:07:29 2026 +0000 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 2ae7888a a362dd39 M patch-git.lua +:100644 100644 2ae7888 a362dd3 M patch-git.lua commit 89305a5e300135bafb80a7ba47d9ce3b2eceb0c5 Author: Patsy Griffin @@ -352,8 +396,8 @@ CommitDate: Thu Feb 5 18:21:14 2026 +0000 Resolves: RHEL-127529 -:000000 100644 00000000 533d4222 A glibc-RHEL-127529.patch -:100644 100644 291afe19 54e9fb1c M glibc.spec +:000000 100644 0000000 533d422 A glibc-RHEL-127529.patch +:100644 100644 291afe1 54e9fb1 M glibc.spec commit 86738b0e3216588b95c7b370456ba628807300e8 Author: Patsy Griffin @@ -366,8 +410,8 @@ CommitDate: Mon Feb 2 19:59:33 2026 +0000 Resolves: RHEL-32737 -:000000 100644 00000000 002681cb A glibc-RHEL-32737.patch -:100644 100644 ce4f37dc 291afe19 M glibc.spec +:000000 100644 0000000 002681c A glibc-RHEL-32737.patch +:100644 100644 ce4f37d 291afe1 M glibc.spec commit 8b7a57810652225f563da999cb74f32e1797eb0c Author: DJ Delorie @@ -381,7 +425,7 @@ CommitDate: Mon Jan 26 20:13:10 2026 -0500 Resolves: RHEL-140227 -:100644 100644 c975eb75 2ae7888a M patch-git.lua +:100644 100644 c975eb7 2ae7888 M patch-git.lua commit ddbe2358d138425620b4c302a2648aeba1ae8a6a Author: Florian Weimer @@ -393,24 +437,24 @@ CommitDate: Tue Jan 20 11:27:57 2026 +0000 Resolves: RHEL-1063 -:000000 100644 00000000 d95530d1 A glibc-RHEL-1063-1.patch -:000000 100644 00000000 3eee7d2a A glibc-RHEL-1063-10.patch -:000000 100644 00000000 0e5c8fe9 A glibc-RHEL-1063-11.patch -:000000 100644 00000000 9a0aa5b1 A glibc-RHEL-1063-12.patch -:000000 100644 00000000 6af3ba4d A glibc-RHEL-1063-13.patch -:000000 100644 00000000 6e70e267 A glibc-RHEL-1063-14.patch -:000000 100644 00000000 647b8cf6 A glibc-RHEL-1063-15.patch -:000000 100644 00000000 4c1700bd A glibc-RHEL-1063-16.patch -:000000 100644 00000000 3b1dab06 A glibc-RHEL-1063-17.patch -:000000 100644 00000000 0bb6044b A glibc-RHEL-1063-18.patch -:000000 100644 00000000 5f26cb51 A glibc-RHEL-1063-2.patch -:000000 100644 00000000 b5fcd46b A glibc-RHEL-1063-3.patch -:000000 100644 00000000 ce4f14ce A glibc-RHEL-1063-4.patch -:000000 100644 00000000 45dd3e35 A glibc-RHEL-1063-5.patch -:000000 100644 00000000 5c1e0193 A glibc-RHEL-1063-6.patch -:000000 100644 00000000 8129ef4c A glibc-RHEL-1063-7.patch -:000000 100644 00000000 f222d268 A glibc-RHEL-1063-8.patch -:000000 100644 00000000 fb14931c A glibc-RHEL-1063-9.patch +:000000 100644 0000000 d95530d A glibc-RHEL-1063-1.patch +:000000 100644 0000000 3eee7d2 A glibc-RHEL-1063-10.patch +:000000 100644 0000000 0e5c8fe A glibc-RHEL-1063-11.patch +:000000 100644 0000000 9a0aa5b A glibc-RHEL-1063-12.patch +:000000 100644 0000000 6af3ba4 A glibc-RHEL-1063-13.patch +:000000 100644 0000000 6e70e26 A glibc-RHEL-1063-14.patch +:000000 100644 0000000 647b8cf A glibc-RHEL-1063-15.patch +:000000 100644 0000000 4c1700b A glibc-RHEL-1063-16.patch +:000000 100644 0000000 3b1dab0 A glibc-RHEL-1063-17.patch +:000000 100644 0000000 0bb6044 A glibc-RHEL-1063-18.patch +:000000 100644 0000000 5f26cb5 A glibc-RHEL-1063-2.patch +:000000 100644 0000000 b5fcd46 A glibc-RHEL-1063-3.patch +:000000 100644 0000000 ce4f14c A glibc-RHEL-1063-4.patch +:000000 100644 0000000 45dd3e3 A glibc-RHEL-1063-5.patch +:000000 100644 0000000 5c1e019 A glibc-RHEL-1063-6.patch +:000000 100644 0000000 8129ef4 A glibc-RHEL-1063-7.patch +:000000 100644 0000000 f222d26 A glibc-RHEL-1063-8.patch +:000000 100644 0000000 fb14931 A glibc-RHEL-1063-9.patch commit b7e6283f1a962d6d0d642553628494dbd4e1c96f Author: Patsy Griffin @@ -422,9 +466,9 @@ CommitDate: Tue Jan 13 08:27:02 2026 -0500 Resolves: RHEL-87646 -:000000 100644 00000000 f195e7e8 A glibc-RHEL-87646-1.patch -:000000 100644 00000000 83ec4c47 A glibc-RHEL-87646-2.patch -:000000 100644 00000000 20c855c1 A glibc-RHEL-87646-3.patch +:000000 100644 0000000 f195e7e A glibc-RHEL-87646-1.patch +:000000 100644 0000000 83ec4c4 A glibc-RHEL-87646-2.patch +:000000 100644 0000000 20c855c A glibc-RHEL-87646-3.patch commit 06d55fdb46d6ed4f1ba6bcd22677f3773717cf20 Author: DJ Delorie @@ -436,7 +480,7 @@ CommitDate: Tue Dec 16 13:45:36 2025 -0500 Resolves: RHEL-27851 -:100644 100644 5257de7c 7bc79aa2 M wrap-find-debuginfo.sh +:100644 100644 5257de7 7bc79aa M wrap-find-debuginfo.sh commit fe0a9b0cabda67b359a31f062ebfe577636dc18f Author: Patsy Griffin @@ -448,7 +492,7 @@ CommitDate: Thu Dec 11 22:11:58 2025 -0500 Resolves: RHEL-109758 -:000000 100644 00000000 6bf25c1f A glibc-RHEL-109758.patch +:000000 100644 0000000 6bf25c1 A glibc-RHEL-109758.patch commit 78fb5257b7c766e9829c5e5d214303365344e571 Author: Florian Weimer @@ -464,7 +508,7 @@ CommitDate: Sat Dec 6 12:54:45 2025 +0100 RPM-Changelog: - RPM-Skip-Release: yes -:100644 100644 04cb0612 c975eb75 M patch-git.lua +:100644 100644 04cb061 c975eb7 M patch-git.lua commit d6294856324abaab9e132d20fbfa1e8413027230 Author: Patsy Griffin @@ -477,8 +521,8 @@ CommitDate: Tue Dec 2 17:37:11 2025 -0500 Resolves: RHEL-41205 -:000000 100644 00000000 8ed15bb5 A glibc-RHEL-41205.patch -:100644 100644 bd5424d6 ce4f37dc M glibc.spec +:000000 100644 0000000 8ed15bb A glibc-RHEL-41205.patch +:100644 100644 bd5424d ce4f37d M glibc.spec commit 58ede251185f0daa9173f673858b6fbf026403b2 Author: Frédéric Bérat @@ -490,7 +534,7 @@ CommitDate: Mon Nov 17 16:08:01 2025 +0100 Resolves: RHEL-109622 -:000000 100644 00000000 fd08eca6 A glibc-RHEL-109622.patch +:000000 100644 0000000 fd08eca A glibc-RHEL-109622.patch commit 9f5411077474af4b8bf39d3e8262439e37168a9a Author: Florian Weimer @@ -504,7 +548,7 @@ CommitDate: Mon Nov 17 10:55:37 2025 +0100 Resolves: RHEL-127594 -:100644 100644 f95800e1 04cb0612 M patch-git.lua +:100644 100644 f95800e 04cb061 M patch-git.lua commit 95249e2082ec7c935d599805ccea83682f1c510d Author: DJ Delorie @@ -521,7 +565,7 @@ CommitDate: Thu Nov 13 09:53:30 2025 +0100 Resolves: RHEL-118846 -:100644 100644 209d25db 214d07ba M rpminspect.yaml +:100644 100644 209d25d 214d07b M rpminspect.yaml commit 1335d209f380fbfd4b554a6392c49be9117d5c81 Author: Florian Weimer @@ -535,7 +579,7 @@ CommitDate: Tue Nov 11 20:04:43 2025 +0100 Resolves: RHEL-126051 -:100644 100644 04f201b8 f95800e1 M patch-git.lua +:100644 100644 04f201b f95800e M patch-git.lua commit 420da6862a8f645f9bdc563163f00d56b88e7f72 Author: DJ Delorie @@ -547,19 +591,19 @@ CommitDate: Mon Nov 3 22:56:29 2025 -0500 Resolves: RHEL-95259 -:000000 100644 00000000 fd961417 A glibc-RHEL-95259-1.patch -:000000 100644 00000000 18d8ddb9 A glibc-RHEL-95259-10.patch -:000000 100644 00000000 55be8462 A glibc-RHEL-95259-11.patch -:000000 100644 00000000 0a1c55d2 A glibc-RHEL-95259-12.patch -:000000 100644 00000000 ad68de71 A glibc-RHEL-95259-13.patch -:000000 100644 00000000 3054c48c A glibc-RHEL-95259-2.patch -:000000 100644 00000000 148b76af A glibc-RHEL-95259-3.patch -:000000 100644 00000000 65b57f19 A glibc-RHEL-95259-4.patch -:000000 100644 00000000 6b5fb9cd A glibc-RHEL-95259-5.patch -:000000 100644 00000000 3280e4f3 A glibc-RHEL-95259-6.patch -:000000 100644 00000000 6887c60f A glibc-RHEL-95259-7.patch -:000000 100644 00000000 4bceeb84 A glibc-RHEL-95259-8.patch -:000000 100644 00000000 aaf6929f A glibc-RHEL-95259-9.patch +:000000 100644 0000000 fd96141 A glibc-RHEL-95259-1.patch +:000000 100644 0000000 18d8ddb A glibc-RHEL-95259-10.patch +:000000 100644 0000000 55be846 A glibc-RHEL-95259-11.patch +:000000 100644 0000000 0a1c55d A glibc-RHEL-95259-12.patch +:000000 100644 0000000 ad68de7 A glibc-RHEL-95259-13.patch +:000000 100644 0000000 3054c48 A glibc-RHEL-95259-2.patch +:000000 100644 0000000 148b76a A glibc-RHEL-95259-3.patch +:000000 100644 0000000 65b57f1 A glibc-RHEL-95259-4.patch +:000000 100644 0000000 6b5fb9c A glibc-RHEL-95259-5.patch +:000000 100644 0000000 3280e4f A glibc-RHEL-95259-6.patch +:000000 100644 0000000 6887c60 A glibc-RHEL-95259-7.patch +:000000 100644 0000000 4bceeb8 A glibc-RHEL-95259-8.patch +:000000 100644 0000000 aaf6929 A glibc-RHEL-95259-9.patch commit b69345d750261a03b06e0e8c62c2929a0a823625 Author: Frédéric Bérat @@ -571,7 +615,7 @@ CommitDate: Tue Oct 28 15:56:46 2025 +0100 Resolves: RHEL-61087 -:000000 100644 00000000 1f21851c A glibc-RHEL-61087.patch +:000000 100644 0000000 1f21851 A glibc-RHEL-61087.patch commit 7caf5b3af44c3d3b9a3b187067c59fd5fd604b27 Author: Frédéric Bérat @@ -583,8 +627,8 @@ CommitDate: Thu Oct 16 15:13:02 2025 +0200 Resolves: RHEL-50453 -:000000 100644 00000000 71a394dd A glibc-RHEL-50453-1.patch -:000000 100644 00000000 82500150 A glibc-RHEL-50453-2.patch +:000000 100644 0000000 71a394d A glibc-RHEL-50453-1.patch +:000000 100644 0000000 8250015 A glibc-RHEL-50453-2.patch commit b4d304b208cef7c67e3b61a58e84e0568ddb2299 Author: Florian Weimer @@ -596,7 +640,7 @@ CommitDate: Wed Oct 15 12:14:54 2025 +0200 Resolves: RHEL-121433 -:000000 100644 00000000 ee16c69b A glibc-RHEL-121433.patch +:000000 100644 0000000 ee16c69 A glibc-RHEL-121433.patch commit 49e17cb0562064f3c1c2eb91d21aeff971a16813 Author: Patsy Griffin @@ -608,7 +652,7 @@ CommitDate: Mon Oct 13 15:35:20 2025 -0400 Resolves: RHEL-112149 -:000000 100644 00000000 15cf58d4 A glibc-RHEL-112149.patch +:000000 100644 0000000 15cf58d A glibc-RHEL-112149.patch commit 5a90f7a991653db97e26d8ff80526c54d4f25929 Author: Arjun Shankar @@ -636,10 +680,10 @@ CommitDate: Thu Oct 9 15:25:37 2025 +0200 RPM-Release: 235%{?dist} RPM-Changelog-Stop: yes -:100644 100644 7a730813 b90bfc67 M .gitignore -:000000 100644 00000000 dfe9c399 A CONTRIBUTING.md -:100644 100644 3effbf06 bd5424d6 M glibc.spec -:000000 100644 00000000 04f201b8 A patch-git.lua +:100644 100644 7a73081 b90bfc6 M .gitignore +:000000 100644 0000000 dfe9c39 A CONTRIBUTING.md +:100644 100644 3effbf0 bd5424d M glibc.spec +:000000 100644 0000000 04f201b A patch-git.lua commit e8cd46bcf167c0ccb83df7354c7c7e18eb825bba Author: Arjun Shankar @@ -651,9 +695,9 @@ CommitDate: Tue Oct 7 16:03:42 2025 +0200 Resolves: RHEL-91400 -:000000 100644 00000000 97d0564c A glibc-RHEL-91400-1.patch -:000000 100644 00000000 39e972a4 A glibc-RHEL-91400-2.patch -:100644 100644 2d5bd233 3effbf06 M glibc.spec +:000000 100644 0000000 97d0564 A glibc-RHEL-91400-1.patch +:000000 100644 0000000 39e972a A glibc-RHEL-91400-2.patch +:100644 100644 2d5bd23 3effbf0 M glibc.spec commit 45ccc173fc7113a99b8337719496a7d34389926c Author: Patsy Griffin @@ -665,7 +709,7 @@ CommitDate: Thu Oct 2 14:08:31 2025 -0400 Resolves: RHEL-111005 -:100644 100644 7be1b0eb 2d5bd233 M glibc.spec +:100644 100644 7be1b0e 2d5bd23 M glibc.spec commit 69397358262a4791182bd7e7ff4d6776d02823c5 Author: Rachel Sibley @@ -677,7 +721,7 @@ CommitDate: Wed Sep 3 19:13:48 2025 -0400 Resolves: RHEL-112820 -:100644 100644 266181ad ac55fb57 M revdep.yaml +:100644 100644 266181a ac55fb5 M revdep.yaml commit 1d21eb187fdd4fc078ee45f5fcc854d5ca480da6 Author: Arjun Shankar @@ -689,8 +733,8 @@ CommitDate: Tue Sep 2 12:25:19 2025 +0200 Resolves: RHEL-72245 -:000000 100644 00000000 11dedea5 A glibc-RHEL-72245.patch -:100644 100644 d433745d 7be1b0eb M glibc.spec +:000000 100644 0000000 11dedea A glibc-RHEL-72245.patch +:100644 100644 d433745 7be1b0e M glibc.spec commit faa64d329c14c150b1f287f02cf8aeb652c03bb6 Author: Rachel Sibley @@ -702,7 +746,7 @@ CommitDate: Thu Aug 28 11:15:42 2025 -0400 Resolves: RHEL-111538 -:100644 100644 c5b2142b 266181ad M revdep.yaml +:100644 100644 c5b2142 266181a M revdep.yaml commit fc8b8ed923c338b37f3c10b0616dd4d92a9909e4 Author: Arjun Shankar @@ -715,8 +759,8 @@ CommitDate: Tue Aug 19 17:55:03 2025 +0200 Related: RHEL-72017 Resolves: RHEL-107518 -:000000 100644 00000000 4c4d18ce A glibc-RHEL-107518.patch -:100644 100644 b5e50fb3 d433745d M glibc.spec +:000000 100644 0000000 4c4d18c A glibc-RHEL-107518.patch +:100644 100644 b5e50fb d433745 M glibc.spec commit dc524727773973bc2c1c80abd07cfbc685d272a6 Author: Arjun Shankar @@ -728,8 +772,8 @@ CommitDate: Tue Aug 19 15:19:05 2025 +0200 Resolves: RHEL-108220 -:000000 100644 00000000 d6382ae5 A glibc-RHEL-108220.patch -:100644 100644 ac5f6d48 b5e50fb3 M glibc.spec +:000000 100644 0000000 d6382ae A glibc-RHEL-108220.patch +:100644 100644 ac5f6d4 b5e50fb M glibc.spec commit e54a9f817e67e1e63572cef2ca1af7af6d7cb10b Author: Arjun Shankar @@ -741,8 +785,8 @@ CommitDate: Tue Aug 19 11:50:53 2025 +0200 Resolves: RHEL-106206 -:000000 100644 00000000 d8232fcb A glibc-RHEL-106206.patch -:100644 100644 755fc81d ac5f6d48 M glibc.spec +:000000 100644 0000000 d8232fc A glibc-RHEL-106206.patch +:100644 100644 755fc81 ac5f6d4 M glibc.spec commit 433a7d6f1077558926a89465a609cc119ea7dbe6 Author: Florian Weimer @@ -754,9 +798,9 @@ CommitDate: Mon Aug 11 14:04:43 2025 +0200 Resolves: RHEL-104852 -:000000 100644 00000000 e74ca817 A glibc-RHEL-104852-1.patch -:000000 100644 00000000 eeafd86b A glibc-RHEL-104852-2.patch -:100644 100644 92bf2f2f 755fc81d M glibc.spec +:000000 100644 0000000 e74ca81 A glibc-RHEL-104852-1.patch +:000000 100644 0000000 eeafd86 A glibc-RHEL-104852-2.patch +:100644 100644 92bf2f2 755fc81 M glibc.spec commit 598d4ec8e656f71cf74ec30995d8410b9e15bb2b Author: Florian Weimer @@ -768,8 +812,8 @@ CommitDate: Mon Aug 11 13:21:08 2025 +0200 Resolves: RHEL-108221 -:000000 100644 00000000 5702bd9d A glibc-RHEL-108221.patch -:100644 100644 abf9a13d 92bf2f2f M glibc.spec +:000000 100644 0000000 5702bd9 A glibc-RHEL-108221.patch +:100644 100644 abf9a13 92bf2f2 M glibc.spec commit ad8f8253fd096c406ae491e0fcbea1ec32f1ce90 Author: Florian Weimer @@ -781,8 +825,8 @@ CommitDate: Thu Aug 7 13:55:00 2025 +0200 Resolves: RHEL-105965 -:000000 100644 00000000 ff9aca51 A glibc-RHEL-105965.patch -:100644 100644 5b2fb0d1 abf9a13d M glibc.spec +:000000 100644 0000000 ff9aca5 A glibc-RHEL-105965.patch +:100644 100644 5b2fb0d abf9a13 M glibc.spec commit 6a840ebd269c20a10f4c69fe96d38bd58a055217 Author: Florian Weimer @@ -794,8 +838,8 @@ CommitDate: Tue Aug 5 18:02:21 2025 +0200 Resolves: RHEL-107564 -:000000 100644 00000000 06cd360b A glibc-RHEL-107564.patch -:100644 100644 b88b9780 5b2fb0d1 M glibc.spec +:000000 100644 0000000 06cd360 A glibc-RHEL-107564.patch +:100644 100644 b88b978 5b2fb0d M glibc.spec commit fd0f4ef219d74873e1da4f994757ccf55fedd38e Author: Frédéric Bérat @@ -812,11 +856,11 @@ CommitDate: Tue Aug 5 10:23:18 2025 +0200 Resolves: RHEL-50086 -:000000 100644 00000000 2af66bc8 A glibc-RHEL-50086-1.patch -:000000 100644 00000000 c03753f4 A glibc-RHEL-50086-2.patch -:100644 100644 3a064615 f06108b4 M glibc.abignore -:100644 100644 c65cd466 b88b9780 M glibc.spec -:100644 100644 5e543095 bdd3281f M ld-so-abi-s390x.baseline +:000000 100644 0000000 2af66bc A glibc-RHEL-50086-1.patch +:000000 100644 0000000 c03753f A glibc-RHEL-50086-2.patch +:100644 100644 3a06461 f06108b M glibc.abignore +:100644 100644 c65cd46 b88b978 M glibc.spec +:100644 100644 5e54309 bdd3281 M ld-so-abi-s390x.baseline commit 85eb6772adc19031d2efef3cdcd5ca2441c44b61 Author: Frédéric Bérat @@ -841,13 +885,13 @@ CommitDate: Thu Jul 31 16:28:34 2025 +0200 Resolves: RHEL-50086 -:100644 100644 0c8ea9e4 c65cd466 M glibc.spec -:000000 100644 00000000 77ed91b9 A ld-so-abi-aarch64.baseline -:000000 100644 00000000 97c85ca5 A ld-so-abi-i386.baseline -:000000 100644 00000000 df5a31f4 A ld-so-abi-ppc64le.baseline -:000000 100644 00000000 5e543095 A ld-so-abi-s390x.baseline -:000000 100644 00000000 5274a5f3 A ld-so-abi-x86_64.baseline -:000000 100644 00000000 6b33dd91 A verify-ld-so-abi.sh +:100644 100644 0c8ea9e c65cd46 M glibc.spec +:000000 100644 0000000 77ed91b A ld-so-abi-aarch64.baseline +:000000 100644 0000000 97c85ca A ld-so-abi-i386.baseline +:000000 100644 0000000 df5a31f A ld-so-abi-ppc64le.baseline +:000000 100644 0000000 5e54309 A ld-so-abi-s390x.baseline +:000000 100644 0000000 5274a5f A ld-so-abi-x86_64.baseline +:000000 100644 0000000 6b33dd9 A verify-ld-so-abi.sh commit 6b217b8105caf6f6ca64a277e569dfae69476f23 Author: Florian Weimer @@ -859,8 +903,8 @@ CommitDate: Wed Jul 30 08:44:41 2025 +0200 Resolves: RHEL-106470 -:100644 100644 563580a9 0c8ea9e4 M glibc.spec -:100644 100644 59c73565 5257de7c M wrap-find-debuginfo.sh +:100644 100644 563580a 0c8ea9e M glibc.spec +:100644 100644 59c7356 5257de7 M wrap-find-debuginfo.sh commit c429981bd571d4737f0aeeeaba96bde2f155adfd Author: Florian Weimer @@ -872,7 +916,7 @@ CommitDate: Tue Jul 29 22:35:14 2025 +0200 Related: RHEL-106166 -:100644 100644 5325ca7f 563580a9 M glibc.spec +:100644 100644 5325ca7 563580a M glibc.spec commit fa3ab0572159e63eeb4d823e61c6ba9082ea4848 Author: Florian Weimer @@ -884,7 +928,7 @@ CommitDate: Tue Jul 29 16:22:15 2025 +0200 Resolves: RHEL-106166 -:100644 100644 1be4f03d 5325ca7f M glibc.spec +:100644 100644 1be4f03 5325ca7 M glibc.spec commit f9e37fbb1e61dd0441e625864f9f0153d727052b Author: Frédéric Bérat @@ -896,8 +940,8 @@ CommitDate: Mon Jul 28 17:25:07 2025 +0200 Resolves: RHEL-105957 -:000000 100644 00000000 76c7f670 A glibc-RHEL-105957.patch -:100644 100644 3e306a4f 1be4f03d M glibc.spec +:000000 100644 0000000 76c7f67 A glibc-RHEL-105957.patch +:100644 100644 3e306a4 1be4f03 M glibc.spec commit fd535a578cf3a2acd37846d814fccd0cf6cefbb3 Author: Frédéric Bérat @@ -912,8 +956,8 @@ CommitDate: Fri Jul 25 16:49:09 2025 +0200 Resolves: RHEL-74251 -:000000 100644 00000000 7e66e04d A glibc-RHEL-74251.patch -:100644 100644 50daa912 3e306a4f M glibc.spec +:000000 100644 0000000 7e66e04 A glibc-RHEL-74251.patch +:100644 100644 50daa91 3e306a4 M glibc.spec commit 78fabd3cab885f65ef440a22c1ed38d8475cff25 Author: Frédéric Bérat @@ -928,8 +972,8 @@ CommitDate: Fri Jul 25 12:38:00 2025 +0200 Resolves: RHEL-105327 -:000000 100644 00000000 24a102f2 A glibc-RHEL-105327.patch -:100644 100644 425b2d55 50daa912 M glibc.spec +:000000 100644 0000000 24a102f A glibc-RHEL-105327.patch +:100644 100644 425b2d5 50daa91 M glibc.spec commit 3ac034a90bf3d23b02c420a19fd6cde6c7fb0af9 Author: Florian Weimer @@ -939,8 +983,8 @@ CommitDate: Wed Jul 23 09:09:13 2025 +0200 iconv: Do not create executable output files (RHEL-103952) -:000000 100644 00000000 22c522fa A glibc-RHEL-103952.patch -:100644 100644 c68393a3 425b2d55 M glibc.spec +:000000 100644 0000000 22c522f A glibc-RHEL-103952.patch +:100644 100644 c68393a 425b2d5 M glibc.spec commit bec6dd40c6f17dccf6ab56c18c116bcb3cfac13c Author: Benjamin Herrenschmidt @@ -952,27 +996,27 @@ CommitDate: Mon Jul 21 21:33:09 2025 +1000 Resolves: RHEL-93320 -:000000 100644 00000000 d5063cff A glibc-RHEL-93320-1.patch -:000000 100644 00000000 169f7611 A glibc-RHEL-93320-10.patch -:000000 100644 00000000 9086a7ba A glibc-RHEL-93320-11.patch -:000000 100644 00000000 c170ab20 A glibc-RHEL-93320-12.patch -:000000 100644 00000000 bb812544 A glibc-RHEL-93320-13.patch -:000000 100644 00000000 a14b8d3e A glibc-RHEL-93320-14.patch -:000000 100644 00000000 2cae01ca A glibc-RHEL-93320-15.patch -:000000 100644 00000000 3a1d7bbb A glibc-RHEL-93320-16.patch -:000000 100644 00000000 30116b3d A glibc-RHEL-93320-17.patch -:000000 100644 00000000 98225df9 A glibc-RHEL-93320-18.patch -:000000 100644 00000000 e2be1d6c A glibc-RHEL-93320-19.patch -:000000 100644 00000000 57cc8966 A glibc-RHEL-93320-2.patch -:000000 100644 00000000 b20fce4d A glibc-RHEL-93320-3.patch -:000000 100644 00000000 2d7117be A glibc-RHEL-93320-4.patch -:000000 100644 00000000 9a0c5de3 A glibc-RHEL-93320-5.patch -:000000 100644 00000000 bd529ad0 A glibc-RHEL-93320-6.patch -:000000 100644 00000000 3f0ba2f6 A glibc-RHEL-93320-7.patch -:000000 100644 00000000 6715ac4d A glibc-RHEL-93320-8.patch -:000000 100644 00000000 86d2780b A glibc-RHEL-93320-9.patch -:100644 100644 57168e31 3a064615 M glibc.abignore -:100644 100644 c8d5513b c68393a3 M glibc.spec +:000000 100644 0000000 d5063cf A glibc-RHEL-93320-1.patch +:000000 100644 0000000 169f761 A glibc-RHEL-93320-10.patch +:000000 100644 0000000 9086a7b A glibc-RHEL-93320-11.patch +:000000 100644 0000000 c170ab2 A glibc-RHEL-93320-12.patch +:000000 100644 0000000 bb81254 A glibc-RHEL-93320-13.patch +:000000 100644 0000000 a14b8d3 A glibc-RHEL-93320-14.patch +:000000 100644 0000000 2cae01c A glibc-RHEL-93320-15.patch +:000000 100644 0000000 3a1d7bb A glibc-RHEL-93320-16.patch +:000000 100644 0000000 30116b3 A glibc-RHEL-93320-17.patch +:000000 100644 0000000 98225df A glibc-RHEL-93320-18.patch +:000000 100644 0000000 e2be1d6 A glibc-RHEL-93320-19.patch +:000000 100644 0000000 57cc896 A glibc-RHEL-93320-2.patch +:000000 100644 0000000 b20fce4 A glibc-RHEL-93320-3.patch +:000000 100644 0000000 2d7117b A glibc-RHEL-93320-4.patch +:000000 100644 0000000 9a0c5de A glibc-RHEL-93320-5.patch +:000000 100644 0000000 bd529ad A glibc-RHEL-93320-6.patch +:000000 100644 0000000 3f0ba2f A glibc-RHEL-93320-7.patch +:000000 100644 0000000 6715ac4 A glibc-RHEL-93320-8.patch +:000000 100644 0000000 86d2780 A glibc-RHEL-93320-9.patch +:100644 100644 57168e3 3a06461 M glibc.abignore +:100644 100644 c8d5513 c68393a M glibc.spec commit 60b7e5744ec0c16567ec1e84ca2ff57e261c199b Author: Arjun Shankar @@ -990,9 +1034,9 @@ CommitDate: Thu Jul 10 18:00:46 2025 +0200 Resolves: RHEL-101986 -:000000 100644 00000000 b1fdce94 A glibc-RHEL-101986-1.patch -:000000 100644 00000000 d382cd68 A glibc-RHEL-101986-2.patch -:100644 100644 01bb43e1 c8d5513b M glibc.spec +:000000 100644 0000000 b1fdce9 A glibc-RHEL-101986-1.patch +:000000 100644 0000000 d382cd6 A glibc-RHEL-101986-2.patch +:100644 100644 01bb43e c8d5513 M glibc.spec commit 97ea51322defd337bd9f878cc36183d9ecf65186 Author: Arjun Shankar @@ -1004,16 +1048,16 @@ CommitDate: Wed Jul 9 22:50:50 2025 +0200 Resolves: RHEL-49549 -:000000 100644 00000000 299e0fab A glibc-RHEL-49549-1.patch -:000000 100644 00000000 71ed350c A glibc-RHEL-49549-2.patch -:000000 100644 00000000 e639f93b A glibc-RHEL-49549-3.patch -:000000 100644 00000000 a260ea75 A glibc-RHEL-49549-4.patch -:000000 100644 00000000 debfa2af A glibc-RHEL-49549-5.patch -:000000 100644 00000000 b1f2a205 A glibc-RHEL-49549-6.patch -:000000 100644 00000000 ebbd1b08 A glibc-RHEL-49549-7.patch -:000000 100644 00000000 5321e521 A glibc-RHEL-49549-8.patch -:000000 100644 00000000 8378f44b A glibc-RHEL-49549-9.patch -:100644 100644 a9943113 01bb43e1 M glibc.spec +:000000 100644 0000000 299e0fa A glibc-RHEL-49549-1.patch +:000000 100644 0000000 71ed350 A glibc-RHEL-49549-2.patch +:000000 100644 0000000 e639f93 A glibc-RHEL-49549-3.patch +:000000 100644 0000000 a260ea7 A glibc-RHEL-49549-4.patch +:000000 100644 0000000 debfa2a A glibc-RHEL-49549-5.patch +:000000 100644 0000000 b1f2a20 A glibc-RHEL-49549-6.patch +:000000 100644 0000000 ebbd1b0 A glibc-RHEL-49549-7.patch +:000000 100644 0000000 5321e52 A glibc-RHEL-49549-8.patch +:000000 100644 0000000 8378f44 A glibc-RHEL-49549-9.patch +:100644 100644 a994311 01bb43e M glibc.spec commit 7c82c403908b45ec83cbe759640c26bda6b4f9e4 Author: Arjun Shankar @@ -1025,8 +1069,8 @@ CommitDate: Wed Jul 9 09:58:56 2025 +0200 Resolves: RHEL-95247 -:000000 100644 00000000 bd4100a5 A glibc-RHEL-95247.patch -:100644 100644 fc6fbda1 a9943113 M glibc.spec +:000000 100644 0000000 bd4100a A glibc-RHEL-95247.patch +:100644 100644 fc6fbda a994311 M glibc.spec commit 72524e00c33366b778a7a570ab360d821dedc7df Author: Frédéric Bérat @@ -1056,18 +1100,18 @@ CommitDate: Tue Jul 8 17:06:56 2025 +0200 Resolves: RHEL-47403 -:000000 100644 00000000 96d4c507 A glibc-RHEL-47403-1.patch -:000000 100644 00000000 bc3a0d69 A glibc-RHEL-47403-10.patch -:000000 100644 00000000 c95eba8f A glibc-RHEL-47403-11.patch -:000000 100644 00000000 d7861e9a A glibc-RHEL-47403-2.patch -:000000 100644 00000000 58de62a9 A glibc-RHEL-47403-3.patch -:000000 100644 00000000 08e8cb9e A glibc-RHEL-47403-4.patch -:000000 100644 00000000 92e6c4d3 A glibc-RHEL-47403-5.patch -:000000 100644 00000000 97e3939f A glibc-RHEL-47403-6.patch -:000000 100644 00000000 a20ef02b A glibc-RHEL-47403-7.patch -:000000 100644 00000000 159e940d A glibc-RHEL-47403-8.patch -:000000 100644 00000000 8aea49b4 A glibc-RHEL-47403-9.patch -:100644 100644 1acf253c fc6fbda1 M glibc.spec +:000000 100644 0000000 96d4c50 A glibc-RHEL-47403-1.patch +:000000 100644 0000000 bc3a0d6 A glibc-RHEL-47403-10.patch +:000000 100644 0000000 c95eba8 A glibc-RHEL-47403-11.patch +:000000 100644 0000000 d7861e9 A glibc-RHEL-47403-2.patch +:000000 100644 0000000 58de62a A glibc-RHEL-47403-3.patch +:000000 100644 0000000 08e8cb9 A glibc-RHEL-47403-4.patch +:000000 100644 0000000 92e6c4d A glibc-RHEL-47403-5.patch +:000000 100644 0000000 97e3939 A glibc-RHEL-47403-6.patch +:000000 100644 0000000 a20ef02 A glibc-RHEL-47403-7.patch +:000000 100644 0000000 159e940 A glibc-RHEL-47403-8.patch +:000000 100644 0000000 8aea49b A glibc-RHEL-47403-9.patch +:100644 100644 1acf253 fc6fbda M glibc.spec commit b8e117b06d15681f5103f1844106d4ddb4831ad9 Author: Rachel Sibley @@ -1077,7 +1121,7 @@ CommitDate: Tue Jul 8 12:12:45 2025 +0000 Remove shim and libndp from revdep.yaml -:100644 100644 8cff4a81 c5b2142b M revdep.yaml +:100644 100644 8cff4a8 c5b2142 M revdep.yaml commit 4b07ecdf126b35cfb2f1fc1aab14194f849abcfd Author: Arjun Shankar @@ -1089,29 +1133,29 @@ CommitDate: Tue Jul 8 09:37:40 2025 +0000 Resolves: RHEL-24168 -:000000 100644 00000000 b645f329 A glibc-RHEL-24168-1.patch -:000000 100644 00000000 ae3fc8a7 A glibc-RHEL-24168-10.patch -:000000 100644 00000000 ac24cdef A glibc-RHEL-24168-11.patch -:000000 100644 00000000 e43ecde7 A glibc-RHEL-24168-12.patch -:000000 100644 00000000 95744444 A glibc-RHEL-24168-13.patch -:000000 100644 00000000 db8cbed1 A glibc-RHEL-24168-14.patch -:000000 100644 00000000 73279012 A glibc-RHEL-24168-15.patch -:000000 100644 00000000 90d52b36 A glibc-RHEL-24168-16.patch -:000000 100644 00000000 5f8df138 A glibc-RHEL-24168-17.patch -:000000 100644 00000000 8ae9f04e A glibc-RHEL-24168-18.patch -:000000 100644 00000000 23510fe4 A glibc-RHEL-24168-19.patch -:000000 100644 00000000 aebb3f74 A glibc-RHEL-24168-2.patch -:000000 100644 00000000 f829d9a6 A glibc-RHEL-24168-20.patch -:000000 100644 00000000 c14d3594 A glibc-RHEL-24168-21.patch -:000000 100644 00000000 d9aa1e14 A glibc-RHEL-24168-22.patch -:000000 100644 00000000 cf806133 A glibc-RHEL-24168-3.patch -:000000 100644 00000000 59ea6e58 A glibc-RHEL-24168-4.patch -:000000 100644 00000000 414b261b A glibc-RHEL-24168-5.patch -:000000 100644 00000000 ac10f440 A glibc-RHEL-24168-6.patch -:000000 100644 00000000 70136e6e A glibc-RHEL-24168-7.patch -:000000 100644 00000000 81589060 A glibc-RHEL-24168-8.patch -:000000 100644 00000000 7c06a983 A glibc-RHEL-24168-9.patch -:100644 100644 bce2f0e6 1acf253c M glibc.spec +:000000 100644 0000000 b645f32 A glibc-RHEL-24168-1.patch +:000000 100644 0000000 ae3fc8a A glibc-RHEL-24168-10.patch +:000000 100644 0000000 ac24cde A glibc-RHEL-24168-11.patch +:000000 100644 0000000 e43ecde A glibc-RHEL-24168-12.patch +:000000 100644 0000000 9574444 A glibc-RHEL-24168-13.patch +:000000 100644 0000000 db8cbed A glibc-RHEL-24168-14.patch +:000000 100644 0000000 7327901 A glibc-RHEL-24168-15.patch +:000000 100644 0000000 90d52b3 A glibc-RHEL-24168-16.patch +:000000 100644 0000000 5f8df13 A glibc-RHEL-24168-17.patch +:000000 100644 0000000 8ae9f04 A glibc-RHEL-24168-18.patch +:000000 100644 0000000 23510fe A glibc-RHEL-24168-19.patch +:000000 100644 0000000 aebb3f7 A glibc-RHEL-24168-2.patch +:000000 100644 0000000 f829d9a A glibc-RHEL-24168-20.patch +:000000 100644 0000000 c14d359 A glibc-RHEL-24168-21.patch +:000000 100644 0000000 d9aa1e1 A glibc-RHEL-24168-22.patch +:000000 100644 0000000 cf80613 A glibc-RHEL-24168-3.patch +:000000 100644 0000000 59ea6e5 A glibc-RHEL-24168-4.patch +:000000 100644 0000000 414b261 A glibc-RHEL-24168-5.patch +:000000 100644 0000000 ac10f44 A glibc-RHEL-24168-6.patch +:000000 100644 0000000 70136e6 A glibc-RHEL-24168-7.patch +:000000 100644 0000000 8158906 A glibc-RHEL-24168-8.patch +:000000 100644 0000000 7c06a98 A glibc-RHEL-24168-9.patch +:100644 100644 bce2f0e 1acf253 M glibc.spec commit 0e04d2e7727bd9e51dfeced76b71cf0ccde6e948 Author: Florian Weimer @@ -1124,9 +1168,9 @@ CommitDate: Mon Jul 7 12:07:48 2025 +0200 Co-Authored-By: Dodji Seketeli Resolves: RHEL-86591 -:000000 100644 00000000 57168e31 A glibc.abignore -:100644 100644 996c92ce bce2f0e6 M glibc.spec -:000000 100644 00000000 209d25db A rpminspect.yaml +:000000 100644 0000000 57168e3 A glibc.abignore +:100644 100644 996c92c bce2f0e M glibc.spec +:000000 100644 0000000 209d25d A rpminspect.yaml commit fe7fa81da1465acf8e76cfbf6b018e8093333615 Author: Arjun Shankar @@ -1138,9 +1182,9 @@ CommitDate: Tue Jul 1 18:36:01 2025 +0200 Resolves: RHEL-62188 -:000000 100644 00000000 c8bf9eef A glibc-RHEL-62188-1.patch -:000000 100644 00000000 813c7ff8 A glibc-RHEL-62188-2.patch -:100644 100644 5316d42e 996c92ce M glibc.spec +:000000 100644 0000000 c8bf9ee A glibc-RHEL-62188-1.patch +:000000 100644 0000000 813c7ff A glibc-RHEL-62188-2.patch +:100644 100644 5316d42 996c92c M glibc.spec commit dbdfa828840bb38ef2bd4a9a9f6d2ab458d6c493 Author: Arjun Shankar @@ -1152,9 +1196,9 @@ CommitDate: Tue Jul 1 18:33:19 2025 +0200 Resolves: RHEL-53909 -:000000 100644 00000000 f799eebf A glibc-RHEL-53909-1.patch -:000000 100644 00000000 e3c1b91a A glibc-RHEL-53909-2.patch -:100644 100644 7709b19c 5316d42e M glibc.spec +:000000 100644 0000000 f799eeb A glibc-RHEL-53909-1.patch +:000000 100644 0000000 e3c1b91 A glibc-RHEL-53909-2.patch +:100644 100644 7709b19 5316d42 M glibc.spec commit c00c38ca9cd19930510fda2d7689d493f4b3bd08 Author: Florian Weimer @@ -1166,7 +1210,7 @@ CommitDate: Sat Jun 28 11:27:37 2025 +0200 Related: RHEL-96772 -:100644 100644 9145cf94 8cff4a81 M revdep.yaml +:100644 100644 9145cf9 8cff4a8 M revdep.yaml commit c3b6dd165bbd3fc87f34fa3b6bbb24284c69cf30 Author: Florian Weimer @@ -1178,7 +1222,7 @@ CommitDate: Fri Jun 27 08:43:28 2025 +0200 Resolves: RHEL-96772 -:100644 100644 abecc6d9 9145cf94 M revdep.yaml +:100644 100644 abecc6d 9145cf9 M revdep.yaml commit 7a4b3191082ae16e83e29b7c2c600159a1b825e8 Author: Frédéric Bérat @@ -1202,14 +1246,14 @@ CommitDate: Thu Jun 26 17:05:57 2025 +0200 Resolves: RHEL-48820 -:000000 100644 00000000 bddab399 A glibc-RHEL-48820-1.patch -:000000 100644 00000000 c6e1d070 A glibc-RHEL-48820-2.patch -:000000 100644 00000000 79c78056 A glibc-RHEL-48820-3.patch -:000000 100644 00000000 59337599 A glibc-RHEL-48820-4.patch -:000000 100644 00000000 7db94b9a A glibc-RHEL-48820-5.patch -:000000 100644 00000000 5229bdb9 A glibc-RHEL-48820-6.patch -:000000 100644 00000000 aa53365f A glibc-RHEL-48820-7.patch -:100644 100644 135026b9 7709b19c M glibc.spec +:000000 100644 0000000 bddab39 A glibc-RHEL-48820-1.patch +:000000 100644 0000000 c6e1d07 A glibc-RHEL-48820-2.patch +:000000 100644 0000000 79c7805 A glibc-RHEL-48820-3.patch +:000000 100644 0000000 5933759 A glibc-RHEL-48820-4.patch +:000000 100644 0000000 7db94b9 A glibc-RHEL-48820-5.patch +:000000 100644 0000000 5229bdb A glibc-RHEL-48820-6.patch +:000000 100644 0000000 aa53365 A glibc-RHEL-48820-7.patch +:100644 100644 135026b 7709b19 M glibc.spec commit 9d355805b49d641d7bd866e96a80ebe1188e74c8 Author: Frédéric Bérat @@ -1224,10 +1268,10 @@ CommitDate: Wed Jun 25 10:55:55 2025 +0200 Resolves: RHEL-95546 -:000000 100644 00000000 dbfcddd1 A glibc-RHEL-95546-1.patch -:000000 100644 00000000 93f21afc A glibc-RHEL-95546-2.patch -:000000 100644 00000000 84f49505 A glibc-RHEL-95546-3.patch -:100644 100644 eb7770a1 135026b9 M glibc.spec +:000000 100644 0000000 dbfcddd A glibc-RHEL-95546-1.patch +:000000 100644 0000000 93f21af A glibc-RHEL-95546-2.patch +:000000 100644 0000000 84f4950 A glibc-RHEL-95546-3.patch +:100644 100644 eb7770a 135026b M glibc.spec commit dda5cdbb01c661cdc136d4be0b8684fc98c82292 Author: Florian Weimer @@ -1239,7 +1283,7 @@ CommitDate: Wed Jun 18 10:14:10 2025 +0200 Resolves: RHEL-97434 -:100644 100644 90258e68 eb7770a1 M glibc.spec +:100644 100644 90258e6 eb7770a M glibc.spec commit f52eb641bd9e1f52872a6e0b77f84777955cdf1d Author: Frédéric Bérat @@ -1257,12 +1301,12 @@ CommitDate: Wed Jun 11 14:33:55 2025 +0200 Resolves: RHEL-77082 -:000000 100644 00000000 ca6176b1 A glibc-RHEL-77082-1.patch -:000000 100644 00000000 cfa8ed3f A glibc-RHEL-77082-2.patch -:000000 100644 00000000 847efa83 A glibc-RHEL-77082-3.patch -:000000 100644 00000000 6ee14a6f A glibc-RHEL-77082-4.patch -:000000 100644 00000000 cd022eb7 A glibc-RHEL-77082-5.patch -:100644 100644 e33ecdc6 90258e68 M glibc.spec +:000000 100644 0000000 ca6176b A glibc-RHEL-77082-1.patch +:000000 100644 0000000 cfa8ed3 A glibc-RHEL-77082-2.patch +:000000 100644 0000000 847efa8 A glibc-RHEL-77082-3.patch +:000000 100644 0000000 6ee14a6 A glibc-RHEL-77082-4.patch +:000000 100644 0000000 cd022eb A glibc-RHEL-77082-5.patch +:100644 100644 e33ecdc 90258e6 M glibc.spec commit 8656f602485508bf1420e66285c0e031cde391d8 Author: Arjun Shankar @@ -1274,12 +1318,12 @@ CommitDate: Wed Jun 11 11:42:31 2025 +0200 Resolves: RHEL-57110 -:000000 100644 00000000 b14c5576 A glibc-RHEL-57110-1.patch -:000000 100644 00000000 f1620103 A glibc-RHEL-57110-2.patch -:000000 100644 00000000 bc1e2ae3 A glibc-RHEL-57110-3.patch -:000000 100644 00000000 85135aca A glibc-RHEL-57110-4.patch -:000000 100644 00000000 881862cb A glibc-RHEL-57110-5.patch -:100644 100644 e2c7b479 e33ecdc6 M glibc.spec +:000000 100644 0000000 b14c557 A glibc-RHEL-57110-1.patch +:000000 100644 0000000 f162010 A glibc-RHEL-57110-2.patch +:000000 100644 0000000 bc1e2ae A glibc-RHEL-57110-3.patch +:000000 100644 0000000 85135ac A glibc-RHEL-57110-4.patch +:000000 100644 0000000 881862c A glibc-RHEL-57110-5.patch +:100644 100644 e2c7b47 e33ecdc M glibc.spec commit c6e49bb8c78b4c4e2cdd1f58c3a246cc1faf4e84 Author: Arjun Shankar @@ -1291,13 +1335,13 @@ CommitDate: Thu Jun 5 19:14:47 2025 +0200 Resolves: RHEL-50546 -:000000 100644 00000000 2f536911 A glibc-RHEL-50546-1.patch -:000000 100644 00000000 1fc1bb80 A glibc-RHEL-50546-2.patch -:000000 100644 00000000 cd96eb5f A glibc-RHEL-50546-3.patch -:000000 100644 00000000 6fc1c7b3 A glibc-RHEL-50546-4.patch -:000000 100644 00000000 cf770e4c A glibc-RHEL-50546-5.patch -:000000 100644 00000000 fa83a4c1 A glibc-RHEL-50546-6.patch -:100644 100644 718ac21d e2c7b479 M glibc.spec +:000000 100644 0000000 2f53691 A glibc-RHEL-50546-1.patch +:000000 100644 0000000 1fc1bb8 A glibc-RHEL-50546-2.patch +:000000 100644 0000000 cd96eb5 A glibc-RHEL-50546-3.patch +:000000 100644 0000000 6fc1c7b A glibc-RHEL-50546-4.patch +:000000 100644 0000000 cf770e4 A glibc-RHEL-50546-5.patch +:000000 100644 0000000 fa83a4c A glibc-RHEL-50546-6.patch +:100644 100644 718ac21 e2c7b47 M glibc.spec commit 89ce8a7589d88fc87c87b639169377f6e7061e3f Author: Frédéric Bérat @@ -1312,8 +1356,8 @@ CommitDate: Wed Jun 4 16:33:35 2025 +0200 Resolves: RHEL-71584 -:000000 100644 00000000 009213f1 A glibc-RHEL-71584.patch -:100644 100644 23787eda 718ac21d M glibc.spec +:000000 100644 0000000 009213f A glibc-RHEL-71584.patch +:100644 100644 23787ed 718ac21 M glibc.spec commit 56deeec87794e5b7f4044aebcd105d5763ee350c Author: Frédéric Bérat @@ -1327,8 +1371,8 @@ CommitDate: Wed Jun 4 16:20:32 2025 +0200 Resolves: RHEL-94634 -:000000 100644 00000000 e9a194f6 A glibc-RHEL-94634.patch -:100644 100644 3b9a2dd6 23787eda M glibc.spec +:000000 100644 0000000 e9a194f A glibc-RHEL-94634.patch +:100644 100644 3b9a2dd 23787ed M glibc.spec commit 24908a1e2c07d45b87c8a24e12972a4de6fc02e8 Author: Florian Weimer @@ -1340,10 +1384,10 @@ CommitDate: Tue Jun 3 11:59:56 2025 +0200 Resolves: RHEL-57671 -:000000 100644 00000000 f5c66a87 A glibc-RHEL-57671-1.patch -:000000 100644 00000000 ff062597 A glibc-RHEL-57671-2.patch -:000000 100644 00000000 e833d69b A glibc-RHEL-57671-3.patch -:100644 100644 9f392fb4 3b9a2dd6 M glibc.spec +:000000 100644 0000000 f5c66a8 A glibc-RHEL-57671-1.patch +:000000 100644 0000000 ff06259 A glibc-RHEL-57671-2.patch +:000000 100644 0000000 e833d69 A glibc-RHEL-57671-3.patch +:100644 100644 9f392fb 3b9a2dd M glibc.spec commit 458ff98d2a7c5d2d325ef17a76fbec1a328c73c5 Author: Frédéric Bérat @@ -1363,12 +1407,12 @@ CommitDate: Tue May 27 14:15:24 2025 +0200 Resolves: RHEL-72017 -:000000 100644 00000000 dd909afb A glibc-RHEL-72017-1.patch -:000000 100644 00000000 37b3b425 A glibc-RHEL-72017-2.patch -:000000 100644 00000000 5125d385 A glibc-RHEL-72017-3.patch -:000000 100644 00000000 8e54d639 A glibc-RHEL-72017-4.patch -:000000 100644 00000000 2095c8da A glibc-RHEL-72017-5.patch -:100644 100644 0973704d 9f392fb4 M glibc.spec +:000000 100644 0000000 dd909af A glibc-RHEL-72017-1.patch +:000000 100644 0000000 37b3b42 A glibc-RHEL-72017-2.patch +:000000 100644 0000000 5125d38 A glibc-RHEL-72017-3.patch +:000000 100644 0000000 8e54d63 A glibc-RHEL-72017-4.patch +:000000 100644 0000000 2095c8d A glibc-RHEL-72017-5.patch +:100644 100644 0973704 9f392fb M glibc.spec commit 0ee649ca7400c56c987c1544acd82c6738ff32a2 Author: Frédéric Bérat @@ -1382,8 +1426,8 @@ CommitDate: Mon May 26 10:31:44 2025 +0200 Resolves: RHEL-57587 -:000000 100644 00000000 8295e9fa A glibc-RHEL-57587.patch -:100644 100644 7f9782f5 0973704d M glibc.spec +:000000 100644 0000000 8295e9f A glibc-RHEL-57587.patch +:100644 100644 7f9782f 0973704 M glibc.spec commit 77127fa6422444686ea16436c0897102c68d1c79 Author: Florian Weimer @@ -1395,7 +1439,7 @@ CommitDate: Mon May 26 09:56:55 2025 +0200 Related: RHEL-92697 -:100644 100644 2812c7b2 7f9782f5 M glibc.spec +:100644 100644 2812c7b 7f9782f M glibc.spec commit e38cafa2c9fd575c7a69cb52e1c96fa910b0b256 Author: Frédéric Bérat @@ -1410,8 +1454,8 @@ CommitDate: Thu May 22 18:57:09 2025 +0200 Resolves: RHEL-92095 -:000000 100644 00000000 cedea612 A glibc-RHEL-92095.patch -:100644 100644 b001e92f 2812c7b2 M glibc.spec +:000000 100644 0000000 cedea61 A glibc-RHEL-92095.patch +:100644 100644 b001e92 2812c7b M glibc.spec commit 940aa56a78dd9718d0790266fccc36e826c6f973 Author: Florian Weimer @@ -1423,9 +1467,9 @@ CommitDate: Thu May 22 14:58:58 2025 +0200 Resolves: RHEL-92697 -:000000 100644 00000000 208cb0f9 A glibc-RHEL-92697-8.patch -:000000 100644 00000000 0a34dbfe A glibc-RHEL-92697-9.patch -:100644 100644 926450e7 b001e92f M glibc.spec +:000000 100644 0000000 208cb0f A glibc-RHEL-92697-8.patch +:000000 100644 0000000 0a34dbf A glibc-RHEL-92697-9.patch +:100644 100644 926450e b001e92 M glibc.spec commit 3720984950d353033518a5a43d2d03744418a4e1 Author: Florian Weimer @@ -1437,13 +1481,13 @@ CommitDate: Wed May 21 16:57:12 2025 +0200 Resolves: RHEL-92697 -:000000 100644 00000000 0cc023af A glibc-RHEL-92697-1.patch -:000000 100644 00000000 0d837a40 A glibc-RHEL-92697-2.patch -:000000 100644 00000000 8946433b A glibc-RHEL-92697-3.patch -:000000 100644 00000000 fd4dc60d A glibc-RHEL-92697-4.patch -:000000 100644 00000000 78a1a205 A glibc-RHEL-92697-5.patch -:000000 100644 00000000 e67ad647 A glibc-RHEL-92697-6.patch -:100644 100644 4f5c1dca 926450e7 M glibc.spec +:000000 100644 0000000 0cc023a A glibc-RHEL-92697-1.patch +:000000 100644 0000000 0d837a4 A glibc-RHEL-92697-2.patch +:000000 100644 0000000 8946433 A glibc-RHEL-92697-3.patch +:000000 100644 0000000 fd4dc60 A glibc-RHEL-92697-4.patch +:000000 100644 0000000 78a1a20 A glibc-RHEL-92697-5.patch +:000000 100644 0000000 e67ad64 A glibc-RHEL-92697-6.patch +:100644 100644 4f5c1dc 926450e M glibc.spec commit 794fb55afd9f900630afe6e36fa9cecb63b494f2 Author: Florian Weimer @@ -1458,7 +1502,7 @@ CommitDate: Tue May 20 21:42:35 2025 +0200 Resolves: RHEL-92760 -:100644 100644 441be2b3 abecc6d9 M revdep.yaml +:100644 100644 441be2b abecc6d M revdep.yaml commit 836900cbb9b9bbb8fcf413fc730c8e932cd89ef6 Author: DJ Delorie @@ -1470,11 +1514,11 @@ CommitDate: Mon May 19 17:42:42 2025 -0400 Resolves: RHEL-61558 -:000000 100644 00000000 2055a04e A glibc-RHEL-61558-1.patch -:000000 100644 00000000 4661536c A glibc-RHEL-61558-2.patch -:000000 100644 00000000 f9f3c7db A glibc-RHEL-61558-3.patch -:000000 100644 00000000 ffe01934 A glibc-RHEL-61558-4.patch -:100644 100644 1baca339 4f5c1dca M glibc.spec +:000000 100644 0000000 2055a04 A glibc-RHEL-61558-1.patch +:000000 100644 0000000 4661536 A glibc-RHEL-61558-2.patch +:000000 100644 0000000 f9f3c7d A glibc-RHEL-61558-3.patch +:000000 100644 0000000 ffe0193 A glibc-RHEL-61558-4.patch +:100644 100644 1baca33 4f5c1dc M glibc.spec commit f20e6ce47ac356dcb25d1034dff4aaaba68d2897 Author: Florian Weimer @@ -1486,8 +1530,8 @@ CommitDate: Fri May 16 17:05:52 2025 +0200 Resolves: RHEL-56546 -:000000 100644 00000000 f94124fe A glibc-RHEL-56546.patch -:100644 100644 a83dd9f2 1baca339 M glibc.spec +:000000 100644 0000000 f94124f A glibc-RHEL-56546.patch +:100644 100644 a83dd9f 1baca33 M glibc.spec commit aa9ad34e57d78b044d2df26f2b389d97b26775d8 Author: Patsy Griffin @@ -1499,8 +1543,8 @@ CommitDate: Thu May 15 14:16:12 2025 -0400 Resolves: RHEL-71922 -:000000 100644 00000000 aa6513c1 A glibc-RHEL-71922.patch -:100644 100644 bfc6fbb2 a83dd9f2 M glibc.spec +:000000 100644 0000000 aa6513c A glibc-RHEL-71922.patch +:100644 100644 bfc6fbb a83dd9f M glibc.spec commit 81278fcf434bdfecd47aa1f280bc884116606c43 Author: Frédéric Bérat @@ -1517,9 +1561,9 @@ CommitDate: Wed May 14 11:16:55 2025 +0200 Resolves: RHEL-65355 -:000000 100644 00000000 333f00dd A glibc-RHEL-65355-1.patch -:000000 100644 00000000 d0d20eaf A glibc-RHEL-65355-2.patch -:100644 100644 d18729d2 bfc6fbb2 M glibc.spec +:000000 100644 0000000 333f00d A glibc-RHEL-65355-1.patch +:000000 100644 0000000 d0d20ea A glibc-RHEL-65355-2.patch +:100644 100644 d18729d bfc6fbb M glibc.spec commit 785fddefefa8bcc94dbf94123af50af0b7949031 Author: Frédéric Bérat @@ -1533,8 +1577,8 @@ CommitDate: Wed May 14 11:08:10 2025 +0200 Resolves: RHEL-63210 -:000000 100644 00000000 b1224dc7 A glibc-RHEL-63210.patch -:100644 100644 5c8d85ec d18729d2 M glibc.spec +:000000 100644 0000000 b1224dc A glibc-RHEL-63210.patch +:100644 100644 5c8d85e d18729d M glibc.spec commit 523afc95f619d3583b6abf8574fc51d4c7479cde Author: Frédéric Bérat @@ -1556,16 +1600,16 @@ CommitDate: Mon May 5 09:20:53 2025 +0200 Resolves: RHEL-68805 -:000000 100644 00000000 cab440c1 A glibc-RHEL-68805-1.patch -:000000 100644 00000000 25d35ab0 A glibc-RHEL-68805-2.patch -:000000 100644 00000000 262ac948 A glibc-RHEL-68805-3.patch -:000000 100644 00000000 0eda2812 A glibc-RHEL-68805-4.patch -:000000 100644 00000000 48a26cd4 A glibc-RHEL-68805-5.patch -:000000 100644 00000000 3e4e6577 A glibc-RHEL-68805-6.patch -:000000 100644 00000000 87b55eaf A glibc-RHEL-68805-7.patch -:000000 100644 00000000 864a6f1a A glibc-RHEL-68805-8.patch -:000000 100644 00000000 6ab13dba A glibc-RHEL-68805-9.patch -:100644 100644 3e09cd6c 5c8d85ec M glibc.spec +:000000 100644 0000000 cab440c A glibc-RHEL-68805-1.patch +:000000 100644 0000000 25d35ab A glibc-RHEL-68805-2.patch +:000000 100644 0000000 262ac94 A glibc-RHEL-68805-3.patch +:000000 100644 0000000 0eda281 A glibc-RHEL-68805-4.patch +:000000 100644 0000000 48a26cd A glibc-RHEL-68805-5.patch +:000000 100644 0000000 3e4e657 A glibc-RHEL-68805-6.patch +:000000 100644 0000000 87b55ea A glibc-RHEL-68805-7.patch +:000000 100644 0000000 864a6f1 A glibc-RHEL-68805-8.patch +:000000 100644 0000000 6ab13db A glibc-RHEL-68805-9.patch +:100644 100644 3e09cd6 5c8d85e M glibc.spec commit eca1501ad07b785a82166ec42095fd63eed961f7 Author: Patsy Griffin @@ -1578,9 +1622,9 @@ CommitDate: Tue Apr 22 13:12:35 2025 -0400 Resolves: RHEL-59712 -:000000 100644 00000000 d40d0e88 A glibc-RHEL-59712-1.patch -:000000 100644 00000000 e710a2f6 A glibc-RHEL-59712-2.patch -:100644 100644 894e0727 3e09cd6c M glibc.spec +:000000 100644 0000000 d40d0e8 A glibc-RHEL-59712-1.patch +:000000 100644 0000000 e710a2f A glibc-RHEL-59712-2.patch +:100644 100644 894e072 3e09cd6 M glibc.spec commit 7577396f04ad634f9f298236086ab5ac331e13d3 Author: Qin Yuan @@ -1592,7 +1636,7 @@ CommitDate: Wed Apr 9 15:18:13 2025 +0000 Resolves: RHEL-86554 -:100644 100644 b5bd5e61 441be2b3 M revdep.yaml +:100644 100644 b5bd5e6 441be2b M revdep.yaml commit d1d18e7a67a18152de5afd130faa82c18930d681 Author: Florian Weimer @@ -1604,8 +1648,8 @@ CommitDate: Tue Apr 8 16:06:26 2025 +0200 Resolves: RHEL-61560 -:000000 100644 00000000 e8cbb22f A glibc-RHEL-61560.patch -:100644 100644 58b83205 894e0727 M glibc.spec +:000000 100644 0000000 e8cbb22 A glibc-RHEL-61560.patch +:100644 100644 58b8320 894e072 M glibc.spec commit 49831cd1918dfaa682ba3a7054173d1a6683436b Author: Florian Weimer @@ -1617,8 +1661,8 @@ CommitDate: Tue Apr 8 10:42:17 2025 +0200 Related: RHEL-46737 -:000000 100644 00000000 fc5ce1b7 A glibc-RHEL-46737-3.patch -:100644 100644 0c9dc72b 58b83205 M glibc.spec +:000000 100644 0000000 fc5ce1b A glibc-RHEL-46737-3.patch +:100644 100644 0c9dc72 58b8320 M glibc.spec commit 60a89dc791b7c2a10e7d301892f08fce1f0f4313 Author: DJ Delorie @@ -1630,9 +1674,9 @@ CommitDate: Wed Apr 2 17:07:31 2025 -0400 Resolves: RHEL-46737 -:000000 100644 00000000 8281a0ec A glibc-RHEL-46737-1.patch -:000000 100644 00000000 9e96eb7a A glibc-RHEL-46737-2.patch -:100644 100644 64660048 0c9dc72b M glibc.spec +:000000 100644 0000000 8281a0e A glibc-RHEL-46737-1.patch +:000000 100644 0000000 9e96eb7 A glibc-RHEL-46737-2.patch +:100644 100644 6466004 0c9dc72 M glibc.spec commit 462dd9fadafb1bf0c2272caf9909c86df2d85c23 Author: Florian Weimer @@ -1644,22 +1688,22 @@ CommitDate: Wed Apr 2 15:31:08 2025 +0200 Resolves: RHEL-46726 -:000000 100644 00000000 e5bd447e A glibc-RHEL-46726-1.patch -:000000 100644 00000000 5892ad79 A glibc-RHEL-46726-10.patch -:000000 100644 00000000 3dda651c A glibc-RHEL-46726-11.patch -:000000 100644 00000000 e4c029f5 A glibc-RHEL-46726-12.patch -:000000 100644 00000000 0920d377 A glibc-RHEL-46726-13.patch -:000000 100644 00000000 84ff66e6 A glibc-RHEL-46726-14.patch -:000000 100644 00000000 d330b996 A glibc-RHEL-46726-15.patch -:000000 100644 00000000 8b082257 A glibc-RHEL-46726-2.patch -:000000 100644 00000000 ae3ee19a A glibc-RHEL-46726-3.patch -:000000 100644 00000000 7beb5ee2 A glibc-RHEL-46726-4.patch -:000000 100644 00000000 f0899bfb A glibc-RHEL-46726-5.patch -:000000 100644 00000000 a328cbca A glibc-RHEL-46726-6.patch -:000000 100644 00000000 6af0c9e3 A glibc-RHEL-46726-7.patch -:000000 100644 00000000 9afc5290 A glibc-RHEL-46726-8.patch -:000000 100644 00000000 90f97a78 A glibc-RHEL-46726-9.patch -:100644 100644 ec78b58c 64660048 M glibc.spec +:000000 100644 0000000 e5bd447 A glibc-RHEL-46726-1.patch +:000000 100644 0000000 5892ad7 A glibc-RHEL-46726-10.patch +:000000 100644 0000000 3dda651 A glibc-RHEL-46726-11.patch +:000000 100644 0000000 e4c029f A glibc-RHEL-46726-12.patch +:000000 100644 0000000 0920d37 A glibc-RHEL-46726-13.patch +:000000 100644 0000000 84ff66e A glibc-RHEL-46726-14.patch +:000000 100644 0000000 d330b99 A glibc-RHEL-46726-15.patch +:000000 100644 0000000 8b08225 A glibc-RHEL-46726-2.patch +:000000 100644 0000000 ae3ee19 A glibc-RHEL-46726-3.patch +:000000 100644 0000000 7beb5ee A glibc-RHEL-46726-4.patch +:000000 100644 0000000 f0899bf A glibc-RHEL-46726-5.patch +:000000 100644 0000000 a328cbc A glibc-RHEL-46726-6.patch +:000000 100644 0000000 6af0c9e A glibc-RHEL-46726-7.patch +:000000 100644 0000000 9afc529 A glibc-RHEL-46726-8.patch +:000000 100644 0000000 90f97a7 A glibc-RHEL-46726-9.patch +:100644 100644 ec78b58 6466004 M glibc.spec commit 44f7d061cb6d7c60ac825ac28064d3e69634cc1e Author: Frédéric Bérat @@ -1680,15 +1724,15 @@ CommitDate: Tue Apr 1 09:19:15 2025 +0200 Resolves: RHEL-44920 -:000000 100644 00000000 a1797aaa A glibc-RHEL-44920-1.patch -:000000 100644 00000000 a375886a A glibc-RHEL-44920-2.patch -:000000 100644 00000000 ca7ee817 A glibc-RHEL-44920-3.patch -:000000 100644 00000000 ca6badef A glibc-RHEL-44920-4.patch -:000000 100644 00000000 24ba2399 A glibc-RHEL-44920-5.patch -:000000 100644 00000000 c2eca09d A glibc-RHEL-44920-6.patch -:000000 100644 00000000 51ee98fe A glibc-RHEL-44920-7.patch -:000000 100644 00000000 dbba29e9 A glibc-RHEL-44920-8.patch -:100644 100644 1266639e ec78b58c M glibc.spec +:000000 100644 0000000 a1797aa A glibc-RHEL-44920-1.patch +:000000 100644 0000000 a375886 A glibc-RHEL-44920-2.patch +:000000 100644 0000000 ca7ee81 A glibc-RHEL-44920-3.patch +:000000 100644 0000000 ca6bade A glibc-RHEL-44920-4.patch +:000000 100644 0000000 24ba239 A glibc-RHEL-44920-5.patch +:000000 100644 0000000 c2eca09 A glibc-RHEL-44920-6.patch +:000000 100644 0000000 51ee98f A glibc-RHEL-44920-7.patch +:000000 100644 0000000 dbba29e A glibc-RHEL-44920-8.patch +:100644 100644 1266639 ec78b58 M glibc.spec commit 6cf5f3f769326e696230b89fb4e359189ab1af04 Author: Arjun Shankar @@ -1700,11 +1744,11 @@ CommitDate: Thu Mar 27 23:29:01 2025 +0100 Resolves: RHEL-80538 -:000000 100644 00000000 8cfcfc66 A glibc-RHEL-80538-1.patch -:000000 100644 00000000 ff2c3720 A glibc-RHEL-80538-2.patch -:000000 100644 00000000 26d8e7cb A glibc-RHEL-80538-3.patch -:000000 100644 00000000 91d107e8 A glibc-RHEL-80538-4.patch -:100644 100644 2718cf51 1266639e M glibc.spec +:000000 100644 0000000 8cfcfc6 A glibc-RHEL-80538-1.patch +:000000 100644 0000000 ff2c372 A glibc-RHEL-80538-2.patch +:000000 100644 0000000 26d8e7c A glibc-RHEL-80538-3.patch +:000000 100644 0000000 91d107e A glibc-RHEL-80538-4.patch +:100644 100644 2718cf5 1266639 M glibc.spec commit 02188336c80258e18d2f2ac8792cdc7985244399 Author: Sergey Kolosov @@ -1716,7 +1760,7 @@ CommitDate: Fri Mar 21 21:14:59 2025 +0100 annocheck needs debuginfo for checking -:100644 100644 c13e2ebd a95a4aef M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf +:100644 100644 c13e2eb a95a4ae M tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf commit e959d3bd710f2c00639ca417888d131c4c5a46db Author: Arjun Shankar @@ -1728,8 +1772,8 @@ CommitDate: Thu Mar 20 14:40:12 2025 +0100 Resolves: RHEL-84305 -:000000 100644 00000000 d1e3bcbd A glibc-RHEL-84305.patch -:100644 100644 ff9f52ce 2718cf51 M glibc.spec +:000000 100644 0000000 d1e3bcb A glibc-RHEL-84305.patch +:100644 100644 ff9f52c 2718cf5 M glibc.spec commit f98d82d9fcedbd5b3311f1631108acd6f74f5a74 Author: Arjun Shankar @@ -1741,8 +1785,8 @@ CommitDate: Fri Mar 14 18:13:47 2025 +0100 Resolves: RHEL-83007 -:000000 100644 00000000 8ae0eae6 A glibc-RHEL-83007.patch -:100644 100644 85192557 ff9f52ce M glibc.spec +:000000 100644 0000000 8ae0eae A glibc-RHEL-83007.patch +:100644 100644 8519255 ff9f52c M glibc.spec commit 7de5dcc17c2b2b5f772a1dc746eb1387c2b841e7 Author: Arjun Shankar @@ -1754,9 +1798,9 @@ CommitDate: Fri Mar 14 16:32:44 2025 +0100 Resolves: RHEL-83527 -:000000 100644 00000000 93983a53 A glibc-RHEL-83527-1.patch -:000000 100644 00000000 535b4ac8 A glibc-RHEL-83527-2.patch -:100644 100644 e5cfcec2 85192557 M glibc.spec +:000000 100644 0000000 93983a5 A glibc-RHEL-83527-1.patch +:000000 100644 0000000 535b4ac A glibc-RHEL-83527-2.patch +:100644 100644 e5cfcec 8519255 M glibc.spec commit efcdbdd0a03d0b8bfc60a4adc66fee640039dfca Author: Arjun Shankar @@ -1768,8 +1812,8 @@ CommitDate: Fri Mar 14 15:48:58 2025 +0100 Resolves: RHEL-61561 -:000000 100644 00000000 8a3ff404 A glibc-RHEL-61561.patch -:100644 100644 0b854005 e5cfcec2 M glibc.spec +:000000 100644 0000000 8a3ff40 A glibc-RHEL-61561.patch +:100644 100644 0b85400 e5cfcec M glibc.spec commit 91162ca365ec74ba56b24edbf631f3ce1c7cd626 Author: Arjun Shankar @@ -1781,8 +1825,8 @@ CommitDate: Fri Mar 14 15:31:24 2025 +0100 Resolves: RHEL-28119 -:000000 100644 00000000 ea210888 A glibc-RHEL-28119.patch -:100644 100644 b185390c 0b854005 M glibc.spec +:000000 100644 0000000 ea21088 A glibc-RHEL-28119.patch +:100644 100644 b185390 0b85400 M glibc.spec commit 2d30216b53ab08ed9a881c8d8551989b2719e2d1 Author: Florian Weimer @@ -1799,15 +1843,15 @@ CommitDate: Wed Mar 12 15:55:49 2025 +0100 Resolves: RHEL-61562 Resolves: RHEL-83017 -:000000 100644 00000000 a82a0474 A glibc-RHEL-56627-1.patch -:000000 100644 00000000 8015b599 A glibc-RHEL-56627-2.patch -:000000 100644 00000000 70be7a51 A glibc-RHEL-56627-3.patch -:000000 100644 00000000 e8bb32a6 A glibc-RHEL-56627-4.patch -:000000 100644 00000000 63756148 A glibc-RHEL-56627-5.patch -:000000 100644 00000000 7fe51f5d A glibc-RHEL-56627-6.patch -:000000 100644 00000000 2ba59e02 A glibc-RHEL-56627-7.patch -:000000 100644 00000000 b6f14f69 A glibc-RHEL-56627-8.patch -:100644 100644 0bc60363 b185390c M glibc.spec +:000000 100644 0000000 a82a047 A glibc-RHEL-56627-1.patch +:000000 100644 0000000 8015b59 A glibc-RHEL-56627-2.patch +:000000 100644 0000000 70be7a5 A glibc-RHEL-56627-3.patch +:000000 100644 0000000 e8bb32a A glibc-RHEL-56627-4.patch +:000000 100644 0000000 6375614 A glibc-RHEL-56627-5.patch +:000000 100644 0000000 7fe51f5 A glibc-RHEL-56627-6.patch +:000000 100644 0000000 2ba59e0 A glibc-RHEL-56627-7.patch +:000000 100644 0000000 b6f14f6 A glibc-RHEL-56627-8.patch +:100644 100644 0bc6036 b185390 M glibc.spec commit 6dd6a815e9a367b28edd49587620d25a394a9c92 Author: Sergey Kolosov @@ -1819,7 +1863,7 @@ CommitDate: Mon Mar 10 20:41:09 2025 +0000 Resolves: RHEL-82019 -:100644 100644 b686811b b5bd5e61 M revdep.yaml +:100644 100644 b686811 b5bd5e6 M revdep.yaml commit e87166d35095b73db4ee5cdb5555a002601128c5 Author: Tulio Magno Quites Machado Filho @@ -1831,17 +1875,17 @@ CommitDate: Mon Mar 10 14:29:47 2025 -0300 Resolves: RHEL-55471 -:000000 100644 00000000 d38927cd A glibc-RHEL-55471-1.patch -:000000 100644 00000000 112aae2f A glibc-RHEL-55471-10.patch -:000000 100644 00000000 e8483c11 A glibc-RHEL-55471-2.patch -:000000 100644 00000000 4c4c6093 A glibc-RHEL-55471-3.patch -:000000 100644 00000000 f988bf6e A glibc-RHEL-55471-4.patch -:000000 100644 00000000 9e1b43c9 A glibc-RHEL-55471-5.patch -:000000 100644 00000000 f1181793 A glibc-RHEL-55471-6.patch -:000000 100644 00000000 987ba1f7 A glibc-RHEL-55471-7.patch -:000000 100644 00000000 52246777 A glibc-RHEL-55471-8.patch -:000000 100644 00000000 46eaf5e5 A glibc-RHEL-55471-9.patch -:100644 100644 0b9be487 0bc60363 M glibc.spec +:000000 100644 0000000 d38927c A glibc-RHEL-55471-1.patch +:000000 100644 0000000 112aae2 A glibc-RHEL-55471-10.patch +:000000 100644 0000000 e8483c1 A glibc-RHEL-55471-2.patch +:000000 100644 0000000 4c4c609 A glibc-RHEL-55471-3.patch +:000000 100644 0000000 f988bf6 A glibc-RHEL-55471-4.patch +:000000 100644 0000000 9e1b43c A glibc-RHEL-55471-5.patch +:000000 100644 0000000 f118179 A glibc-RHEL-55471-6.patch +:000000 100644 0000000 987ba1f A glibc-RHEL-55471-7.patch +:000000 100644 0000000 5224677 A glibc-RHEL-55471-8.patch +:000000 100644 0000000 46eaf5e A glibc-RHEL-55471-9.patch +:100644 100644 0b9be48 0bc6036 M glibc.spec commit 283b9330dfe7aea95d0fc62cc41d7edeffcee1a9 Author: Arjun Shankar @@ -1853,8 +1897,8 @@ CommitDate: Fri Mar 7 16:32:29 2025 +0100 Resolves: RHEL-65280 -:000000 100644 00000000 464d16ee A glibc-RHEL-65280-7.patch -:100644 100644 d107e00f 0b9be487 M glibc.spec +:000000 100644 0000000 464d16e A glibc-RHEL-65280-7.patch +:100644 100644 d107e00 0b9be48 M glibc.spec commit 6e489a733fb827bd60ee55967c946bf87ecd6144 Author: Arjun Shankar @@ -1866,13 +1910,13 @@ CommitDate: Thu Mar 6 17:10:59 2025 +0100 Resolves: RHEL-65280 -:000000 100644 00000000 e596d78d A glibc-RHEL-65280-1.patch -:000000 100644 00000000 4172c7d4 A glibc-RHEL-65280-2.patch -:000000 100644 00000000 4e969df5 A glibc-RHEL-65280-3.patch -:000000 100644 00000000 55bd8f06 A glibc-RHEL-65280-4.patch -:000000 100644 00000000 8265f04f A glibc-RHEL-65280-5.patch -:000000 100644 00000000 80d354a7 A glibc-RHEL-65280-6.patch -:100644 100644 a3764f68 d107e00f M glibc.spec +:000000 100644 0000000 e596d78 A glibc-RHEL-65280-1.patch +:000000 100644 0000000 4172c7d A glibc-RHEL-65280-2.patch +:000000 100644 0000000 4e969df A glibc-RHEL-65280-3.patch +:000000 100644 0000000 55bd8f0 A glibc-RHEL-65280-4.patch +:000000 100644 0000000 8265f04 A glibc-RHEL-65280-5.patch +:000000 100644 0000000 80d354a A glibc-RHEL-65280-6.patch +:100644 100644 a3764f6 d107e00 M glibc.spec commit 025c5d4ac211b9b1b838ac22bf48cd6dea2a7637 Author: Frédéric Bérat @@ -1887,9 +1931,9 @@ CommitDate: Mon Mar 3 14:46:45 2025 +0100 Resolves: RHEL-61569 -:000000 100644 00000000 8da39097 A glibc-RHEL-61569-1.patch -:000000 100644 00000000 ece747c1 A glibc-RHEL-61569-2.patch -:100644 100644 60080c88 a3764f68 M glibc.spec +:000000 100644 0000000 8da3909 A glibc-RHEL-61569-1.patch +:000000 100644 0000000 ece747c A glibc-RHEL-61569-2.patch +:100644 100644 60080c8 a3764f6 M glibc.spec commit c910dd7808ff190e88d9f936f08f79381f4edb14 Author: Frédéric Bérat @@ -1903,8 +1947,8 @@ CommitDate: Mon Mar 3 14:30:56 2025 +0100 Resolves: RHEL-46729 -:000000 100644 00000000 f835f99a A glibc-RHEL-46729.patch -:100644 100644 407af2ea 60080c88 M glibc.spec +:000000 100644 0000000 f835f99 A glibc-RHEL-46729.patch +:100644 100644 407af2e 60080c8 M glibc.spec commit 0d550037a29fb339706338d3cba9f849f4a2f5a2 Author: DJ Delorie @@ -1916,8 +1960,8 @@ CommitDate: Fri Feb 28 14:00:18 2025 -0500 Resolves: RHEL-67593 -:000000 100644 00000000 a4681085 A glibc-RHEL-67593.patch -:100644 100644 b112da44 407af2ea M glibc.spec +:000000 100644 0000000 a468108 A glibc-RHEL-67593.patch +:100644 100644 b112da4 407af2e M glibc.spec commit cadb5c6bdcdc589480093c2858b3214733d880ed Author: Tulio Magno Quites Machado Filho @@ -1929,12 +1973,12 @@ CommitDate: Wed Feb 19 14:45:09 2025 -0300 Resolves: RHEL-57585 -:000000 100644 00000000 7936eafb A glibc-RHEL-57585-1.patch -:000000 100644 00000000 e97ab5cf A glibc-RHEL-57585-2.patch -:000000 100644 00000000 405db3f0 A glibc-RHEL-57585-3.patch -:000000 100644 00000000 17481cd5 A glibc-RHEL-57585-4.patch -:000000 100644 00000000 b531a3cc A glibc-RHEL-57585-5.patch -:100644 100644 b57d635b b112da44 M glibc.spec +:000000 100644 0000000 7936eaf A glibc-RHEL-57585-1.patch +:000000 100644 0000000 e97ab5c A glibc-RHEL-57585-2.patch +:000000 100644 0000000 405db3f A glibc-RHEL-57585-3.patch +:000000 100644 0000000 17481cd A glibc-RHEL-57585-4.patch +:000000 100644 0000000 b531a3c A glibc-RHEL-57585-5.patch +:100644 100644 b57d635 b112da4 M glibc.spec commit 8157a2f85af6907046c92aff845c1f03e531fdc4 Author: Florian Weimer @@ -1946,8 +1990,8 @@ CommitDate: Thu Feb 13 19:25:59 2025 +0100 Resolves: RHEL-71547 -:000000 100644 00000000 a279913a A glibc-RHEL-71547.patch -:100644 100644 77369db3 b57d635b M glibc.spec +:000000 100644 0000000 a279913 A glibc-RHEL-71547.patch +:100644 100644 77369db b57d635 M glibc.spec commit 2ca0b0c57e6c6d64509aba47b74c5fe134a9df0f Author: Florian Weimer @@ -1959,10 +2003,10 @@ CommitDate: Thu Feb 13 16:42:58 2025 +0100 Resolves: RHEL-24740 -:000000 100644 00000000 7fd8043d A glibc-RHEL-24740-1.patch -:000000 100644 00000000 11f95104 A glibc-RHEL-24740-2.patch -:000000 100644 00000000 353966cf A glibc-RHEL-24740-3.patch -:100644 100644 b2235739 77369db3 M glibc.spec +:000000 100644 0000000 7fd8043 A glibc-RHEL-24740-1.patch +:000000 100644 0000000 11f9510 A glibc-RHEL-24740-2.patch +:000000 100644 0000000 353966c A glibc-RHEL-24740-3.patch +:100644 100644 b223573 77369db M glibc.spec commit 1ed4da461ec8c792c7adf3cf66d6a1a9850b8cc5 Author: Arjun Shankar @@ -1980,8 +2024,8 @@ CommitDate: Tue Feb 11 12:57:29 2025 +0100 Related: RHEL-46761 -:000000 100644 00000000 9c72669d A glibc-RHEL-46761-6.patch -:100644 100644 440fcb86 b2235739 M glibc.spec +:000000 100644 0000000 9c72669 A glibc-RHEL-46761-6.patch +:100644 100644 440fcb8 b223573 M glibc.spec commit d45151a8525cb293606c8a82e8bad8e3887f8ae2 Author: Florian Weimer @@ -1993,8 +2037,8 @@ CommitDate: Mon Feb 10 17:29:48 2025 +0100 Related: RHEL-46738 -:000000 100644 00000000 9eb81076 A glibc-RHEL-46738-5.patch -:100644 100644 4f988bca 440fcb86 M glibc.spec +:000000 100644 0000000 9eb8107 A glibc-RHEL-46738-5.patch +:100644 100644 4f988bc 440fcb8 M glibc.spec commit bc9f002ddaf4819bf9d7532f5eac5fd8b1cb8987 Author: Carlos O'Donell @@ -2006,17 +2050,17 @@ CommitDate: Fri Feb 7 14:09:54 2025 -0500 Resolves: RHEL-2419 -:000000 100644 00000000 932bd016 A glibc-RHEL-2419-1.patch -:000000 100644 00000000 e0481ced A glibc-RHEL-2419-10.patch -:000000 100644 00000000 99e7873a A glibc-RHEL-2419-2.patch -:000000 100644 00000000 00456d21 A glibc-RHEL-2419-3.patch -:000000 100644 00000000 486903c9 A glibc-RHEL-2419-4.patch -:000000 100644 00000000 3df4fa83 A glibc-RHEL-2419-5.patch -:000000 100644 00000000 7e966e5d A glibc-RHEL-2419-6.patch -:000000 100644 00000000 87c54f2f A glibc-RHEL-2419-7.patch -:000000 100644 00000000 eff1b1a4 A glibc-RHEL-2419-8.patch -:000000 100644 00000000 4f94d431 A glibc-RHEL-2419-9.patch -:100644 100644 0ebae007 4f988bca M glibc.spec +:000000 100644 0000000 932bd01 A glibc-RHEL-2419-1.patch +:000000 100644 0000000 e0481ce A glibc-RHEL-2419-10.patch +:000000 100644 0000000 99e7873 A glibc-RHEL-2419-2.patch +:000000 100644 0000000 00456d2 A glibc-RHEL-2419-3.patch +:000000 100644 0000000 486903c A glibc-RHEL-2419-4.patch +:000000 100644 0000000 3df4fa8 A glibc-RHEL-2419-5.patch +:000000 100644 0000000 7e966e5 A glibc-RHEL-2419-6.patch +:000000 100644 0000000 87c54f2 A glibc-RHEL-2419-7.patch +:000000 100644 0000000 eff1b1a A glibc-RHEL-2419-8.patch +:000000 100644 0000000 4f94d43 A glibc-RHEL-2419-9.patch +:100644 100644 0ebae00 4f988bc M glibc.spec commit f604405c3e6bc243fd50b7f2a1231ec735dc3bc6 Author: DJ Delorie @@ -2028,11 +2072,11 @@ CommitDate: Wed Feb 5 22:41:22 2025 -0500 Resolves: RHEL-67592 -:000000 100644 00000000 31e6cb51 A glibc-RHEL-67592-1.patch -:000000 100644 00000000 7c34b4b4 A glibc-RHEL-67592-2.patch -:000000 100644 00000000 c496c9c8 A glibc-RHEL-67592-3.patch -:000000 100644 00000000 034186cf A glibc-RHEL-67592-4.patch -:100644 100644 c73fe9fe 0ebae007 M glibc.spec +:000000 100644 0000000 31e6cb5 A glibc-RHEL-67592-1.patch +:000000 100644 0000000 7c34b4b A glibc-RHEL-67592-2.patch +:000000 100644 0000000 c496c9c A glibc-RHEL-67592-3.patch +:000000 100644 0000000 034186c A glibc-RHEL-67592-4.patch +:100644 100644 c73fe9f 0ebae00 M glibc.spec commit 38cc5f2c2ba571929ce94f10126e7ed256d69bf6 Author: Patsy Griffin @@ -2044,8 +2088,8 @@ CommitDate: Fri Jan 31 16:31:03 2025 -0500 Resolves: RHEL-75938 -:000000 100644 00000000 a1827ea5 A glibc-RHEL-75938.patch -:100644 100644 174d970d c73fe9fe M glibc.spec +:000000 100644 0000000 a1827ea A glibc-RHEL-75938.patch +:100644 100644 174d970 c73fe9f M glibc.spec commit 835c6731c5334ec76fc5b1c58aed8c0feff55c1c Author: Frédéric Bérat @@ -2057,8 +2101,8 @@ CommitDate: Tue Jan 28 18:04:26 2025 +0100 Resolves: RHEL-46761 -:000000 100644 00000000 31ff3f34 A glibc-RHEL-46761-5.patch -:100644 100644 a988ebea 174d970d M glibc.spec +:000000 100644 0000000 31ff3f3 A glibc-RHEL-46761-5.patch +:100644 100644 a988ebe 174d970 M glibc.spec commit dac4e2b164d46b5d290a8e0b0ca4a83b1f4ac499 Author: Florian Weimer @@ -2070,7 +2114,7 @@ CommitDate: Mon Jan 27 17:23:06 2025 +0100 Related: RHEL-76359 -:100644 100644 6a72f25f a988ebea M glibc.spec +:100644 100644 6a72f25 a988ebe M glibc.spec commit a85ecb06f22bb203d7e80f1e0913516d5e5f4155 Author: Florian Weimer @@ -2082,7 +2126,7 @@ CommitDate: Mon Jan 27 10:29:28 2025 +0100 Resolves: RHEL-76305 -:100644 100644 e7428020 b686811b M revdep.yaml +:100644 100644 e742802 b686811 M revdep.yaml commit 02300f90600d7df861dd1c6efce9868708678ef4 Author: Florian Weimer @@ -2094,9 +2138,9 @@ CommitDate: Fri Jan 24 23:21:13 2025 +0100 Resolves: RHEL-75810 -:000000 100644 00000000 00ab2842 A glibc-RHEL-75810-2.patch -:000000 100644 00000000 3fa2f84a A glibc-RHEL-75810-3.patch -:100644 100644 82c8929f 6a72f25f M glibc.spec +:000000 100644 0000000 00ab284 A glibc-RHEL-75810-2.patch +:000000 100644 0000000 3fa2f84 A glibc-RHEL-75810-3.patch +:100644 100644 82c8929 6a72f25 M glibc.spec commit 14e4554e308467e7426f7bf957e53c1c347e43b0 Author: Florian Weimer @@ -2108,11 +2152,11 @@ CommitDate: Thu Jan 23 23:18:58 2025 +0100 Resolves: RHEL-46761 -:000000 100644 00000000 b9ad9a0c A glibc-RHEL-46761-1.patch -:000000 100644 00000000 4fc62b20 A glibc-RHEL-46761-2.patch -:000000 100644 00000000 2766eb64 A glibc-RHEL-46761-3.patch -:000000 100644 00000000 7c0e9588 A glibc-RHEL-46761-4.patch -:100644 100644 cd947b9b 82c8929f M glibc.spec +:000000 100644 0000000 b9ad9a0 A glibc-RHEL-46761-1.patch +:000000 100644 0000000 4fc62b2 A glibc-RHEL-46761-2.patch +:000000 100644 0000000 2766eb6 A glibc-RHEL-46761-3.patch +:000000 100644 0000000 7c0e958 A glibc-RHEL-46761-4.patch +:100644 100644 cd947b9 82c8929 M glibc.spec commit 53bdedaafc5355ec3d1ccf0666f7e00184a6b8ca Author: Florian Weimer @@ -2124,8 +2168,8 @@ CommitDate: Thu Jan 23 19:16:46 2025 +0100 Resolves: RHEL-75810 -:000000 100644 00000000 361e0a22 A glibc-RHEL-75810.patch -:100644 100644 d50485a2 cd947b9b M glibc.spec +:000000 100644 0000000 361e0a2 A glibc-RHEL-75810.patch +:100644 100644 d50485a cd947b9 M glibc.spec commit 595519af87531b6bee92455b105a2a33997db5e0 Author: Florian Weimer @@ -2137,11 +2181,11 @@ CommitDate: Thu Jan 23 17:42:04 2025 +0100 Resolves: RHEL-65359 -:000000 100644 00000000 0a02cd55 A glibc-RHEL-65359-1.patch -:000000 100644 00000000 9a962ecd A glibc-RHEL-65359-2.patch -:000000 100644 00000000 757b8e1d A glibc-RHEL-65359-3.patch -:000000 100644 00000000 c1c5f9b4 A glibc-RHEL-65359-4.patch -:100644 100644 082b2628 d50485a2 M glibc.spec +:000000 100644 0000000 0a02cd5 A glibc-RHEL-65359-1.patch +:000000 100644 0000000 9a962ec A glibc-RHEL-65359-2.patch +:000000 100644 0000000 757b8e1 A glibc-RHEL-65359-3.patch +:000000 100644 0000000 c1c5f9b A glibc-RHEL-65359-4.patch +:100644 100644 082b262 d50485a M glibc.spec commit 919ea1fa7048c72e0c6219ff1f83eaf59e4035f8 Author: Florian Weimer @@ -2153,8 +2197,8 @@ CommitDate: Thu Jan 23 11:31:04 2025 +0100 Resolves: RHEL-50550 -:000000 100644 00000000 b448e5a4 A glibc-RHEL-50550.patch -:100644 100644 c018c07c 082b2628 M glibc.spec +:000000 100644 0000000 b448e5a A glibc-RHEL-50550.patch +:100644 100644 c018c07 082b262 M glibc.spec commit a61c995534874e706d2c6f7e30346d0b1a62101c Author: Florian Weimer @@ -2166,11 +2210,11 @@ CommitDate: Tue Jan 21 12:19:24 2025 +0100 Resolves: RHEL-61559 -:000000 100644 00000000 71eff054 A glibc-RHEL-61559-1.patch -:000000 100644 00000000 619d9769 A glibc-RHEL-61559-2.patch -:000000 100644 00000000 be715f90 A glibc-RHEL-61559-3.patch -:000000 100644 00000000 d97c4c00 A glibc-RHEL-61559-4.patch -:100644 100644 0f034ebf c018c07c M glibc.spec +:000000 100644 0000000 71eff05 A glibc-RHEL-61559-1.patch +:000000 100644 0000000 619d976 A glibc-RHEL-61559-2.patch +:000000 100644 0000000 be715f9 A glibc-RHEL-61559-3.patch +:000000 100644 0000000 d97c4c0 A glibc-RHEL-61559-4.patch +:100644 100644 0f034eb c018c07 M glibc.spec commit df60b451a26db2f8ae5ed6ae80b843b8bac5060d Author: Florian Weimer @@ -2182,9 +2226,9 @@ CommitDate: Mon Jan 20 15:42:58 2025 +0100 Resolves: RHEL-58987 -:000000 100644 00000000 e9413926 A glibc-RHEL-58987-1.patch -:000000 100644 00000000 fcbf4bae A glibc-RHEL-58987-2.patch -:100644 100644 259b7b3c 0f034ebf M glibc.spec +:000000 100644 0000000 e941392 A glibc-RHEL-58987-1.patch +:000000 100644 0000000 fcbf4ba A glibc-RHEL-58987-2.patch +:100644 100644 259b7b3 0f034eb M glibc.spec commit 09d9859c80b272fe64b76f028e72ecadfd7f8f76 Author: Frédéric Bérat @@ -2196,9 +2240,9 @@ CommitDate: Tue Jan 14 09:54:40 2025 +0100 Resolves: RHEL-69633 -:000000 100644 00000000 bfe625fb A glibc-RHEL-69633-1.patch -:000000 100644 00000000 9bc90604 A glibc-RHEL-69633-2.patch -:100644 100644 be2c2a06 259b7b3c M glibc.spec +:000000 100644 0000000 bfe625f A glibc-RHEL-69633-1.patch +:000000 100644 0000000 9bc9060 A glibc-RHEL-69633-2.patch +:100644 100644 be2c2a0 259b7b3 M glibc.spec commit 4b08b3df909c78706651348ba5778b2f1bfe38df Author: Frédéric Bérat @@ -2210,8 +2254,8 @@ CommitDate: Tue Jan 14 09:54:23 2025 +0100 Resolves: RHEL-68857 -:000000 100644 00000000 c453aa41 A glibc-RHEL-68857.patch -:100644 100644 70c521c2 be2c2a06 M glibc.spec +:000000 100644 0000000 c453aa4 A glibc-RHEL-68857.patch +:100644 100644 70c521c be2c2a0 M glibc.spec commit aed55c3eae8adac239b7a49278a77411f994636a Author: Frédéric Bérat @@ -2223,9 +2267,9 @@ CommitDate: Tue Jan 14 09:53:19 2025 +0100 Resolves: RHEL-62716 -:000000 100644 00000000 e7d07576 A glibc-RHEL-62716-1.patch -:000000 100644 00000000 311f4781 A glibc-RHEL-62716-2.patch -:100644 100644 b571ad0b 70c521c2 M glibc.spec +:000000 100644 0000000 e7d0757 A glibc-RHEL-62716-1.patch +:000000 100644 0000000 311f478 A glibc-RHEL-62716-2.patch +:100644 100644 b571ad0 70c521c M glibc.spec commit 0c05a36bc6bdca3004b218753ccee8c56ebad56a Author: Frédéric Bérat @@ -2237,9 +2281,9 @@ CommitDate: Tue Jan 14 09:52:52 2025 +0100 Resolves: RHEL-58989 -:000000 100644 00000000 dd7bd382 A glibc-RHEL-58989-1.patch -:000000 100644 00000000 bbf813a2 A glibc-RHEL-58989-2.patch -:100644 100644 ee09a78a b571ad0b M glibc.spec +:000000 100644 0000000 dd7bd38 A glibc-RHEL-58989-1.patch +:000000 100644 0000000 bbf813a A glibc-RHEL-58989-2.patch +:100644 100644 ee09a78 b571ad0 M glibc.spec commit 19df5781cbadf7646da82cbfb86cdd24d6837f4a Author: Frédéric Bérat @@ -2253,12 +2297,12 @@ CommitDate: Tue Jan 14 09:52:10 2025 +0100 Resolves: RHEL-65358 -:000000 100644 00000000 d6d924cf A glibc-RHEL-65358-1.patch -:000000 100644 00000000 7884d35f A glibc-RHEL-65358-2.patch -:000000 100644 00000000 3b0a167a A glibc-RHEL-65358-3.patch -:000000 100644 00000000 bdd262c1 A glibc-RHEL-65358-4.patch -:000000 100644 00000000 fdab7a49 A glibc-RHEL-65358-5.patch -:100644 100644 d71b306d ee09a78a M glibc.spec +:000000 100644 0000000 d6d924c A glibc-RHEL-65358-1.patch +:000000 100644 0000000 7884d35 A glibc-RHEL-65358-2.patch +:000000 100644 0000000 3b0a167 A glibc-RHEL-65358-3.patch +:000000 100644 0000000 bdd262c A glibc-RHEL-65358-4.patch +:000000 100644 0000000 fdab7a4 A glibc-RHEL-65358-5.patch +:100644 100644 d71b306 ee09a78 M glibc.spec commit bd7cb938426e09802238346f603187e336eca232 Author: Frédéric Bérat @@ -2273,7 +2317,7 @@ CommitDate: Fri Jan 10 18:48:18 2025 +0100 Resolves: RHEL-56541 -:100644 100644 664c1f6b d71b306d M glibc.spec +:100644 100644 664c1f6 d71b306 M glibc.spec commit 476f874c7c498e02f74642b8fe2141ef5690e1c5 Author: Sergey Kolosov @@ -2285,7 +2329,7 @@ CommitDate: Fri Jan 10 14:33:26 2025 +0000 Resolves: RHEL-68331 -:100644 100644 9515e710 e7428020 M revdep.yaml +:100644 100644 9515e71 e742802 M revdep.yaml commit 514106f5ddf238a3fdb6863bf848a787391f6960 Author: Frédéric Bérat @@ -2297,7 +2341,7 @@ CommitDate: Fri Jan 10 14:07:27 2025 +0100 Resolves: RHEL-56544 -:100644 100644 eb8f48e4 664c1f6b M glibc.spec +:100644 100644 eb8f48e 664c1f6 M glibc.spec commit f25b783f7679c41f1977b52ecc843f237b6be641 Author: Frédéric Bérat @@ -2309,7 +2353,7 @@ CommitDate: Fri Jan 10 14:01:21 2025 +0100 Resolves: RHEL-56543 -:100644 100644 dd5c850d eb8f48e4 M glibc.spec +:100644 100644 dd5c850 eb8f48e M glibc.spec commit d2c49567f7a7af7a65f5175abd1c8472bee101c9 Author: Frédéric Bérat @@ -2321,16 +2365,16 @@ CommitDate: Fri Jan 10 11:22:50 2025 +0100 Resolves: RHEL-56542 -:000000 100644 00000000 e0fe19d6 A glibc-RHEL-56542-1.patch -:000000 100644 00000000 ebdd4fb7 A glibc-RHEL-56542-2.patch -:000000 100644 00000000 180b29e2 A glibc-RHEL-56542-3.patch -:000000 100644 00000000 18eb6442 A glibc-RHEL-56542-4.patch -:000000 100644 00000000 3c21fe0b A glibc-RHEL-56542-5.patch -:000000 100644 00000000 d2c7e9fd A glibc-RHEL-56542-6.patch -:000000 100644 00000000 fffcfc69 A glibc-RHEL-56542-7.patch -:000000 100644 00000000 cc4f9080 A glibc-RHEL-56542-8.patch -:000000 100644 00000000 4c411767 A glibc-RHEL-56542-9.patch -:100644 100644 605acc8c dd5c850d M glibc.spec +:000000 100644 0000000 e0fe19d A glibc-RHEL-56542-1.patch +:000000 100644 0000000 ebdd4fb A glibc-RHEL-56542-2.patch +:000000 100644 0000000 180b29e A glibc-RHEL-56542-3.patch +:000000 100644 0000000 18eb644 A glibc-RHEL-56542-4.patch +:000000 100644 0000000 3c21fe0 A glibc-RHEL-56542-5.patch +:000000 100644 0000000 d2c7e9f A glibc-RHEL-56542-6.patch +:000000 100644 0000000 fffcfc6 A glibc-RHEL-56542-7.patch +:000000 100644 0000000 cc4f908 A glibc-RHEL-56542-8.patch +:000000 100644 0000000 4c41176 A glibc-RHEL-56542-9.patch +:100644 100644 605acc8 dd5c850 M glibc.spec commit 08cb9d728423df68140270d05c42f06614b468a6 Author: Frédéric Bérat @@ -2342,8 +2386,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-65354 -:000000 100644 00000000 5f93e8a6 A glibc-RHEL-65354.patch -:100644 100644 1759a5c2 605acc8c M glibc.spec +:000000 100644 0000000 5f93e8a A glibc-RHEL-65354.patch +:100644 100644 1759a5c 605acc8 M glibc.spec commit 4086c820309d2a73da2eb38657b06295a937e567 Author: Frédéric Bérat @@ -2355,8 +2399,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-58979 -:000000 100644 00000000 37cf6a3b A glibc-RHEL-58979.patch -:100644 100644 892e88b1 1759a5c2 M glibc.spec +:000000 100644 0000000 37cf6a3 A glibc-RHEL-58979.patch +:100644 100644 892e88b 1759a5c M glibc.spec commit dcd1aa02556b34d04bae98961188f077753881c1 Author: Frédéric Bérat @@ -2368,8 +2412,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-61568 -:000000 100644 00000000 b28221ce A glibc-RHEL-61568.patch -:100644 100644 89855775 892e88b1 M glibc.spec +:000000 100644 0000000 b28221c A glibc-RHEL-61568.patch +:100644 100644 8985577 892e88b M glibc.spec commit 323df513716564ca6d656700f5b783bfc53a4638 Author: Frédéric Bérat @@ -2381,9 +2425,9 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-68850 -:000000 100644 00000000 adcdece8 A glibc-RHEL-68850-1.patch -:000000 100644 00000000 f6e4789d A glibc-RHEL-68850-2.patch -:100644 100644 6d58cbd8 89855775 M glibc.spec +:000000 100644 0000000 adcdece A glibc-RHEL-68850-1.patch +:000000 100644 0000000 f6e4789 A glibc-RHEL-68850-2.patch +:100644 100644 6d58cbd 8985577 M glibc.spec commit 13a2c1bb0520540a0d53c7e746476282e561a7fb Author: Frédéric Bérat @@ -2395,9 +2439,9 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-70395 -:000000 100644 00000000 27c145af A glibc-RHEL-70395-1.patch -:000000 100644 00000000 49bee5c2 A glibc-RHEL-70395-2.patch -:100644 100644 1a3a26dc 6d58cbd8 M glibc.spec +:000000 100644 0000000 27c145a A glibc-RHEL-70395-1.patch +:000000 100644 0000000 49bee5c A glibc-RHEL-70395-2.patch +:100644 100644 1a3a26d 6d58cbd M glibc.spec commit 473cc7998b0a82cb9876ef4f218ac6884f415a82 Author: Frédéric Bérat @@ -2409,8 +2453,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-69028 -:000000 100644 00000000 802b4f90 A glibc-RHEL-69028.patch -:100644 100644 aee94d75 1a3a26dc M glibc.spec +:000000 100644 0000000 802b4f9 A glibc-RHEL-69028.patch +:100644 100644 aee94d7 1a3a26d M glibc.spec commit 3b322d99962f9c39cbac1ac5d7fe3d55bb9999a6 Author: Frédéric Bérat @@ -2422,8 +2466,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-65910 -:000000 100644 00000000 faf07800 A glibc-RHEL-65910.patch -:100644 100644 3d10fa9e aee94d75 M glibc.spec +:000000 100644 0000000 faf0780 A glibc-RHEL-65910.patch +:100644 100644 3d10fa9 aee94d7 M glibc.spec commit fe757a315a0c815f2845860f608cdcb7c6b57897 Author: Frédéric Bérat @@ -2435,8 +2479,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-46740 -:000000 100644 00000000 af9daae0 A glibc-RHEL-46740.patch -:100644 100644 36d9d8d3 3d10fa9e M glibc.spec +:000000 100644 0000000 af9daae A glibc-RHEL-46740.patch +:100644 100644 36d9d8d 3d10fa9 M glibc.spec commit 513884a413f4d970d93d142ef881ab3d55ffb0a7 Author: Frédéric Bérat @@ -2448,8 +2492,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-58671 -:000000 100644 00000000 a991ecef A glibc-RHEL-58671.patch -:100644 100644 65282900 36d9d8d3 M glibc.spec +:000000 100644 0000000 a991ece A glibc-RHEL-58671.patch +:100644 100644 6528290 36d9d8d M glibc.spec commit b339cb6eb40c51351e484439ed1b0a82b22c6213 Author: Frédéric Bérat @@ -2461,10 +2505,10 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-56540 -:000000 100644 00000000 f1f19414 A glibc-RHEL-56540-1.patch -:000000 100644 00000000 a4ccf826 A glibc-RHEL-56540-2.patch -:000000 100644 00000000 b35ccfc7 A glibc-RHEL-56540-3.patch -:100644 100644 30b5c6a9 65282900 M glibc.spec +:000000 100644 0000000 f1f1941 A glibc-RHEL-56540-1.patch +:000000 100644 0000000 a4ccf82 A glibc-RHEL-56540-2.patch +:000000 100644 0000000 b35ccfc A glibc-RHEL-56540-3.patch +:100644 100644 30b5c6a 6528290 M glibc.spec commit 6818485a9d2700417b0b07c4e54f6272496ac71e Author: Frédéric Bérat @@ -2476,8 +2520,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-56539 -:000000 100644 00000000 64d5b3fd A glibc-RHEL-56539.patch -:100644 100644 acf6cfd6 30b5c6a9 M glibc.spec +:000000 100644 0000000 64d5b3f A glibc-RHEL-56539.patch +:100644 100644 acf6cfd 30b5c6a M glibc.spec commit e73ffcf12886caea57fb69eaf9c8b214e62fb646 Author: Frédéric Bérat @@ -2489,8 +2533,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-57586 -:000000 100644 00000000 259060a5 A glibc-RHEL-57586.patch -:100644 100644 cbd98063 acf6cfd6 M glibc.spec +:000000 100644 0000000 259060a A glibc-RHEL-57586.patch +:100644 100644 cbd9806 acf6cfd M glibc.spec commit de2aa73d68291a72a3109b17ffa3d907a0b64c14 Author: Frédéric Bérat @@ -2502,8 +2546,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-56743 -:000000 100644 00000000 e7b1bdaf A glibc-RHEL-56743.patch -:100644 100644 1bee253d cbd98063 M glibc.spec +:000000 100644 0000000 e7b1bda A glibc-RHEL-56743.patch +:100644 100644 1bee253 cbd9806 M glibc.spec commit 0f8a066654f0cc7c0fcfabf9a204bcda09063654 Author: Frédéric Bérat @@ -2515,8 +2559,8 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-54250 -:000000 100644 00000000 712376c9 A glibc-RHEL-54250.patch -:100644 100644 a0012daa 1bee253d M glibc.spec +:000000 100644 0000000 712376c A glibc-RHEL-54250.patch +:100644 100644 a0012da 1bee253 M glibc.spec commit 6a258f46b83c46df167a523cab0ce85dd1ce96d9 Author: Frédéric Bérat @@ -2528,9 +2572,9 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-38225 -:000000 100644 00000000 4a2a2b4e A glibc-RHEL-38225-1.patch -:000000 100644 00000000 fc29da0a A glibc-RHEL-38225-2.patch -:100644 100644 9e32566c a0012daa M glibc.spec +:000000 100644 0000000 4a2a2b4 A glibc-RHEL-38225-1.patch +:000000 100644 0000000 fc29da0 A glibc-RHEL-38225-2.patch +:100644 100644 9e32566 a0012da M glibc.spec commit 7c11f24237edcd498a5a78e46bf1cba252604e3a Author: Frédéric Bérat @@ -2542,9 +2586,9 @@ CommitDate: Thu Jan 9 13:33:09 2025 +0100 Resolves: RHEL-65356 -:000000 100644 00000000 8b401111 A glibc-RHEL-65356-1.patch -:000000 100644 00000000 7a242692 A glibc-RHEL-65356-2.patch -:100644 100644 52a54085 9e32566c M glibc.spec +:000000 100644 0000000 8b40111 A glibc-RHEL-65356-1.patch +:000000 100644 0000000 7a24269 A glibc-RHEL-65356-2.patch +:100644 100644 52a5408 9e32566 M glibc.spec commit 823c0aee76b2f4840bf9b383c3d3107ffc3d363b Author: Sergey Kolosov @@ -2556,464 +2600,464 @@ CommitDate: Wed Jan 8 19:01:11 2025 +0000 Resolves: RHEL-65327 -:000000 100644 00000000 d00491fd A .fmf/version -:000000 100644 00000000 c5aa0e08 A ci.fmf -:000000 100644 00000000 72495752 A plans/ci.fmf -:000000 100644 00000000 c003abc0 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/Makefile -:000000 100644 00000000 64f3c965 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/PURPOSE -:000000 100644 00000000 1a8efe26 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/estale-test.c -:000000 100644 00000000 394a933e A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/main.fmf -:000000 100644 00000000 3719e161 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_AT -:000000 100644 00000000 3719e161 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_DE -:000000 100644 00000000 00741842 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_en_US -:000000 100644 00000000 99ba3948 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_es_ES -:000000 100644 00000000 cb93f190 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR -:000000 100644 00000000 19bb87f7 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR.utf8 -:000000 100644 00000000 20e9f4bc A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_it_IT -:000000 100644 00000000 eb01dfe5 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP -:000000 100644 00000000 1a4a02ce A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP.utf8 -:000000 100644 00000000 78559386 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ko_KR.utf8 -:000000 100644 00000000 acb9aaac A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_pt_BR.utf8 -:000000 100644 00000000 82324e0b A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ru_UA.utf8 -:000000 100644 00000000 c45e7719 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_CN.utf8 -:000000 100644 00000000 147901b0 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_CN.utf8_rhel -:000000 100644 00000000 212c34d1 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_TW.utf8 -:000000 100755 00000000 d726f26e A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/runtest.sh -:000000 100644 00000000 f9f70297 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/Makefile -:000000 100644 00000000 f55c98f8 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/PURPOSE -:000000 100644 00000000 8684e0a4 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf -:000000 100755 00000000 8da787e4 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/runtest.sh -:000000 100644 00000000 0c110567 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/tst-getaddrinfo.c -:000000 100644 00000000 c9b73679 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/Makefile -:000000 100644 00000000 19a6cbb7 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/PURPOSE -:000000 100644 00000000 8e8c699c A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/hesiod.conf -:000000 100644 00000000 4adbb0f3 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/main.fmf -:000000 100644 00000000 356a6a95 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/named.hesiod -:000000 100755 00000000 acb470c0 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/runtest.sh -:000000 100644 00000000 3b7fb6a0 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/zone-entry -:000000 100644 00000000 3d930e43 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/Makefile -:000000 100644 00000000 779fa7f3 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/PURPOSE -:000000 100644 00000000 973d679b A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/main.fmf -:000000 100644 00000000 8b0ceda1 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/o_tmpfile.c -:000000 100755 00000000 ed49a08b A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/runtest.sh -:000000 100644 00000000 3429bda0 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/Makefile -:000000 100644 00000000 d31ceb1b A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/PURPOSE -:000000 100644 00000000 f5ff109d A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/main.fmf -:000000 100755 00000000 491ed500 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/runtest.sh -:000000 100644 00000000 be55ec62 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/Makefile -:000000 100644 00000000 f327055c A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/PURPOSE -:000000 100644 00000000 3589c47a A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf -:000000 100755 00000000 9ce516ae A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/runtest.sh -:000000 100644 00000000 8b4b02f3 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/Makefile -:000000 100644 00000000 7d4d3c87 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/PURPOSE -:000000 100644 00000000 decfbad5 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/list.gdb -:000000 100644 00000000 f57f3eff A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf -:000000 100755 00000000 2323b65f A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/runtest.sh -:000000 100644 00000000 fd4f9a03 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c -:000000 100644 00000000 378022c6 A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/Makefile -:000000 100644 00000000 d77a6ded A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/PURPOSE -:000000 100644 00000000 e251cecf A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/main.fmf -:000000 100755 00000000 6513c9a0 A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/runtest.sh -:000000 100644 00000000 77dbeaf4 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile -:000000 100644 00000000 a41980ed A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/PURPOSE -:000000 100644 00000000 4e1d440d A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/bug.c -:000000 100644 00000000 d38f404d A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf -:000000 100755 00000000 5d3d21bf A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/runtest.sh -:000000 100644 00000000 7f1b025b A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/Makefile -:000000 100644 00000000 73b22160 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/PURPOSE -:000000 100644 00000000 c758153f A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/main.fmf -:000000 100755 00000000 576f18ba A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/runtest.sh -:000000 100644 00000000 53389c10 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/Makefile -:000000 100644 00000000 9a97bda5 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/PURPOSE -:000000 100644 00000000 fbaa011d A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/main.fmf -:000000 100755 00000000 dfbd53fe A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/runtest.sh -:000000 100644 00000000 39e617d8 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/Makefile -:000000 100644 00000000 a12cffb6 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/PURPOSE -:000000 100644 00000000 c6d635df A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/au-test.c -:000000 100644 00000000 9d850d12 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/audit.c -:000000 100644 00000000 ff3273fd A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/main.fmf -:000000 100755 00000000 9d3cc223 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/runtest.sh -:000000 100644 00000000 28bbf08e A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/Makefile -:000000 100644 00000000 7b94f6d5 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/PURPOSE -:000000 100644 00000000 39acd0b4 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf -:000000 100755 00000000 31bdebe8 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh -:000000 100644 00000000 482a9ab2 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/Makefile -:000000 100644 00000000 e7271080 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/PURPOSE -:000000 100644 00000000 692be22c A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/main.fmf -:000000 100755 00000000 1afe812f A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/runtest.sh -:000000 100644 00000000 b7cbe85f A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/tst-libidl.c -:000000 100644 00000000 7f373fe5 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile -:000000 100644 00000000 bc2419e7 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/PURPOSE -:000000 100644 00000000 c13e2ebd A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf -:000000 100755 00000000 8f623805 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh -:000000 100644 00000000 4b79acd4 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/Makefile -:000000 100644 00000000 d2963d14 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/main.fmf -:000000 100755 00000000 048beaf8 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh -:000000 100644 00000000 27b30c53 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile -:000000 100644 00000000 35c07787 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/PURPOSE -:000000 100644 00000000 eb82eccd A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf -:000000 100755 00000000 948f9020 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/runtest.sh -:000000 100644 00000000 974bf986 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/tst.c -:000000 100644 00000000 c2f1a7bb A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile -:000000 100644 00000000 fc8e6a53 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/PURPOSE -:000000 100644 00000000 aad4b136 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf -:000000 100755 00000000 2c9c6dc6 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/runtest.sh -:000000 100644 00000000 88d00369 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/tst.c -:000000 100644 00000000 33f1a754 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/Makefile -:000000 100644 00000000 a5ccc832 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/PURPOSE -:000000 100644 00000000 b4a5b47f A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/main.fmf -:000000 100755 00000000 77aaf34b A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/runtest.sh -:000000 100644 00000000 d73c97d0 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/tst-mktime.c -:000000 100644 00000000 2840e527 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/Makefile -:000000 100644 00000000 85effc3c A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/PURPOSE -:000000 100644 00000000 4a3341c3 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/main.fmf -:000000 100755 00000000 ad288e46 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/runtest.sh -:000000 100644 00000000 bb73776a A tests/Regression/bz434601-timedlock-segfault/Makefile -:000000 100644 00000000 f37d5276 A tests/Regression/bz434601-timedlock-segfault/PURPOSE -:000000 100644 00000000 6f2d55b0 A tests/Regression/bz434601-timedlock-segfault/main.fmf -:000000 100755 00000000 b1bdd39f A tests/Regression/bz434601-timedlock-segfault/runtest.sh -:000000 100644 00000000 57d88420 A tests/Regression/bz434601-timedlock-segfault/timedlock.c -:000000 100644 00000000 452d4b43 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/Makefile -:000000 100644 00000000 2ac2c13e A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/PURPOSE -:000000 100644 00000000 a737a0a7 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf -:000000 100755 00000000 ace7e3e4 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh -:000000 100644 00000000 22f9419d A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c -:000000 100644 00000000 b5d4a4b4 A tests/Regression/bz464146-sp-corruption/Makefile -:000000 100644 00000000 514ba435 A tests/Regression/bz464146-sp-corruption/PURPOSE -:000000 100644 00000000 406212cd A tests/Regression/bz464146-sp-corruption/main.fmf -:000000 100755 00000000 b511b7d9 A tests/Regression/bz464146-sp-corruption/runtest.sh -:000000 100644 00000000 ad58ed9b A tests/Regression/bz464146-sp-corruption/testit.c -:000000 100644 00000000 07608357 A tests/Regression/bz471298-pthread_cond/Makefile -:000000 100644 00000000 a82fbcab A tests/Regression/bz471298-pthread_cond/PURPOSE -:000000 100644 00000000 a9324073 A tests/Regression/bz471298-pthread_cond/main.fmf -:000000 100644 00000000 08c96b17 A tests/Regression/bz471298-pthread_cond/pthread_cond_test.c -:000000 100755 00000000 a8a952ff A tests/Regression/bz471298-pthread_cond/runtest.sh -:000000 100644 00000000 58011ea2 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/Makefile -:000000 100644 00000000 5603ef1c A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/PURPOSE -:000000 100644 00000000 0978e0b0 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf -:000000 100644 00000000 f1de8f7f A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/optinit.c -:000000 100755 00000000 3649de7f A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh -:000000 100644 00000000 65df6098 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/Makefile -:000000 100644 00000000 89a880d0 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/PURPOSE -:000000 100644 00000000 5724e3b9 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf -:000000 100644 00000000 733830a2 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/priv-mutex.c -:000000 100755 00000000 feead289 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/runtest.sh -:000000 100644 00000000 23c4235a A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/Makefile -:000000 100644 00000000 8c135e68 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/PURPOSE -:000000 100644 00000000 d3899368 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/function-nodename-servname-null.c -:000000 100644 00000000 2f06afa8 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf -:000000 100755 00000000 3cdccd66 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/runtest.sh -:000000 100644 00000000 5cff4476 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/Makefile -:000000 100644 00000000 a3bbae3c A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/PURPOSE -:000000 100755 00000000 742fc777 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py2 -:000000 100755 00000000 91806575 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py3 -:000000 100644 00000000 c39d30b9 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/fopen.c -:000000 100644 00000000 3897b030 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf -:000000 100755 00000000 25fcf98b A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/runtest.sh -:000000 100644 00000000 1443a2b6 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/Makefile -:000000 100644 00000000 94e4c56f A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/PURPOSE -:000000 100644 00000000 b1cde56c A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf -:000000 100644 00000000 a46152d5 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/reproducer.c -:000000 100755 00000000 9353d16e A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/runtest.sh -:000000 100644 00000000 b2422b6d A tests/Regression/bz529997-sem_timedwait-with-invalid-time/Makefile -:000000 100644 00000000 0a6f3f04 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/PURPOSE -:000000 100644 00000000 98d27d8d A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-real.out -:000000 100644 00000000 7236993a A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-repro.out -:000000 100644 00000000 32d87ae2 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf -:000000 100644 00000000 e1f8495f A tests/Regression/bz529997-sem_timedwait-with-invalid-time/newrepr.c -:000000 100644 00000000 5ee283c7 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/oldrepr.c -:000000 100644 00000000 c01a1160 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c -:000000 100755 00000000 5dc78e45 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/runtest.sh -:000000 100644 00000000 3462b854 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/Makefile -:000000 100644 00000000 a17f408a A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/PURPOSE -:000000 100644 00000000 f0195088 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf -:000000 100644 00000000 5f09f587 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p1.pl -:000000 100644 00000000 b92bb9b8 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p2.pl -:000000 100644 00000000 bd57bbb1 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3.py -:000000 100644 00000000 bc490269 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3_3.py -:000000 100644 00000000 b77ea8c4 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4.py -:000000 100644 00000000 aeb9778f A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4_3.py -:000000 100755 00000000 5dcfd223 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh -:000000 100644 00000000 4063dab4 A tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar -:000000 100644 00000000 169faf90 A tests/Regression/bz549813-dl-close-race-with-C-destructor/Makefile -:000000 100644 00000000 5327c21b A tests/Regression/bz549813-dl-close-race-with-C-destructor/PURPOSE -:000000 100644 00000000 4c427936 A tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf -:000000 100755 00000000 fef21498 A tests/Regression/bz549813-dl-close-race-with-C-destructor/runtest.sh -:000000 100644 00000000 df7da0ee A tests/Regression/bz566712-aio-write-ll-corruption/Makefile -:000000 100644 00000000 7a3f2e63 A tests/Regression/bz566712-aio-write-ll-corruption/PURPOSE -:000000 100644 00000000 981c245a A tests/Regression/bz566712-aio-write-ll-corruption/aio_write.c -:000000 100644 00000000 f626d62d A tests/Regression/bz566712-aio-write-ll-corruption/main.fmf -:000000 100755 00000000 40d6985a A tests/Regression/bz566712-aio-write-ll-corruption/runtest.sh -:000000 100644 00000000 b75558fd A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/Makefile -:000000 100644 00000000 a52a189f A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/PURPOSE -:000000 100644 00000000 296eb4d5 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf -:000000 100755 00000000 9a6c1358 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/runtest.sh -:000000 100644 00000000 518bd645 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.c -:000000 100644 00000000 1e0c9cea A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.expected -:000000 100644 00000000 b2384728 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-write-ftell.c -:000000 100644 00000000 561ff821 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/Makefile -:000000 100644 00000000 66b5d4a3 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/PURPOSE -:000000 100644 00000000 c8a2b1af A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf -:000000 100644 00000000 e65966c3 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/pthread_rwlock_timedwrlock.c -:000000 100755 00000000 21f71d97 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/runtest.sh -:000000 100644 00000000 52e05731 A tests/Regression/bz585674-free-race-in-mcheck-hooks/Makefile -:000000 100644 00000000 5d3f2258 A tests/Regression/bz585674-free-race-in-mcheck-hooks/PURPOSE -:000000 100644 00000000 eecfcb5e A tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf -:000000 100644 00000000 ee5c6f0e A tests/Regression/bz585674-free-race-in-mcheck-hooks/malloc_check.c -:000000 100755 00000000 d01ddacf A tests/Regression/bz585674-free-race-in-mcheck-hooks/runtest.sh -:000000 100644 00000000 d4f4d382 A tests/Regression/bz587360-digraph-matching-differs-across-archs/Makefile -:000000 100644 00000000 a928bea5 A tests/Regression/bz587360-digraph-matching-differs-across-archs/PURPOSE -:000000 100644 00000000 1be8ea54 A tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf -:000000 100755 00000000 965fc787 A tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh -:000000 100644 00000000 5b498124 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/Makefile -:000000 100644 00000000 74ca16a8 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/PURPOSE -:000000 100644 00000000 4fe6cde5 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/golden.out -:000000 100644 00000000 0bf0d003 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf -:000000 100644 00000000 1153a58f A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz -:000000 100755 00000000 d7ab15b8 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/runtest.sh -:000000 100644 00000000 61227634 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/Makefile -:000000 100644 00000000 0739a92e A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/PURPOSE -:000000 100644 00000000 bf6eb571 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf -:000000 100755 00000000 6ed2b601 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/runtest.sh -:000000 100644 00000000 76a5b34a A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/sqrt.c -:000000 100644 00000000 0e43dbe5 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/Makefile -:000000 100644 00000000 8e9b2a0f A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/PURPOSE -:000000 100644 00000000 b3870402 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf -:000000 100755 00000000 2350638c A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/runtest.sh -:000000 100644 00000000 56126f8d A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/strptime.c -:000000 100644 00000000 f8d52b24 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/Makefile -:000000 100644 00000000 bf155d07 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/PURPOSE -:000000 100644 00000000 fcc4c510 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/golden.out -:000000 100644 00000000 36bfc09f A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf -:000000 100755 00000000 a4a4b65f A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/runtest.sh -:000000 100644 00000000 a1f52ef5 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/676039-resolver.c -:000000 100644 00000000 391ce2a3 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/Makefile -:000000 100644 00000000 38df2dcc A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/PURPOSE -:000000 100644 00000000 e30352fa A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/a.out-gold -:000000 100644 00000000 beaee8ed A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/getent-gold -:000000 100644 00000000 695d1ad5 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf -:000000 100755 00000000 547e2c63 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/runtest.sh -:000000 100644 00000000 e00273e8 A tests/Regression/bz689471-SSE4-strncmp-failure/Makefile -:000000 100644 00000000 2de0bad2 A tests/Regression/bz689471-SSE4-strncmp-failure/PURPOSE -:000000 100644 00000000 800812b8 A tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf -:000000 100644 00000000 b0bdd8bf A tests/Regression/bz689471-SSE4-strncmp-failure/repr.c -:000000 100755 00000000 90bfbfa1 A tests/Regression/bz689471-SSE4-strncmp-failure/runtest.sh -:000000 100644 00000000 d6b081cf A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/Makefile -:000000 100644 00000000 3876cd6a A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/PURPOSE -:000000 100644 00000000 2bb020ca A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf -:000000 100755 00000000 1d193f94 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/runtest.sh -:000000 100644 00000000 42390d17 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/Makefile -:000000 100644 00000000 8dda0798 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/PURPOSE -:000000 100644 00000000 c3e271fb A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf -:000000 100755 00000000 750054b3 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/runtest.sh -:000000 100644 00000000 8c7b608a A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/strncmp.c -:000000 100644 00000000 9bdd6836 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/Makefile -:000000 100644 00000000 551ac25a A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/PURPOSE -:000000 100644 00000000 76a3d9b5 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf -:000000 100644 00000000 fb9fa614 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/repr.c -:000000 100755 00000000 90b55e8a A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/runtest.sh -:000000 100644 00000000 aecdf7b9 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/Makefile -:000000 100644 00000000 fb5cc4f2 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/PURPOSE -:000000 100644 00000000 22508651 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/log.golden -:000000 100644 00000000 70989105 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf -:000000 100644 00000000 9e44d87d A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/mf.c -:000000 100755 00000000 c3787841 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/runtest.sh -:000000 100644 00000000 d08b5581 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/Makefile -:000000 100644 00000000 a9db60f2 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/PURPOSE -:000000 100644 00000000 05c79f09 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf -:000000 100755 00000000 37a288ad A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/runtest.sh -:000000 100644 00000000 987b6709 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/test_robust.c -:000000 100644 00000000 efd0e568 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/Makefile -:000000 100644 00000000 ed27eece A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/PURPOSE -:000000 100644 00000000 083d34bc A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf -:000000 100755 00000000 9120bb98 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/runtest.sh -:000000 100644 00000000 f084a66b A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/Makefile -:000000 100644 00000000 d5360fec A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/PURPOSE -:000000 100644 00000000 63cf32ec A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf -:000000 100644 00000000 31d59fc0 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/repr.c -:000000 100755 00000000 5872bdb0 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/runtest.sh -:000000 100644 00000000 f5d092bb A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/4151-sourceware.c -:000000 100644 00000000 42c3ff5b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/Makefile -:000000 100644 00000000 863db9bd A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/PURPOSE -:000000 100644 00000000 51157943 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf -:000000 100755 00000000 9902168c A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/runtest.sh -:000000 100644 00000000 5da5e2c7 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/Makefile -:000000 100644 00000000 5951a5c3 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/PURPOSE -:000000 100644 00000000 66f16646 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/gold.txt -:000000 100644 00000000 110b3ce2 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/locale.c -:000000 100644 00000000 51595071 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf -:000000 100755 00000000 d8644345 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/runtest.sh -:000000 100644 00000000 767c259c A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/Makefile -:000000 100644 00000000 46040069 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/PURPOSE -:000000 100644 00000000 066bc87f A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c -:000000 100644 00000000 58407ec4 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf -:000000 100755 00000000 843e9092 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/runtest.sh -:000000 100644 00000000 29683a64 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/Makefile -:000000 100644 00000000 ee81e499 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/PURPOSE -:000000 100644 00000000 8e3cb3c6 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf -:000000 100755 00000000 3fe960e7 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/runtest.sh -:000000 100644 00000000 5c4ba8d2 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/test.c -:000000 100644 00000000 5ecda47c A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/Makefile -:000000 100644 00000000 1ec0f90c A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/PURPOSE -:000000 100644 00000000 20224cf9 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/golden.out -:000000 100644 00000000 24ac1442 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf -:000000 100755 00000000 221cfaae A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/runtest.sh -:000000 100644 00000000 d5f37df3 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/Makefile -:000000 100644 00000000 4d5f96e7 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/PURPOSE -:000000 100644 00000000 6c3a1695 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf -:000000 100644 00000000 40fc1036 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/mallocstress.c -:000000 100755 00000000 1c66bc61 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/redshirt-process.sh -:000000 100755 00000000 8c83f40a A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/runtest.sh -:000000 100644 00000000 7182880b A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/Makefile -:000000 100644 00000000 ffdace49 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/PURPOSE -:000000 100644 00000000 34ca26b6 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/log.golden -:000000 100644 00000000 1177cabe A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf -:000000 100755 00000000 b2773861 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/runtest.sh -:000000 100644 00000000 f9f9e489 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/testcase.c -:000000 100644 00000000 e9b0f8ed A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/Makefile -:000000 100644 00000000 b560b295 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/PURPOSE -:000000 100644 00000000 25594e56 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf -:000000 100644 00000000 f67c9ad5 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.conf -:000000 100644 00000000 4bb4071e A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.taktik -:000000 100644 00000000 8c488382 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/resolv.conf -:000000 100755 00000000 380a3123 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/runtest.sh -:000000 100644 00000000 a1c3a3d6 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/testcase.c -:000000 100644 00000000 b7e5b5b0 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/Makefile -:000000 100644 00000000 431ba26e A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/PURPOSE -:000000 100644 00000000 87973ee5 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/get.c -:000000 100644 00000000 be5187e3 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf -:000000 100755 00000000 156d933f A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/runtest.sh -:000000 100644 00000000 2c3176ce A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/Makefile -:000000 100644 00000000 1bcf1899 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/PURPOSE -:000000 100644 00000000 bd1cc4fa A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/arf.c -:000000 100644 00000000 9776dc9a A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf -:000000 100755 00000000 5ef2a4da A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/runtest.sh -:000000 100644 00000000 4a764860 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/Makefile -:000000 100644 00000000 18a5b0e7 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/PURPOSE -:000000 100644 00000000 32151d0a A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf -:000000 100755 00000000 4f430d05 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/runtest.sh -:000000 100644 00000000 d108a430 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/Makefile -:000000 100644 00000000 0f0515ca A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/PURPOSE -:000000 100644 00000000 1c833c1f A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar-j.c -:000000 100644 00000000 a088b1dc A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar.c -:000000 100644 00000000 8c7ef8a6 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.golden -:000000 100644 00000000 c1746f42 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.input -:000000 100644 00000000 f752777b A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.j.golden -:000000 100644 00000000 d5414e39 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf -:000000 100644 00000000 4aee1534 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.golden -:000000 100644 00000000 ff8e960c A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.seeking -:000000 100755 00000000 a99b0640 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/runtest.sh -:000000 100644 00000000 b8636bba A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c -:000000 100644 00000000 10df528c A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/Makefile -:000000 100644 00000000 2cc1a641 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/PURPOSE -:000000 100644 00000000 15fabe75 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf -:000000 100755 00000000 0b66a488 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/runtest.sh -:000000 100644 00000000 4e6c6d10 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/Makefile -:000000 100644 00000000 fb4adc10 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/PURPOSE -:000000 100644 00000000 236b663d A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf -:000000 100755 00000000 5b89a8fe A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/runtest.sh -:000000 100644 00000000 b0de5b11 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/Makefile -:000000 100644 00000000 c2c52006 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/PURPOSE -:000000 100644 00000000 5da1c22e A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf -:000000 100644 00000000 0cfba0de A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/reproducer.c -:000000 100755 00000000 e7441240 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/runtest.sh -:000000 100644 00000000 8402c19d A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/Makefile -:000000 100644 00000000 32bea697 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/PURPOSE -:000000 100644 00000000 8f4c2f72 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/gai-tst.c -:000000 100644 00000000 50f30d42 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf -:000000 100755 00000000 c133fb0d A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/ns.pl -:000000 100755 00000000 99379929 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/runtest.sh -:000000 100644 00000000 251da430 A tests/Regression/bz868808-backtrace-for-recursive-functions/Makefile -:000000 100644 00000000 cade416f A tests/Regression/bz868808-backtrace-for-recursive-functions/PURPOSE -:000000 100644 00000000 a32c0400 A tests/Regression/bz868808-backtrace-for-recursive-functions/bt-tst.c -:000000 100644 00000000 95556a7e A tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf -:000000 100755 00000000 cf83c3c8 A tests/Regression/bz868808-backtrace-for-recursive-functions/runtest.sh -:000000 100644 00000000 37927893 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/Makefile -:000000 100644 00000000 925ade3e A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/PURPOSE -:000000 100644 00000000 0cad3334 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/fpathconf-t.c -:000000 100644 00000000 c971eb1d A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf -:000000 100755 00000000 2ade3658 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/runtest.sh -:000000 100644 00000000 5cdf0e96 A tests/Regression/bz916986-MAP_HUGETLB_support/Makefile -:000000 100644 00000000 d8a04c1e A tests/Regression/bz916986-MAP_HUGETLB_support/PURPOSE -:000000 100644 00000000 4f3656c6 A tests/Regression/bz916986-MAP_HUGETLB_support/bz916986.c -:000000 100644 00000000 518278cf A tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf -:000000 100755 00000000 ed52266a A tests/Regression/bz916986-MAP_HUGETLB_support/runtest.sh -:000000 100644 00000000 0eee0736 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/Makefile -:000000 100644 00000000 550d1b00 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/PURPOSE -:000000 100644 00000000 d56402de A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf -:000000 100755 00000000 dacdb694 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/runtest.sh -:000000 100644 00000000 145ccb2e A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.c -:000000 100644 00000000 9f46a2d4 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.tmpl -:000000 100644 00000000 5618609b A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/Makefile -:000000 100644 00000000 d6a78d68 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/PURPOSE -:000000 100644 00000000 e28c7818 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/bz970854.c -:000000 100644 00000000 2b057261 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf -:000000 100755 00000000 94468d6b A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/runtest.sh -:000000 100644 00000000 e9c24bf5 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/ubz15362.c -:000000 100644 00000000 eb8a3fc8 A tests/Regression/double_free_exploit/Makefile -:000000 100644 00000000 18c44f64 A tests/Regression/double_free_exploit/PURPOSE -:000000 100644 00000000 f2491e23 A tests/Regression/double_free_exploit/exploit.c -:000000 100644 00000000 be9f77af A tests/Regression/double_free_exploit/exploit2.c -:000000 100644 00000000 5bdac446 A tests/Regression/double_free_exploit/main.fmf -:000000 100755 00000000 35580e48 A tests/Regression/double_free_exploit/runtest.sh -:000000 100644 00000000 94a9bb5f A tests/Regression/expf-gives-infinity-where-result-finite/Makefile -:000000 100644 00000000 3b0f14bb A tests/Regression/expf-gives-infinity-where-result-finite/PURPOSE -:000000 100644 00000000 0296162b A tests/Regression/expf-gives-infinity-where-result-finite/main.fmf -:000000 100755 00000000 ac01945d A tests/Regression/expf-gives-infinity-where-result-finite/runtest.sh -:000000 100644 00000000 cbd1baf9 A tests/Regression/expf-gives-infinity-where-result-finite/tc1.cpp -:000000 100644 00000000 8afe24af A tests/Regression/fallocate_156289/Makefile -:000000 100644 00000000 2eff71e7 A tests/Regression/fallocate_156289/PURPOSE -:000000 100644 00000000 ddfabbdd A tests/Regression/fallocate_156289/fallocate.c++ -:000000 100644 00000000 63043139 A tests/Regression/fallocate_156289/main.fmf -:000000 100755 00000000 359068eb A tests/Regression/fallocate_156289/runtest.sh -:000000 100644 00000000 187e4e97 A tests/Regression/locale-archive-test/Makefile -:000000 100644 00000000 9cb209ce A tests/Regression/locale-archive-test/PURPOSE -:000000 100644 00000000 c0d4e041 A tests/Regression/locale-archive-test/main.fmf -:000000 100755 00000000 7147736c A tests/Regression/locale-archive-test/runtest.sh -:000000 100644 00000000 e2177b9b A tests/Regression/locale-archive-test/test-locale.py -:000000 100644 00000000 06f1df17 A tests/Regression/setvbuf-to-full-not-working/Makefile -:000000 100644 00000000 3a0a38c9 A tests/Regression/setvbuf-to-full-not-working/PURPOSE -:000000 100644 00000000 84ad97b3 A tests/Regression/setvbuf-to-full-not-working/main.fmf -:000000 100755 00000000 4d31e613 A tests/Regression/setvbuf-to-full-not-working/runtest.sh -:000000 100644 00000000 4bc7d9fa A tests/Regression/setvbuf-to-full-not-working/testcase.c -:000000 100755 00000000 ed5c6199 A tests/Regression/setvbuf-to-full-not-working/try.exp -:000000 100644 00000000 a1161888 A tests/Sanity/basic-linking-sanity/Makefile -:000000 100644 00000000 9f0038be A tests/Sanity/basic-linking-sanity/PURPOSE -:000000 100644 00000000 23679f43 A tests/Sanity/basic-linking-sanity/lc.c -:000000 100644 00000000 a3116ebc A tests/Sanity/basic-linking-sanity/lc.golden -:000000 100644 00000000 ca456378 A tests/Sanity/basic-linking-sanity/lm.c -:000000 100644 00000000 ddfa1ca5 A tests/Sanity/basic-linking-sanity/lm.golden -:000000 100644 00000000 7ce81d78 A tests/Sanity/basic-linking-sanity/lpthread.c -:000000 100644 00000000 e150192d A tests/Sanity/basic-linking-sanity/lpthread.golden -:000000 100644 00000000 daadf29a A tests/Sanity/basic-linking-sanity/lrt.c -:000000 100644 00000000 f5ff068c A tests/Sanity/basic-linking-sanity/lrt.golden -:000000 100644 00000000 75bd5d8f A tests/Sanity/basic-linking-sanity/main.fmf -:000000 100755 00000000 98310786 A tests/Sanity/basic-linking-sanity/runtest.sh -:000000 100644 00000000 7a49c36b A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/Makefile -:000000 100644 00000000 a1372924 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/PURPOSE -:000000 100644 00000000 68f887d4 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/main.fmf -:000000 100755 00000000 672cdfa1 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/runtest.sh -:000000 100644 00000000 600ecaca A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/tst-falloc.c -:000000 100644 00000000 88cef9d7 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/Makefile -:000000 100644 00000000 a058fb42 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/PURPOSE -:000000 100644 00000000 f2c73532 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/main.fmf -:000000 100755 00000000 83b675aa A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/runtest.sh -:000000 100644 00000000 011936c5 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/Makefile -:000000 100644 00000000 bb7a657a A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/PURPOSE -:000000 100644 00000000 c20ca2e8 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/hello.c -:000000 100644 00000000 4030866e A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c -:000000 100644 00000000 2c384249 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf -:000000 100755 00000000 91a00d5e A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/runtest.sh -:000000 100644 00000000 52830352 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/Makefile -:000000 100644 00000000 3d7835a0 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/PURPOSE -:000000 100644 00000000 094e50d1 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/cursym.c -:000000 100644 00000000 99dc45e6 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf -:000000 100755 00000000 fc01c230 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/runtest.sh -:000000 100644 00000000 6d834baf A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/Makefile -:000000 100644 00000000 00e692c0 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/PURPOSE -:000000 100644 00000000 81e18a2a A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf -:000000 100755 00000000 64a64508 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/runtest.sh -:000000 100644 00000000 26974157 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/symbol.txt +:000000 100644 0000000 d00491f A .fmf/version +:000000 100644 0000000 c5aa0e0 A ci.fmf +:000000 100644 0000000 7249575 A plans/ci.fmf +:000000 100644 0000000 c003abc A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/Makefile +:000000 100644 0000000 64f3c96 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/PURPOSE +:000000 100644 0000000 1a8efe2 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/estale-test.c +:000000 100644 0000000 394a933 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/main.fmf +:000000 100644 0000000 3719e16 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_AT +:000000 100644 0000000 3719e16 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_de_DE +:000000 100644 0000000 0074184 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_en_US +:000000 100644 0000000 99ba394 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_es_ES +:000000 100644 0000000 cb93f19 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR +:000000 100644 0000000 19bb87f A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_fr_FR.utf8 +:000000 100644 0000000 20e9f4b A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_it_IT +:000000 100644 0000000 eb01dfe A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP +:000000 100644 0000000 1a4a02c A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ja_JP.utf8 +:000000 100644 0000000 7855938 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ko_KR.utf8 +:000000 100644 0000000 acb9aaa A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_pt_BR.utf8 +:000000 100644 0000000 82324e0 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_ru_UA.utf8 +:000000 100644 0000000 c45e771 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_CN.utf8 +:000000 100644 0000000 147901b A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_CN.utf8_rhel +:000000 100644 0000000 212c34d A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/refs/orig_zh_TW.utf8 +:000000 100755 0000000 d726f26 A tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/runtest.sh +:000000 100644 0000000 f9f7029 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/Makefile +:000000 100644 0000000 f55c98f A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/PURPOSE +:000000 100644 0000000 8684e0a A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/main.fmf +:000000 100755 0000000 8da787e A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/runtest.sh +:000000 100644 0000000 0c11056 A tests/Regression/bz1022022-getaddrinfo-behavior-changed-between-RHEL-6-4-and-RHEL-6-5/tst-getaddrinfo.c +:000000 100644 0000000 c9b7367 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/Makefile +:000000 100644 0000000 19a6cbb A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/PURPOSE +:000000 100644 0000000 8e8c699 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/hesiod.conf +:000000 100644 0000000 4adbb0f A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/main.fmf +:000000 100644 0000000 356a6a9 A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/named.hesiod +:000000 100755 0000000 acb470c A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/runtest.sh +:000000 100644 0000000 3b7fb6a A tests/Regression/bz1305132-segfault-in-hesiod-getgrouplist/zone-entry +:000000 100644 0000000 3d930e4 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/Makefile +:000000 100644 0000000 779fa7f A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/PURPOSE +:000000 100644 0000000 973d679 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/main.fmf +:000000 100644 0000000 8b0ceda A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/o_tmpfile.c +:000000 100755 0000000 ed49a08 A tests/Regression/bz1330705-open-and-openat-ignore-mode-with-O-TMPFILE/runtest.sh +:000000 100644 0000000 3429bda A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/Makefile +:000000 100644 0000000 d31ceb1 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/PURPOSE +:000000 100644 0000000 f5ff109 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/main.fmf +:000000 100755 0000000 491ed50 A tests/Regression/bz1430477-glibc-Missing-else-branch-in-libc-calloc/runtest.sh +:000000 100644 0000000 be55ec6 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/Makefile +:000000 100644 0000000 f327055 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/PURPOSE +:000000 100644 0000000 3589c47 A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/main.fmf +:000000 100755 0000000 9ce516a A tests/Regression/bz1561018-glibc-Enable-annobin-annotations/runtest.sh +:000000 100644 0000000 8b4b02f A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/Makefile +:000000 100644 0000000 7d4d3c8 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/PURPOSE +:000000 100644 0000000 decfbad A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/list.gdb +:000000 100644 0000000 f57f3ef A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/main.fmf +:000000 100755 0000000 2323b65 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/runtest.sh +:000000 100644 0000000 fd4f9a0 A tests/Regression/bz1563046-getlogin-r-return-early-when-linux-sentinel-value/tst-getlogin_r.c +:000000 100644 0000000 378022c A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/Makefile +:000000 100644 0000000 d77a6de A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/PURPOSE +:000000 100644 0000000 e251cec A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/main.fmf +:000000 100755 0000000 6513c9a A tests/Regression/bz1577212-glibc-Remove-stray-Sun-RPC-exports/runtest.sh +:000000 100644 0000000 77dbeaf A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/Makefile +:000000 100644 0000000 a41980e A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/PURPOSE +:000000 100644 0000000 4e1d440 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/bug.c +:000000 100644 0000000 d38f404 A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/main.fmf +:000000 100755 0000000 5d3d21b A tests/Regression/bz1579451-glibc-IP-BIND-ADDRESS-NO-PORT-is-not-defined-in/runtest.sh +:000000 100644 0000000 7f1b025 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/Makefile +:000000 100644 0000000 73b2216 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/PURPOSE +:000000 100644 0000000 c758153 A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/main.fmf +:000000 100755 0000000 576f18b A tests/Regression/bz1591268-glibc-Problem-with-iconv-converting-ISO8859-1-to/runtest.sh +:000000 100644 0000000 53389c1 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/Makefile +:000000 100644 0000000 9a97bda A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/PURPOSE +:000000 100644 0000000 fbaa011 A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/main.fmf +:000000 100755 0000000 dfbd53f A tests/Regression/bz1612448-glibc-debuginfo-does-not-have-gdb-index/runtest.sh +:000000 100644 0000000 39e617d A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/Makefile +:000000 100644 0000000 a12cffb A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/PURPOSE +:000000 100644 0000000 c6d635d A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/au-test.c +:000000 100644 0000000 9d850d1 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/audit.c +:000000 100644 0000000 ff3273f A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/main.fmf +:000000 100755 0000000 9d3cc22 A tests/Regression/bz1661244-glibc-Disable-lazy-binding-of-TLS-descriptors-on/runtest.sh +:000000 100644 0000000 28bbf08 A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/Makefile +:000000 100644 0000000 7b94f6d A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/PURPOSE +:000000 100644 0000000 39acd0b A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/main.fmf +:000000 100755 0000000 31bdebe A tests/Regression/bz1661513-glibc-Adjust-to-rpms-find-debuginfo-sh-changes-to-keep-stripping-binaries/runtest.sh +:000000 100644 0000000 482a9ab A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/Makefile +:000000 100644 0000000 e727108 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/PURPOSE +:000000 100644 0000000 692be22 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/main.fmf +:000000 100755 0000000 1afe812 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/runtest.sh +:000000 100644 0000000 b7cbe85 A tests/Regression/bz1717438-glibc-libc-freeres-under-valgrind-triggers/tst-libidl.c +:000000 100644 0000000 7f373fe A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/Makefile +:000000 100644 0000000 bc2419e A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/PURPOSE +:000000 100644 0000000 c13e2eb A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/main.fmf +:000000 100755 0000000 8f62380 A tests/Regression/bz1988382-annocheck-reports-pie-pic-test-failures-on/runtest.sh +:000000 100644 0000000 4b79acd A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/Makefile +:000000 100644 0000000 d2963d1 A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/main.fmf +:000000 100755 0000000 048beaf A tests/Regression/bz2007417-glibc-ldd-segfaults-when-inspecting/runtest.sh +:000000 100644 0000000 27b30c5 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/Makefile +:000000 100644 0000000 35c0778 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/PURPOSE +:000000 100644 0000000 eb82ecc A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/main.fmf +:000000 100755 0000000 948f902 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/runtest.sh +:000000 100644 0000000 974bf98 A tests/Regression/bz2024347-glibc-Optional-sched-getcpu-acceleration-using/tst.c +:000000 100644 0000000 c2f1a7b A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/Makefile +:000000 100644 0000000 fc8e6a5 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/PURPOSE +:000000 100644 0000000 aad4b13 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/main.fmf +:000000 100755 0000000 2c9c6dc A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/runtest.sh +:000000 100644 0000000 88d0036 A tests/Regression/bz2027789-glibc-backtrace-function-crashes-without-vdso-on/tst.c +:000000 100644 0000000 33f1a75 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/Makefile +:000000 100644 0000000 a5ccc83 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/PURPOSE +:000000 100644 0000000 b4a5b47 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/main.fmf +:000000 100755 0000000 77aaf34 A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/runtest.sh +:000000 100644 0000000 d73c97d A tests/Regression/bz2110357-glibc-mktime-fails-with-EOVERFLOW-when/tst-mktime.c +:000000 100644 0000000 2840e52 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/Makefile +:000000 100644 0000000 85effc3 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/PURPOSE +:000000 100644 0000000 4a3341c A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/main.fmf +:000000 100755 0000000 ad288e4 A tests/Regression/bz2115831-glibc-missing-gnu-debuglink-section-in/runtest.sh +:000000 100644 0000000 bb73776 A tests/Regression/bz434601-timedlock-segfault/Makefile +:000000 100644 0000000 f37d527 A tests/Regression/bz434601-timedlock-segfault/PURPOSE +:000000 100644 0000000 6f2d55b A tests/Regression/bz434601-timedlock-segfault/main.fmf +:000000 100755 0000000 b1bdd39 A tests/Regression/bz434601-timedlock-segfault/runtest.sh +:000000 100644 0000000 57d8842 A tests/Regression/bz434601-timedlock-segfault/timedlock.c +:000000 100644 0000000 452d4b4 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/Makefile +:000000 100644 0000000 2ac2c13 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/PURPOSE +:000000 100644 0000000 a737a0a A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/main.fmf +:000000 100755 0000000 ace7e3e A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/runtest.sh +:000000 100644 0000000 22f9419 A tests/Regression/bz455360-RHEL4-vfprintf-call-goes-into-recursive/testcase.c +:000000 100644 0000000 b5d4a4b A tests/Regression/bz464146-sp-corruption/Makefile +:000000 100644 0000000 514ba43 A tests/Regression/bz464146-sp-corruption/PURPOSE +:000000 100644 0000000 406212c A tests/Regression/bz464146-sp-corruption/main.fmf +:000000 100755 0000000 b511b7d A tests/Regression/bz464146-sp-corruption/runtest.sh +:000000 100644 0000000 ad58ed9 A tests/Regression/bz464146-sp-corruption/testit.c +:000000 100644 0000000 0760835 A tests/Regression/bz471298-pthread_cond/Makefile +:000000 100644 0000000 a82fbca A tests/Regression/bz471298-pthread_cond/PURPOSE +:000000 100644 0000000 a932407 A tests/Regression/bz471298-pthread_cond/main.fmf +:000000 100644 0000000 08c96b1 A tests/Regression/bz471298-pthread_cond/pthread_cond_test.c +:000000 100755 0000000 a8a952f A tests/Regression/bz471298-pthread_cond/runtest.sh +:000000 100644 0000000 58011ea A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/Makefile +:000000 100644 0000000 5603ef1 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/PURPOSE +:000000 100644 0000000 0978e0b A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/main.fmf +:000000 100644 0000000 f1de8f7 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/optinit.c +:000000 100755 0000000 3649de7 A tests/Regression/bz488748-inet6-opt-init-sets-incorrect-header-len/runtest.sh +:000000 100644 0000000 65df609 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/Makefile +:000000 100644 0000000 89a880d A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/PURPOSE +:000000 100644 0000000 5724e3b A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/main.fmf +:000000 100644 0000000 733830a A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/priv-mutex.c +:000000 100755 0000000 feead28 A tests/Regression/bz495955-RHEL5-glibc-doesn-t-use-private-futex-system/runtest.sh +:000000 100644 0000000 23c4235 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/Makefile +:000000 100644 0000000 8c135e6 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/PURPOSE +:000000 100644 0000000 d389936 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/function-nodename-servname-null.c +:000000 100644 0000000 2f06afa A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/main.fmf +:000000 100755 0000000 3cdccd6 A tests/Regression/bz501595-RHEL4-getnameinfo-should-return-EAI-NONAME/runtest.sh +:000000 100644 0000000 5cff447 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/Makefile +:000000 100644 0000000 a3bbae3 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/PURPOSE +:000000 100755 0000000 742fc77 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py2 +:000000 100755 0000000 9180657 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/expected.py3 +:000000 100644 0000000 c39d30b A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/fopen.c +:000000 100644 0000000 3897b03 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/main.fmf +:000000 100755 0000000 25fcf98 A tests/Regression/bz503723-fopen-mode-x-ignored-in-some-cases/runtest.sh +:000000 100644 0000000 1443a2b A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/Makefile +:000000 100644 0000000 94e4c56 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/PURPOSE +:000000 100644 0000000 b1cde56 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/main.fmf +:000000 100644 0000000 a46152d A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/reproducer.c +:000000 100755 0000000 9353d16 A tests/Regression/bz522528-pthread-join-hangs-if-a-thread-calls-setuid/runtest.sh +:000000 100644 0000000 b2422b6 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/Makefile +:000000 100644 0000000 0a6f3f0 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/PURPOSE +:000000 100644 0000000 98d27d8 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-real.out +:000000 100644 0000000 7236993 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/golden-repro.out +:000000 100644 0000000 32d87ae A tests/Regression/bz529997-sem_timedwait-with-invalid-time/main.fmf +:000000 100644 0000000 e1f8495 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/newrepr.c +:000000 100644 0000000 5ee283c A tests/Regression/bz529997-sem_timedwait-with-invalid-time/oldrepr.c +:000000 100644 0000000 c01a116 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/real-reproducer.c +:000000 100755 0000000 5dc78e4 A tests/Regression/bz529997-sem_timedwait-with-invalid-time/runtest.sh +:000000 100644 0000000 3462b85 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/Makefile +:000000 100644 0000000 a17f408 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/PURPOSE +:000000 100644 0000000 f019508 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/main.fmf +:000000 100644 0000000 5f09f58 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p1.pl +:000000 100644 0000000 b92bb9b A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p2.pl +:000000 100644 0000000 bd57bbb A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3.py +:000000 100644 0000000 bc49026 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p3_3.py +:000000 100644 0000000 b77ea8c A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4.py +:000000 100644 0000000 aeb9778 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/p4_3.py +:000000 100755 0000000 5dcfd22 A tests/Regression/bz531576-memusage-cmd-segfaults-on-perl-scripts/runtest.sh +:000000 100644 0000000 4063dab A tests/Regression/bz549813-dl-close-race-with-C-destructor/C_Only.tar +:000000 100644 0000000 169faf9 A tests/Regression/bz549813-dl-close-race-with-C-destructor/Makefile +:000000 100644 0000000 5327c21 A tests/Regression/bz549813-dl-close-race-with-C-destructor/PURPOSE +:000000 100644 0000000 4c42793 A tests/Regression/bz549813-dl-close-race-with-C-destructor/main.fmf +:000000 100755 0000000 fef2149 A tests/Regression/bz549813-dl-close-race-with-C-destructor/runtest.sh +:000000 100644 0000000 df7da0e A tests/Regression/bz566712-aio-write-ll-corruption/Makefile +:000000 100644 0000000 7a3f2e6 A tests/Regression/bz566712-aio-write-ll-corruption/PURPOSE +:000000 100644 0000000 981c245 A tests/Regression/bz566712-aio-write-ll-corruption/aio_write.c +:000000 100644 0000000 f626d62 A tests/Regression/bz566712-aio-write-ll-corruption/main.fmf +:000000 100755 0000000 40d6985 A tests/Regression/bz566712-aio-write-ll-corruption/runtest.sh +:000000 100644 0000000 b75558f A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/Makefile +:000000 100644 0000000 a52a189 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/PURPOSE +:000000 100644 0000000 296eb4d A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/main.fmf +:000000 100755 0000000 9a6c135 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/runtest.sh +:000000 100644 0000000 518bd64 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.c +:000000 100644 0000000 1e0c9ce A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-ftell-with-fdopen.expected +:000000 100644 0000000 b238472 A tests/Regression/bz577950-ftell-after-write-causes-glibc-to-flush-buffer/tst-write-ftell.c +:000000 100644 0000000 561ff82 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/Makefile +:000000 100644 0000000 66b5d4a A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/PURPOSE +:000000 100644 0000000 c8a2b1a A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/main.fmf +:000000 100644 0000000 e65966c A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/pthread_rwlock_timedwrlock.c +:000000 100755 0000000 21f71d9 A tests/Regression/bz580498-pthread-rwlock-timedwrlock-rdlock-never-return/runtest.sh +:000000 100644 0000000 52e0573 A tests/Regression/bz585674-free-race-in-mcheck-hooks/Makefile +:000000 100644 0000000 5d3f225 A tests/Regression/bz585674-free-race-in-mcheck-hooks/PURPOSE +:000000 100644 0000000 eecfcb5 A tests/Regression/bz585674-free-race-in-mcheck-hooks/main.fmf +:000000 100644 0000000 ee5c6f0 A tests/Regression/bz585674-free-race-in-mcheck-hooks/malloc_check.c +:000000 100755 0000000 d01ddac A tests/Regression/bz585674-free-race-in-mcheck-hooks/runtest.sh +:000000 100644 0000000 d4f4d38 A tests/Regression/bz587360-digraph-matching-differs-across-archs/Makefile +:000000 100644 0000000 a928bea A tests/Regression/bz587360-digraph-matching-differs-across-archs/PURPOSE +:000000 100644 0000000 1be8ea5 A tests/Regression/bz587360-digraph-matching-differs-across-archs/main.fmf +:000000 100755 0000000 965fc78 A tests/Regression/bz587360-digraph-matching-differs-across-archs/runtest.sh +:000000 100644 0000000 5b49812 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/Makefile +:000000 100644 0000000 74ca16a A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/PURPOSE +:000000 100644 0000000 4fe6cde A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/golden.out +:000000 100644 0000000 0bf0d00 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/main.fmf +:000000 100644 0000000 1153a58 A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/reproducer.tar.gz +:000000 100755 0000000 d7ab15b A tests/Regression/bz600457-locally-defined-symbol-resolving-failure/runtest.sh +:000000 100644 0000000 6122763 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/Makefile +:000000 100644 0000000 0739a92 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/PURPOSE +:000000 100644 0000000 bf6eb57 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/main.fmf +:000000 100755 0000000 6ed2b60 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/runtest.sh +:000000 100644 0000000 76a5b34 A tests/Regression/bz656530-sqrtl-returns-highly-incorrect-results-for-some/sqrt.c +:000000 100644 0000000 0e43dbe A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/Makefile +:000000 100644 0000000 8e9b2a0 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/PURPOSE +:000000 100644 0000000 b387040 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/main.fmf +:000000 100755 0000000 2350638 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/runtest.sh +:000000 100644 0000000 56126f8 A tests/Regression/bz657570-strptime-s-b-descriptor-should-be-greedy/strptime.c +:000000 100644 0000000 f8d52b2 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/Makefile +:000000 100644 0000000 bf155d0 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/PURPOSE +:000000 100644 0000000 fcc4c51 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/golden.out +:000000 100644 0000000 36bfc09 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/main.fmf +:000000 100755 0000000 a4a4b65 A tests/Regression/bz657572-Finnish-locale-includes-unnecessary-confusing/runtest.sh +:000000 100644 0000000 a1f52ef A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/676039-resolver.c +:000000 100644 0000000 391ce2a A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/Makefile +:000000 100644 0000000 38df2dc A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/PURPOSE +:000000 100644 0000000 e30352f A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/a.out-gold +:000000 100644 0000000 beaee8e A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/getent-gold +:000000 100644 0000000 695d1ad A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/main.fmf +:000000 100755 0000000 547e2c6 A tests/Regression/bz676039-Resolver-fails-to-return-all-addresses-of/runtest.sh +:000000 100644 0000000 e00273e A tests/Regression/bz689471-SSE4-strncmp-failure/Makefile +:000000 100644 0000000 2de0bad A tests/Regression/bz689471-SSE4-strncmp-failure/PURPOSE +:000000 100644 0000000 800812b A tests/Regression/bz689471-SSE4-strncmp-failure/main.fmf +:000000 100644 0000000 b0bdd8b A tests/Regression/bz689471-SSE4-strncmp-failure/repr.c +:000000 100755 0000000 90bfbfa A tests/Regression/bz689471-SSE4-strncmp-failure/runtest.sh +:000000 100644 0000000 d6b081c A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/Makefile +:000000 100644 0000000 3876cd6 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/PURPOSE +:000000 100644 0000000 2bb020c A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/main.fmf +:000000 100755 0000000 1d193f9 A tests/Regression/bz692177-sysconf-SC-CACHE-returns-0-for-all-caches-on/runtest.sh +:000000 100644 0000000 42390d1 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/Makefile +:000000 100644 0000000 8dda079 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/PURPOSE +:000000 100644 0000000 c3e271f A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/main.fmf +:000000 100755 0000000 750054b A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/runtest.sh +:000000 100644 0000000 8c7b608 A tests/Regression/bz694386-POWER4-strncmp-crashes-reading-past-zero-byte/strncmp.c +:000000 100644 0000000 9bdd683 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/Makefile +:000000 100644 0000000 551ac25 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/PURPOSE +:000000 100644 0000000 76a3d9b A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/main.fmf +:000000 100644 0000000 fb9fa61 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/repr.c +:000000 100755 0000000 90b55e8 A tests/Regression/bz705465-fix-for-handle-overflows-of-temporary-buffer-used/runtest.sh +:000000 100644 0000000 aecdf7b A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/Makefile +:000000 100644 0000000 fb5cc4f A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/PURPOSE +:000000 100644 0000000 2250865 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/log.golden +:000000 100644 0000000 7098910 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/main.fmf +:000000 100644 0000000 9e44d87 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/mf.c +:000000 100755 0000000 c378784 A tests/Regression/bz710216-Wrong-decimal-point-symbol-in-Portuguese-currency/runtest.sh +:000000 100644 0000000 d08b558 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/Makefile +:000000 100644 0000000 a9db60f A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/PURPOSE +:000000 100644 0000000 05c79f0 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/main.fmf +:000000 100755 0000000 37a288a A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/runtest.sh +:000000 100644 0000000 987b670 A tests/Regression/bz711531-shared-robust-mutexes-fail-in-child-fork/test_robust.c +:000000 100644 0000000 efd0e56 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/Makefile +:000000 100644 0000000 ed27eec A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/PURPOSE +:000000 100644 0000000 083d34b A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/main.fmf +:000000 100755 0000000 9120bb9 A tests/Regression/bz730379-libresolv-is-not-compiled-with-the-stack-protector/runtest.sh +:000000 100644 0000000 f084a66 A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/Makefile +:000000 100644 0000000 d5360fe A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/PURPOSE +:000000 100644 0000000 63cf32e A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/main.fmf +:000000 100644 0000000 31d59fc A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/repr.c +:000000 100755 0000000 5872bdb A tests/Regression/bz731042-pthread-create-dumps-core-when-it-fails-to-set/runtest.sh +:000000 100644 0000000 f5d092b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/4151-sourceware.c +:000000 100644 0000000 42c3ff5 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/Makefile +:000000 100644 0000000 863db9b A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/PURPOSE +:000000 100644 0000000 5115794 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/main.fmf +:000000 100755 0000000 9902168 A tests/Regression/bz736346-make-initgroups-setgroups-thread-aware/runtest.sh +:000000 100644 0000000 5da5e2c A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/Makefile +:000000 100644 0000000 5951a5c A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/PURPOSE +:000000 100644 0000000 66f1664 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/gold.txt +:000000 100644 0000000 110b3ce A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/locale.c +:000000 100644 0000000 5159507 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/main.fmf +:000000 100755 0000000 d864434 A tests/Regression/bz737778-setlocale-fails-if-LC-CTYPE-is-set-to-Turkish/runtest.sh +:000000 100644 0000000 767c259 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/Makefile +:000000 100644 0000000 4604006 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/PURPOSE +:000000 100644 0000000 066bc87 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/chk-gethost.c +:000000 100644 0000000 58407ec A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/main.fmf +:000000 100755 0000000 843e909 A tests/Regression/bz739184-Statically-linked-binaries-that-call-gethostbyname/runtest.sh +:000000 100644 0000000 29683a6 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/Makefile +:000000 100644 0000000 ee81e49 A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/PURPOSE +:000000 100644 0000000 8e3cb3c A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/main.fmf +:000000 100755 0000000 3fe960e A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/runtest.sh +:000000 100644 0000000 5c4ba8d A tests/Regression/bz750531-htons-gives-warning-if-compiled-with-gcc/test.c +:000000 100644 0000000 5ecda47 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/Makefile +:000000 100644 0000000 1ec0f90 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/PURPOSE +:000000 100644 0000000 20224cf A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/golden.out +:000000 100644 0000000 24ac144 A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/main.fmf +:000000 100755 0000000 221cfaa A tests/Regression/bz785984-Short-month-names-in-the-zh-CN-locale-contain/runtest.sh +:000000 100644 0000000 d5f37df A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/Makefile +:000000 100644 0000000 4d5f96e A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/PURPOSE +:000000 100644 0000000 6c3a169 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/main.fmf +:000000 100644 0000000 40fc103 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/mallocstress.c +:000000 100755 0000000 1c66bc6 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/redshirt-process.sh +:000000 100755 0000000 8c83f40 A tests/Regression/bz789238-FJ6-2-Bug-malloc-deadlock-in-case-of/runtest.sh +:000000 100644 0000000 7182880 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/Makefile +:000000 100644 0000000 ffdace4 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/PURPOSE +:000000 100644 0000000 34ca26b A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/log.golden +:000000 100644 0000000 1177cab A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/main.fmf +:000000 100755 0000000 b277386 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/runtest.sh +:000000 100644 0000000 f9f9e48 A tests/Regression/bz799853-Slovakia-uses-Euro-as-currency/testcase.c +:000000 100644 0000000 e9b0f8e A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/Makefile +:000000 100644 0000000 b560b29 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/PURPOSE +:000000 100644 0000000 25594e5 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/main.fmf +:000000 100644 0000000 f67c9ad A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.conf +:000000 100644 0000000 4bb4071 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/named.taktik +:000000 100644 0000000 8c48838 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/resolv.conf +:000000 100755 0000000 380a312 A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/runtest.sh +:000000 100644 0000000 a1c3a3d A tests/Regression/bz804630-Bad-resolution-with-IPv6-and-rotate-option-in/testcase.c +:000000 100644 0000000 b7e5b5b A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/Makefile +:000000 100644 0000000 431ba26 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/PURPOSE +:000000 100644 0000000 87973ee A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/get.c +:000000 100644 0000000 be5187e A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/main.fmf +:000000 100755 0000000 156d933 A tests/Regression/bz804689-getaddrinfo-localhost6-returns-127-0-0-1/runtest.sh +:000000 100644 0000000 2c3176c A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/Makefile +:000000 100644 0000000 1bcf189 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/PURPOSE +:000000 100644 0000000 bd1cc4f A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/arf.c +:000000 100644 0000000 9776dc9 A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/main.fmf +:000000 100755 0000000 5ef2a4d A tests/Regression/bz819430-fnmatch-fails-when-wildcard-is-applied-on/runtest.sh +:000000 100644 0000000 4a76486 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/Makefile +:000000 100644 0000000 18a5b0e A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/PURPOSE +:000000 100644 0000000 32151d0 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/main.fmf +:000000 100755 0000000 4f430d0 A tests/Regression/bz823905-iconv-segfaults-if-the-invalid-multibyte/runtest.sh +:000000 100644 0000000 d108a43 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/Makefile +:000000 100644 0000000 0f0515c A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/PURPOSE +:000000 100644 0000000 1c833c1 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar-j.c +:000000 100644 0000000 a088b1d A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fseek-wchar.c +:000000 100644 0000000 8c7ef8a A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.golden +:000000 100644 0000000 c1746f4 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.input +:000000 100644 0000000 f752777 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/fw.j.golden +:000000 100644 0000000 d5414e3 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/main.fmf +:000000 100644 0000000 4aee153 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.golden +:000000 100644 0000000 ff8e960 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/output.seeking +:000000 100755 0000000 a99b064 A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/runtest.sh +:000000 100644 0000000 b8636bb A tests/Regression/bz827362-RHEL6-2-ftell-after-fseek-moves-the-offset-on-a/test.c +:000000 100644 0000000 10df528 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/Makefile +:000000 100644 0000000 2cc1a64 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/PURPOSE +:000000 100644 0000000 15fabe7 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/main.fmf +:000000 100755 0000000 0b66a48 A tests/Regression/bz829222-rpc-file-in-etc-folder-not-marked-as-configuration-file/runtest.sh +:000000 100644 0000000 4e6c6d1 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/Makefile +:000000 100644 0000000 fb4adc1 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/PURPOSE +:000000 100644 0000000 236b663 A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/main.fmf +:000000 100755 0000000 5b89a8f A tests/Regression/bz839572-Anaconda-traceback-when-installing-on-s390x/runtest.sh +:000000 100644 0000000 b0de5b1 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/Makefile +:000000 100644 0000000 c2c5200 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/PURPOSE +:000000 100644 0000000 5da1c22 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/main.fmf +:000000 100644 0000000 0cfba0d A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/reproducer.c +:000000 100755 0000000 e744124 A tests/Regression/bz842280-posix-spawn-invokes-sh-when-it-should-not/runtest.sh +:000000 100644 0000000 8402c19 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/Makefile +:000000 100644 0000000 32bea69 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/PURPOSE +:000000 100644 0000000 8f4c2f7 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/gai-tst.c +:000000 100644 0000000 50f30d4 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/main.fmf +:000000 100755 0000000 c133fb0 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/ns.pl +:000000 100755 0000000 9937992 A tests/Regression/bz863384-getaddrinfo-fails-to-return-FQDN-for-AF_INET-and-AF_INET6/runtest.sh +:000000 100644 0000000 251da43 A tests/Regression/bz868808-backtrace-for-recursive-functions/Makefile +:000000 100644 0000000 cade416 A tests/Regression/bz868808-backtrace-for-recursive-functions/PURPOSE +:000000 100644 0000000 a32c040 A tests/Regression/bz868808-backtrace-for-recursive-functions/bt-tst.c +:000000 100644 0000000 95556a7 A tests/Regression/bz868808-backtrace-for-recursive-functions/main.fmf +:000000 100755 0000000 cf83c3c A tests/Regression/bz868808-backtrace-for-recursive-functions/runtest.sh +:000000 100644 0000000 3792789 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/Makefile +:000000 100644 0000000 925ade3 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/PURPOSE +:000000 100644 0000000 0cad333 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/fpathconf-t.c +:000000 100644 0000000 c971eb1 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/main.fmf +:000000 100755 0000000 2ade365 A tests/Regression/bz916656-fpathconf-for-FIFO-returns-different-value-than-for-directory/runtest.sh +:000000 100644 0000000 5cdf0e9 A tests/Regression/bz916986-MAP_HUGETLB_support/Makefile +:000000 100644 0000000 d8a04c1 A tests/Regression/bz916986-MAP_HUGETLB_support/PURPOSE +:000000 100644 0000000 4f3656c A tests/Regression/bz916986-MAP_HUGETLB_support/bz916986.c +:000000 100644 0000000 518278c A tests/Regression/bz916986-MAP_HUGETLB_support/main.fmf +:000000 100755 0000000 ed52266 A tests/Regression/bz916986-MAP_HUGETLB_support/runtest.sh +:000000 100644 0000000 0eee073 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/Makefile +:000000 100644 0000000 550d1b0 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/PURPOSE +:000000 100644 0000000 d56402d A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/main.fmf +:000000 100755 0000000 dacdb69 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/runtest.sh +:000000 100644 0000000 145ccb2 A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.c +:000000 100644 0000000 9f46a2d A tests/Regression/bz947350-getdate-does-not-ignore-trailing-whitespace/tst-getdate.tmpl +:000000 100644 0000000 5618609 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/Makefile +:000000 100644 0000000 d6a78d6 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/PURPOSE +:000000 100644 0000000 e28c781 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/bz970854.c +:000000 100644 0000000 2b05726 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/main.fmf +:000000 100755 0000000 94468d6 A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/runtest.sh +:000000 100644 0000000 e9c24bf A tests/Regression/bz979363-fputs-should-see-EINTR-and-propagate-it-up/ubz15362.c +:000000 100644 0000000 eb8a3fc A tests/Regression/double_free_exploit/Makefile +:000000 100644 0000000 18c44f6 A tests/Regression/double_free_exploit/PURPOSE +:000000 100644 0000000 f2491e2 A tests/Regression/double_free_exploit/exploit.c +:000000 100644 0000000 be9f77a A tests/Regression/double_free_exploit/exploit2.c +:000000 100644 0000000 5bdac44 A tests/Regression/double_free_exploit/main.fmf +:000000 100755 0000000 35580e4 A tests/Regression/double_free_exploit/runtest.sh +:000000 100644 0000000 94a9bb5 A tests/Regression/expf-gives-infinity-where-result-finite/Makefile +:000000 100644 0000000 3b0f14b A tests/Regression/expf-gives-infinity-where-result-finite/PURPOSE +:000000 100644 0000000 0296162 A tests/Regression/expf-gives-infinity-where-result-finite/main.fmf +:000000 100755 0000000 ac01945 A tests/Regression/expf-gives-infinity-where-result-finite/runtest.sh +:000000 100644 0000000 cbd1baf A tests/Regression/expf-gives-infinity-where-result-finite/tc1.cpp +:000000 100644 0000000 8afe24a A tests/Regression/fallocate_156289/Makefile +:000000 100644 0000000 2eff71e A tests/Regression/fallocate_156289/PURPOSE +:000000 100644 0000000 ddfabbd A tests/Regression/fallocate_156289/fallocate.c++ +:000000 100644 0000000 6304313 A tests/Regression/fallocate_156289/main.fmf +:000000 100755 0000000 359068e A tests/Regression/fallocate_156289/runtest.sh +:000000 100644 0000000 187e4e9 A tests/Regression/locale-archive-test/Makefile +:000000 100644 0000000 9cb209c A tests/Regression/locale-archive-test/PURPOSE +:000000 100644 0000000 c0d4e04 A tests/Regression/locale-archive-test/main.fmf +:000000 100755 0000000 7147736 A tests/Regression/locale-archive-test/runtest.sh +:000000 100644 0000000 e2177b9 A tests/Regression/locale-archive-test/test-locale.py +:000000 100644 0000000 06f1df1 A tests/Regression/setvbuf-to-full-not-working/Makefile +:000000 100644 0000000 3a0a38c A tests/Regression/setvbuf-to-full-not-working/PURPOSE +:000000 100644 0000000 84ad97b A tests/Regression/setvbuf-to-full-not-working/main.fmf +:000000 100755 0000000 4d31e61 A tests/Regression/setvbuf-to-full-not-working/runtest.sh +:000000 100644 0000000 4bc7d9f A tests/Regression/setvbuf-to-full-not-working/testcase.c +:000000 100755 0000000 ed5c619 A tests/Regression/setvbuf-to-full-not-working/try.exp +:000000 100644 0000000 a116188 A tests/Sanity/basic-linking-sanity/Makefile +:000000 100644 0000000 9f0038b A tests/Sanity/basic-linking-sanity/PURPOSE +:000000 100644 0000000 23679f4 A tests/Sanity/basic-linking-sanity/lc.c +:000000 100644 0000000 a3116eb A tests/Sanity/basic-linking-sanity/lc.golden +:000000 100644 0000000 ca45637 A tests/Sanity/basic-linking-sanity/lm.c +:000000 100644 0000000 ddfa1ca A tests/Sanity/basic-linking-sanity/lm.golden +:000000 100644 0000000 7ce81d7 A tests/Sanity/basic-linking-sanity/lpthread.c +:000000 100644 0000000 e150192 A tests/Sanity/basic-linking-sanity/lpthread.golden +:000000 100644 0000000 daadf29 A tests/Sanity/basic-linking-sanity/lrt.c +:000000 100644 0000000 f5ff068 A tests/Sanity/basic-linking-sanity/lrt.golden +:000000 100644 0000000 75bd5d8 A tests/Sanity/basic-linking-sanity/main.fmf +:000000 100755 0000000 9831078 A tests/Sanity/basic-linking-sanity/runtest.sh +:000000 100644 0000000 7a49c36 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/Makefile +:000000 100644 0000000 a137292 A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/PURPOSE +:000000 100644 0000000 68f887d A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/main.fmf +:000000 100755 0000000 672cdfa A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/runtest.sh +:000000 100644 0000000 600ecac A tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/tst-falloc.c +:000000 100644 0000000 88cef9d A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/Makefile +:000000 100644 0000000 a058fb4 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/PURPOSE +:000000 100644 0000000 f2c7353 A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/main.fmf +:000000 100755 0000000 83b675a A tests/Sanity/bz2023420-glibc-Backport-ld-so-list-diagnostics/runtest.sh +:000000 100644 0000000 011936c A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/Makefile +:000000 100644 0000000 bb7a657 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/PURPOSE +:000000 100644 0000000 c20ca2e A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/hello.c +:000000 100644 0000000 4030866 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/interp.c +:000000 100644 0000000 2c38424 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/main.fmf +:000000 100755 0000000 91a00d5 A tests/Standardscompliance/bz531160-ldd-Vulnerable-to-Social-Engineering-Exploits/runtest.sh +:000000 100644 0000000 5283035 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/Makefile +:000000 100644 0000000 3d7835a A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/PURPOSE +:000000 100644 0000000 094e50d A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/cursym.c +:000000 100644 0000000 99dc45e A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/main.fmf +:000000 100755 0000000 fc01c23 A tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/runtest.sh +:000000 100644 0000000 6d834ba A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/Makefile +:000000 100644 0000000 00e692c A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/PURPOSE +:000000 100644 0000000 81e18a2 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/main.fmf +:000000 100755 0000000 64a6450 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/runtest.sh +:000000 100644 0000000 2697415 A tests/Standardscompliance/bz692838-indic-update-locales-with-currency-symbol-to/symbol.txt commit e7f2c8230dddd150adaa8ad0e0729b519603f629 Author: DJ Delorie @@ -3025,11 +3069,11 @@ CommitDate: Fri Dec 20 14:19:15 2024 -0500 Resolves: RHEL-46738 -:000000 100644 00000000 e6e01180 A glibc-RHEL-46738-1.patch -:000000 100644 00000000 c2423d5b A glibc-RHEL-46738-2.patch -:000000 100644 00000000 3b573552 A glibc-RHEL-46738-3.patch -:000000 100644 00000000 6f30744c A glibc-RHEL-46738-4.patch -:100644 100644 5999289a 52a54085 M glibc.spec +:000000 100644 0000000 e6e0118 A glibc-RHEL-46738-1.patch +:000000 100644 0000000 c2423d5 A glibc-RHEL-46738-2.patch +:000000 100644 0000000 3b57355 A glibc-RHEL-46738-3.patch +:000000 100644 0000000 6f30744 A glibc-RHEL-46738-4.patch +:100644 100644 5999289 52a5408 M glibc.spec commit 2fc4b325a8efd49d5792659c5cdf9fb8363921dc Author: Florian Weimer @@ -3041,11 +3085,11 @@ CommitDate: Mon Dec 16 18:53:37 2024 +0100 Resolves: RHEL-67692 -:000000 100644 00000000 bc94037a A glibc-RHEL-67692-1.patch -:000000 100644 00000000 23e12cc2 A glibc-RHEL-67692-2.patch -:000000 100644 00000000 be1e8fb1 A glibc-RHEL-67692-3.patch -:000000 100644 00000000 88637d83 A glibc-RHEL-67692-4.patch -:100644 100644 9a4d4fc8 5999289a M glibc.spec +:000000 100644 0000000 bc94037 A glibc-RHEL-67692-1.patch +:000000 100644 0000000 23e12cc A glibc-RHEL-67692-2.patch +:000000 100644 0000000 be1e8fb A glibc-RHEL-67692-3.patch +:000000 100644 0000000 88637d8 A glibc-RHEL-67692-4.patch +:100644 100644 9a4d4fc 5999289 M glibc.spec commit fb0599e12c0f0bcc928ffb33c7b1e393dba84f92 Author: Florian Weimer @@ -3063,7 +3107,7 @@ CommitDate: Fri Dec 13 19:22:02 2024 +0100 Resolves: RHEL-65334 -:100644 100644 92845440 9a4d4fc8 M glibc.spec +:100644 100644 9284544 9a4d4fc M glibc.spec commit 901a0b41b3b74ed2c9460553942631806c7a14e1 Author: Florian Weimer @@ -3099,7 +3143,7 @@ CommitDate: Fri Dec 13 19:22:02 2024 +0100 Related: RHEL-65334 -:100644 100644 52158a45 92845440 M glibc.spec +:100644 100644 52158a4 9284544 M glibc.spec commit d19a50e44986da3227a00e38807c9a0feb8cd62f Author: Florian Weimer @@ -3114,8 +3158,8 @@ CommitDate: Fri Dec 13 19:22:02 2024 +0100 Co-authored-by: Tulio Magno Quites Machado Filho Related: RHEL-65334 -:100644 100644 8c644ad4 52158a45 M glibc.spec -:100644 100644 4cbb01be 59c73565 M wrap-find-debuginfo.sh +:100644 100644 8c644ad 52158a4 M glibc.spec +:100644 100644 4cbb01b 59c7356 M wrap-find-debuginfo.sh commit 22b00cdcc7e1acb9cd65abd22676985ef1bbb47e Author: Bruno Goncalves @@ -3127,7 +3171,7 @@ CommitDate: Fri Dec 13 17:48:56 2024 +0000 Related: RHELMISC-7545 -:100644 100644 14d08c0a 07eeedb5 M gating.yaml +:100644 100644 14d08c0 07eeedb M gating.yaml commit e62097ee2d09d5684d881e383c820701c85a72a2 Author: DJ Delorie @@ -3139,8 +3183,8 @@ CommitDate: Thu Dec 5 17:57:47 2024 -0500 Resolves: RHEL-56032 -:000000 100644 00000000 a0e38e7e A glibc-RHEL-56032.patch -:100644 100644 deda668d 8c644ad4 M glibc.spec +:000000 100644 0000000 a0e38e7 A glibc-RHEL-56032.patch +:100644 100644 deda668 8c644ad M glibc.spec commit 6beea7eb5476df9c4c2fc580bcc5da05b51d3dec Author: Florian Weimer @@ -3152,8 +3196,8 @@ CommitDate: Mon Dec 2 11:43:17 2024 +0100 Resolves: RHEL-47467 -:000000 100644 00000000 609ac9da A glibc-RHEL-47467.patch -:100644 100644 bc881da9 deda668d M glibc.spec +:000000 100644 0000000 609ac9d A glibc-RHEL-47467.patch +:100644 100644 bc881da deda668 M glibc.spec commit 1ae6242e8b57e0d4458d2ad8b03e78270964bdfb Author: Patsy Griffin @@ -3165,16 +3209,16 @@ CommitDate: Thu Nov 21 11:36:45 2024 -0500 Resolves: RHEL-1915 -:000000 100644 00000000 8a5b9943 A glibc-RHEL-1915-1.patch -:000000 100644 00000000 1b24e63b A glibc-RHEL-1915-2.patch -:000000 100644 00000000 db6e942a A glibc-RHEL-1915-3.patch -:000000 100644 00000000 711b6db5 A glibc-RHEL-1915-4.patch -:000000 100644 00000000 ee6b9e01 A glibc-RHEL-1915-5.patch -:000000 100644 00000000 d70b98c3 A glibc-RHEL-1915-6.patch -:000000 100644 00000000 d3b62f0f A glibc-RHEL-1915-7.patch -:000000 100644 00000000 823cc16e A glibc-RHEL-1915-8.patch -:000000 100644 00000000 c1828f7f A glibc-RHEL-1915-9.patch -:100644 100644 d04a059b bc881da9 M glibc.spec +:000000 100644 0000000 8a5b994 A glibc-RHEL-1915-1.patch +:000000 100644 0000000 1b24e63 A glibc-RHEL-1915-2.patch +:000000 100644 0000000 db6e942 A glibc-RHEL-1915-3.patch +:000000 100644 0000000 711b6db A glibc-RHEL-1915-4.patch +:000000 100644 0000000 ee6b9e0 A glibc-RHEL-1915-5.patch +:000000 100644 0000000 d70b98c A glibc-RHEL-1915-6.patch +:000000 100644 0000000 d3b62f0 A glibc-RHEL-1915-7.patch +:000000 100644 0000000 823cc16 A glibc-RHEL-1915-8.patch +:000000 100644 0000000 c1828f7 A glibc-RHEL-1915-9.patch +:100644 100644 d04a059 bc881da M glibc.spec commit e56f6d3b52dbd1a5a421ab5042b2325e1bf7a421 Author: Florian Weimer @@ -3186,19 +3230,19 @@ CommitDate: Mon Nov 18 16:09:30 2024 +0100 Resolves: RHEL-46725 -:000000 100644 00000000 389e7d3e A glibc-RHEL-46725-1.patch -:000000 100644 00000000 95d1f17e A glibc-RHEL-46725-10.patch -:000000 100644 00000000 dc879930 A glibc-RHEL-46725-11.patch -:000000 100644 00000000 4017bdad A glibc-RHEL-46725-12.patch -:000000 100644 00000000 03f480f1 A glibc-RHEL-46725-2.patch -:000000 100644 00000000 3312e21f A glibc-RHEL-46725-3.patch -:000000 100644 00000000 5a69126f A glibc-RHEL-46725-4.patch -:000000 100644 00000000 411003a3 A glibc-RHEL-46725-5.patch -:000000 100644 00000000 6d139049 A glibc-RHEL-46725-6.patch -:000000 100644 00000000 d4ff4ba0 A glibc-RHEL-46725-7.patch -:000000 100644 00000000 8f0a2be6 A glibc-RHEL-46725-8.patch -:000000 100644 00000000 14f90dad A glibc-RHEL-46725-9.patch -:100644 100644 ca3dfa9a d04a059b M glibc.spec +:000000 100644 0000000 389e7d3 A glibc-RHEL-46725-1.patch +:000000 100644 0000000 95d1f17 A glibc-RHEL-46725-10.patch +:000000 100644 0000000 dc87993 A glibc-RHEL-46725-11.patch +:000000 100644 0000000 4017bda A glibc-RHEL-46725-12.patch +:000000 100644 0000000 03f480f A glibc-RHEL-46725-2.patch +:000000 100644 0000000 3312e21 A glibc-RHEL-46725-3.patch +:000000 100644 0000000 5a69126 A glibc-RHEL-46725-4.patch +:000000 100644 0000000 411003a A glibc-RHEL-46725-5.patch +:000000 100644 0000000 6d13904 A glibc-RHEL-46725-6.patch +:000000 100644 0000000 d4ff4ba A glibc-RHEL-46725-7.patch +:000000 100644 0000000 8f0a2be A glibc-RHEL-46725-8.patch +:000000 100644 0000000 14f90da A glibc-RHEL-46725-9.patch +:100644 100644 ca3dfa9 d04a059 M glibc.spec commit 9f5423a440eeb9a326d729ffd225f4e6fc02c031 Author: Arjun Shankar @@ -3210,10 +3254,10 @@ CommitDate: Mon Nov 11 18:26:37 2024 +0100 Resolves: RHEL-50548 -:000000 100644 00000000 15099a5e A glibc-RHEL-50548-1.patch -:000000 100644 00000000 32360018 A glibc-RHEL-50548-2.patch -:000000 100644 00000000 e7d53f51 A glibc-RHEL-50548-3.patch -:100644 100644 82e93b8a ca3dfa9a M glibc.spec +:000000 100644 0000000 15099a5 A glibc-RHEL-50548-1.patch +:000000 100644 0000000 3236001 A glibc-RHEL-50548-2.patch +:000000 100644 0000000 e7d53f5 A glibc-RHEL-50548-3.patch +:100644 100644 82e93b8 ca3dfa9 M glibc.spec commit 9c1694b3103a895efdbed63d9678d673f81cc561 Author: Florian Weimer @@ -3225,18 +3269,18 @@ CommitDate: Thu Nov 7 20:20:03 2024 +0100 Resolves: RHEL-46736 -:000000 100644 00000000 16146ee7 A glibc-RHEL-46736-1.patch -:000000 100644 00000000 d65bf058 A glibc-RHEL-46736-10.patch -:000000 100644 00000000 ed7722a5 A glibc-RHEL-46736-11.patch -:000000 100644 00000000 9adda660 A glibc-RHEL-46736-2.patch -:000000 100644 00000000 2dde8b5b A glibc-RHEL-46736-3.patch -:000000 100644 00000000 cb728cbf A glibc-RHEL-46736-4.patch -:000000 100644 00000000 ca67e624 A glibc-RHEL-46736-5.patch -:000000 100644 00000000 5650c7b4 A glibc-RHEL-46736-6.patch -:000000 100644 00000000 e0258358 A glibc-RHEL-46736-7.patch -:000000 100644 00000000 c265ed53 A glibc-RHEL-46736-8.patch -:000000 100644 00000000 f9316a17 A glibc-RHEL-46736-9.patch -:100644 100644 6dad21e8 82e93b8a M glibc.spec +:000000 100644 0000000 16146ee A glibc-RHEL-46736-1.patch +:000000 100644 0000000 d65bf05 A glibc-RHEL-46736-10.patch +:000000 100644 0000000 ed7722a A glibc-RHEL-46736-11.patch +:000000 100644 0000000 9adda66 A glibc-RHEL-46736-2.patch +:000000 100644 0000000 2dde8b5 A glibc-RHEL-46736-3.patch +:000000 100644 0000000 cb728cb A glibc-RHEL-46736-4.patch +:000000 100644 0000000 ca67e62 A glibc-RHEL-46736-5.patch +:000000 100644 0000000 5650c7b A glibc-RHEL-46736-6.patch +:000000 100644 0000000 e025835 A glibc-RHEL-46736-7.patch +:000000 100644 0000000 c265ed5 A glibc-RHEL-46736-8.patch +:000000 100644 0000000 f9316a1 A glibc-RHEL-46736-9.patch +:100644 100644 6dad21e 82e93b8 M glibc.spec commit a2d1e68858ad892c84b1a1a7e8e253ea2b74ac48 Author: Florian Weimer @@ -3248,8 +3292,8 @@ CommitDate: Thu Nov 7 18:52:42 2024 +0100 Resolves: RHEL-54413 -:000000 100644 00000000 17188df8 A glibc-RHEL-54413.patch -:100644 100644 352b3485 6dad21e8 M glibc.spec +:000000 100644 0000000 17188df A glibc-RHEL-54413.patch +:100644 100644 352b348 6dad21e M glibc.spec commit 9d46c1dd61c4781a76d71264e2cfc3df38c55d95 Author: Florian Weimer @@ -3261,10 +3305,10 @@ CommitDate: Thu Nov 7 16:40:49 2024 +0100 Resolves: RHEL-46733 -:000000 100644 00000000 acab1151 A glibc-RHEL-46733-1.patch -:000000 100644 00000000 16a0bf49 A glibc-RHEL-46733-2.patch -:000000 100644 00000000 753c87bb A glibc-RHEL-46733-3.patch -:100644 100644 e0cce6b6 352b3485 M glibc.spec +:000000 100644 0000000 acab115 A glibc-RHEL-46733-1.patch +:000000 100644 0000000 16a0bf4 A glibc-RHEL-46733-2.patch +:000000 100644 0000000 753c87b A glibc-RHEL-46733-3.patch +:100644 100644 e0cce6b 352b348 M glibc.spec commit 0ce67574127a4ab11d255f9ff40057ed87e46d75 Author: Florian Weimer @@ -3276,10 +3320,10 @@ CommitDate: Thu Nov 7 14:48:23 2024 +0100 Resolves: RHEL-66253 -:000000 100644 00000000 37b2506b A glibc-RHEL-66253-1.patch -:000000 100644 00000000 3e89f228 A glibc-RHEL-66253-2.patch -:000000 100644 00000000 7f57aba5 A glibc-RHEL-66253-3.patch -:100644 100644 b2c767f0 e0cce6b6 M glibc.spec +:000000 100644 0000000 37b2506 A glibc-RHEL-66253-1.patch +:000000 100644 0000000 3e89f22 A glibc-RHEL-66253-2.patch +:000000 100644 0000000 7f57aba A glibc-RHEL-66253-3.patch +:100644 100644 b2c767f e0cce6b M glibc.spec commit c6a316c547cbc936ee41bb6e706f0838c8b51184 Author: Florian Weimer @@ -3291,8 +3335,8 @@ CommitDate: Thu Nov 7 09:39:00 2024 +0100 Resolves: RHEL-46724 -:000000 100644 00000000 a9f04e4f A glibc-RHEL-46724.patch -:100644 100644 628227bd b2c767f0 M glibc.spec +:000000 100644 0000000 a9f04e4 A glibc-RHEL-46724.patch +:100644 100644 628227b b2c767f M glibc.spec commit c711e702dd9ee272199cc52faf3784885df8fd29 Author: Patsy Griffin @@ -3305,13 +3349,13 @@ CommitDate: Wed Nov 6 15:42:54 2024 -0500 Resolves: RHEL-50662 -:000000 100644 00000000 3e429ae1 A glibc-RHEL-50662-1.patch -:000000 100644 00000000 2f351801 A glibc-RHEL-50662-2.patch -:000000 100644 00000000 6524bce1 A glibc-RHEL-50662-3.patch -:000000 100644 00000000 db465d8f A glibc-RHEL-50662-4.patch -:000000 100644 00000000 c3722c21 A glibc-RHEL-50662-5.patch -:000000 100644 00000000 d14093c7 A glibc-RHEL-50662-6.patch -:100644 100644 e4a15ad1 628227bd M glibc.spec +:000000 100644 0000000 3e429ae A glibc-RHEL-50662-1.patch +:000000 100644 0000000 2f35180 A glibc-RHEL-50662-2.patch +:000000 100644 0000000 6524bce A glibc-RHEL-50662-3.patch +:000000 100644 0000000 db465d8 A glibc-RHEL-50662-4.patch +:000000 100644 0000000 c3722c2 A glibc-RHEL-50662-5.patch +:000000 100644 0000000 d14093c A glibc-RHEL-50662-6.patch +:100644 100644 e4a15ad 628227b M glibc.spec commit 6fbaa68419e2d60d63639430c585828e5c3dbe22 Author: DJ Delorie @@ -3325,21 +3369,21 @@ CommitDate: Wed Nov 6 13:49:54 2024 -0500 Includes base FUSE filesystem testing framework support. -:000000 100644 00000000 a8a3fa17 A glibc-RHEL-50545-1.patch -:000000 100644 00000000 714be39e A glibc-RHEL-50545-10.patch -:000000 100644 00000000 46819710 A glibc-RHEL-50545-11.patch -:000000 100644 00000000 a54cff9a A glibc-RHEL-50545-12.patch -:000000 100644 00000000 59b5f29a A glibc-RHEL-50545-13.patch -:000000 100644 00000000 c2674d1d A glibc-RHEL-50545-14.patch -:000000 100644 00000000 b3926256 A glibc-RHEL-50545-2.patch -:000000 100644 00000000 076b7f7c A glibc-RHEL-50545-3.patch -:000000 100644 00000000 612e0ecf A glibc-RHEL-50545-4.patch -:000000 100644 00000000 b1b9e6ab A glibc-RHEL-50545-5.patch -:000000 100644 00000000 ea404be2 A glibc-RHEL-50545-6.patch -:000000 100644 00000000 b07088e3 A glibc-RHEL-50545-7.patch -:000000 100644 00000000 e6d036a2 A glibc-RHEL-50545-8.patch -:000000 100644 00000000 4127da13 A glibc-RHEL-50545-9.patch -:100644 100644 5c907a16 e4a15ad1 M glibc.spec +:000000 100644 0000000 a8a3fa1 A glibc-RHEL-50545-1.patch +:000000 100644 0000000 714be39 A glibc-RHEL-50545-10.patch +:000000 100644 0000000 4681971 A glibc-RHEL-50545-11.patch +:000000 100644 0000000 a54cff9 A glibc-RHEL-50545-12.patch +:000000 100644 0000000 59b5f29 A glibc-RHEL-50545-13.patch +:000000 100644 0000000 c2674d1 A glibc-RHEL-50545-14.patch +:000000 100644 0000000 b392625 A glibc-RHEL-50545-2.patch +:000000 100644 0000000 076b7f7 A glibc-RHEL-50545-3.patch +:000000 100644 0000000 612e0ec A glibc-RHEL-50545-4.patch +:000000 100644 0000000 b1b9e6a A glibc-RHEL-50545-5.patch +:000000 100644 0000000 ea404be A glibc-RHEL-50545-6.patch +:000000 100644 0000000 b07088e A glibc-RHEL-50545-7.patch +:000000 100644 0000000 e6d036a A glibc-RHEL-50545-8.patch +:000000 100644 0000000 4127da1 A glibc-RHEL-50545-9.patch +:100644 100644 5c907a1 e4a15ad M glibc.spec commit 2fc78c10da88f745e623c43cc22138d5906fa0c4 Author: Luigi Pellecchia @@ -3354,7 +3398,7 @@ CommitDate: Tue Oct 1 14:34:22 2024 +0000 Signed-off-by: Luigi Pellecchia -:000000 100644 00000000 9515e710 A revdep.yaml +:000000 100644 0000000 9515e71 A revdep.yaml commit 66024333e72c38b36392f08354d7f80a399071ea Author: Arjun Shankar @@ -3366,18 +3410,18 @@ CommitDate: Mon Sep 30 11:57:47 2024 +0200 Resolves: RHEL-46739 -:000000 100644 00000000 2292c12f A glibc-RHEL-46739-1.patch -:000000 100644 00000000 0bcd14cf A glibc-RHEL-46739-10.patch -:000000 100644 00000000 0e21b24e A glibc-RHEL-46739-11.patch -:000000 100644 00000000 da1873cb A glibc-RHEL-46739-2.patch -:000000 100644 00000000 ef8c2edd A glibc-RHEL-46739-3.patch -:000000 100644 00000000 2d5fa5c8 A glibc-RHEL-46739-4.patch -:000000 100644 00000000 2d193e81 A glibc-RHEL-46739-5.patch -:000000 100644 00000000 83514c8e A glibc-RHEL-46739-6.patch -:000000 100644 00000000 a42b32eb A glibc-RHEL-46739-7.patch -:000000 100644 00000000 4f89bfa6 A glibc-RHEL-46739-8.patch -:000000 100644 00000000 ec6cb19c A glibc-RHEL-46739-9.patch -:100644 100644 a74d9eec 5c907a16 M glibc.spec +:000000 100644 0000000 2292c12 A glibc-RHEL-46739-1.patch +:000000 100644 0000000 0bcd14c A glibc-RHEL-46739-10.patch +:000000 100644 0000000 0e21b24 A glibc-RHEL-46739-11.patch +:000000 100644 0000000 da1873c A glibc-RHEL-46739-2.patch +:000000 100644 0000000 ef8c2ed A glibc-RHEL-46739-3.patch +:000000 100644 0000000 2d5fa5c A glibc-RHEL-46739-4.patch +:000000 100644 0000000 2d193e8 A glibc-RHEL-46739-5.patch +:000000 100644 0000000 83514c8 A glibc-RHEL-46739-6.patch +:000000 100644 0000000 a42b32e A glibc-RHEL-46739-7.patch +:000000 100644 0000000 4f89bfa A glibc-RHEL-46739-8.patch +:000000 100644 0000000 ec6cb19 A glibc-RHEL-46739-9.patch +:100644 100644 a74d9ee 5c907a1 M glibc.spec commit 52c06307bd435d9883c9fe8c272b9c62317352de Author: Florian Weimer @@ -3395,9 +3439,9 @@ CommitDate: Fri Sep 27 12:58:09 2024 +0200 Resolves: RHEL-60466 -:000000 100644 00000000 c8126407 A glibc-RHEL-60466-1.patch -:000000 100644 00000000 bc22daa7 A glibc-RHEL-60466-2.patch -:100644 100644 bca78b0a a74d9eec M glibc.spec +:000000 100644 0000000 c812640 A glibc-RHEL-60466-1.patch +:000000 100644 0000000 bc22daa A glibc-RHEL-60466-2.patch +:100644 100644 bca78b0 a74d9ee M glibc.spec commit d1f7c5cabaa456ec2611b5432fce02b0dd2627fc Author: Arjun Shankar @@ -3409,8 +3453,8 @@ CommitDate: Thu Sep 26 17:20:40 2024 +0200 Resolves: RHEL-46735 -:000000 100644 00000000 7dd21db7 A glibc-RHEL-46735.patch -:100644 100644 c5f52e0a bca78b0a M glibc.spec +:000000 100644 0000000 7dd21db A glibc-RHEL-46735.patch +:100644 100644 c5f52e0 bca78b0 M glibc.spec commit 9bd80898a7edce8faa096d9dcf07899917a5ce6c Author: Arjun Shankar @@ -3422,8 +3466,8 @@ CommitDate: Thu Sep 26 16:05:40 2024 +0200 Resolves: RHEL-46734 -:000000 100644 00000000 d63056b2 A glibc-RHEL-46734.patch -:100644 100644 170bc002 c5f52e0a M glibc.spec +:000000 100644 0000000 d63056b A glibc-RHEL-46734.patch +:100644 100644 170bc00 c5f52e0 M glibc.spec commit cc0b035e0189c23102a7b5208b4e7a501237deeb Author: DJ Delorie @@ -3435,8 +3479,8 @@ CommitDate: Tue Sep 24 20:41:54 2024 -0400 Resolves: RHEL-46728 -:000000 100644 00000000 439d9aba A glibc-RHEL-46728.patch -:100644 100644 d34788ec 170bc002 M glibc.spec +:000000 100644 0000000 439d9ab A glibc-RHEL-46728.patch +:100644 100644 d34788e 170bc00 M glibc.spec commit 2ba780bc6b92e5dba6d0f818ea2a4f22fe52c434 Author: DJ Delorie @@ -3448,8 +3492,8 @@ CommitDate: Tue Sep 24 14:58:59 2024 -0400 Resolves: RHEL-41189 -:000000 100644 00000000 3e31fbfc A glibc-RHEL-41189.patch -:100644 100644 feff1235 d34788ec M glibc.spec +:000000 100644 0000000 3e31fbf A glibc-RHEL-41189.patch +:100644 100644 feff123 d34788e M glibc.spec commit ff10577abe93be6c8dc21684e43ae91be8cf6d47 Author: Florian Weimer @@ -3464,8 +3508,8 @@ CommitDate: Tue Sep 24 16:27:59 2024 +0200 Resolves: RHEL-59494 -:000000 100644 00000000 d0fa23c3 A glibc-RHEL-59494-3.patch -:100644 100644 caddd6c7 feff1235 M glibc.spec +:000000 100644 0000000 d0fa23c A glibc-RHEL-59494-3.patch +:100644 100644 caddd6c feff123 M glibc.spec commit ecd5a531a35b4661c49c4d7a9733fb558b98621e Author: Florian Weimer @@ -3480,9 +3524,9 @@ CommitDate: Thu Sep 19 17:39:02 2024 +0200 Resolves: RHEL-59494 -:000000 100644 00000000 5551aae5 A glibc-RHEL-59494-1.patch -:000000 100644 00000000 35e60c72 A glibc-RHEL-59494-2.patch -:100644 100644 d6a976a9 caddd6c7 M glibc.spec +:000000 100644 0000000 5551aae A glibc-RHEL-59494-1.patch +:000000 100644 0000000 35e60c7 A glibc-RHEL-59494-2.patch +:100644 100644 d6a976a caddd6c M glibc.spec commit 3d4f500e5c5e0ec6a61265f855bc6534095e20cf Author: DJ Delorie @@ -3497,11 +3541,11 @@ CommitDate: Mon Sep 9 15:27:04 2024 -0400 Note glibc-RHEL-46979-3.patch contains backport-related ABI protection and is not an upstream commit. -:000000 100644 00000000 24308804 A glibc-RHEL-46979-1.patch -:000000 100644 00000000 0671c4fe A glibc-RHEL-46979-2.patch -:000000 100644 00000000 de8b3902 A glibc-RHEL-46979-3.patch -:000000 100644 00000000 d9d69850 A glibc-RHEL-46979-4.patch -:100644 100644 75c43e20 d6a976a9 M glibc.spec +:000000 100644 0000000 2430880 A glibc-RHEL-46979-1.patch +:000000 100644 0000000 0671c4f A glibc-RHEL-46979-2.patch +:000000 100644 0000000 de8b390 A glibc-RHEL-46979-3.patch +:000000 100644 0000000 d9d6985 A glibc-RHEL-46979-4.patch +:100644 100644 75c43e2 d6a976a M glibc.spec commit 8e284fa1e88066a32a9d32fe2263678d11a243fa Author: Siddhesh Poyarekar @@ -3513,17 +3557,17 @@ CommitDate: Thu Sep 5 06:26:05 2024 -0400 Resolves: RHEL-54447 -:000000 100644 00000000 e6258154 A glibc-RHEL-54447-1.patch -:000000 100644 00000000 6258b77e A glibc-RHEL-54447-10.patch -:000000 100644 00000000 1c39e952 A glibc-RHEL-54447-2.patch -:000000 100644 00000000 a7b2bdd5 A glibc-RHEL-54447-3.patch -:000000 100644 00000000 525ce22d A glibc-RHEL-54447-4.patch -:000000 100644 00000000 d2d72aa1 A glibc-RHEL-54447-5.patch -:000000 100644 00000000 006e312a A glibc-RHEL-54447-6.patch -:000000 100644 00000000 9446d2a2 A glibc-RHEL-54447-7.patch -:000000 100644 00000000 b4e804fd A glibc-RHEL-54447-8.patch -:000000 100644 00000000 18e63df0 A glibc-RHEL-54447-9.patch -:100644 100644 ee337d91 75c43e20 M glibc.spec +:000000 100644 0000000 e625815 A glibc-RHEL-54447-1.patch +:000000 100644 0000000 6258b77 A glibc-RHEL-54447-10.patch +:000000 100644 0000000 1c39e95 A glibc-RHEL-54447-2.patch +:000000 100644 0000000 a7b2bdd A glibc-RHEL-54447-3.patch +:000000 100644 0000000 525ce22 A glibc-RHEL-54447-4.patch +:000000 100644 0000000 d2d72aa A glibc-RHEL-54447-5.patch +:000000 100644 0000000 006e312 A glibc-RHEL-54447-6.patch +:000000 100644 0000000 9446d2a A glibc-RHEL-54447-7.patch +:000000 100644 0000000 b4e804f A glibc-RHEL-54447-8.patch +:000000 100644 0000000 18e63df A glibc-RHEL-54447-9.patch +:100644 100644 ee337d9 75c43e2 M glibc.spec commit 07b20a236aec7f16755bc968b1ca3579b696a018 Author: Patsy Griffin @@ -3536,9 +3580,9 @@ CommitDate: Tue Sep 3 17:36:50 2024 -0400 Resolves: RHEL-49489 -:000000 100644 00000000 3f2d6d8c A glibc-RHEL-49489-1.patch -:000000 100644 00000000 6802b1fd A glibc-RHEL-49489-2.patch -:100644 100644 ccce97ca ee337d91 M glibc.spec +:000000 100644 0000000 3f2d6d8 A glibc-RHEL-49489-1.patch +:000000 100644 0000000 6802b1f A glibc-RHEL-49489-2.patch +:100644 100644 ccce97c ee337d9 M glibc.spec commit 666f2b55d3245def82ac060a21ce72e752ede189 Author: Patsy Griffin @@ -3551,10 +3595,10 @@ CommitDate: Wed Aug 28 15:23:03 2024 -0400 Resolves: RHEL-36148 -:000000 100644 00000000 3931b904 A glibc-RHEL-36148-1.patch -:000000 100644 00000000 607b3469 A glibc-RHEL-36148-2.patch -:000000 100644 00000000 a2b3e769 A glibc-RHEL-36148-3.patch -:100644 100644 74a6434a ccce97ca M glibc.spec +:000000 100644 0000000 3931b90 A glibc-RHEL-36148-1.patch +:000000 100644 0000000 607b346 A glibc-RHEL-36148-2.patch +:000000 100644 0000000 a2b3e76 A glibc-RHEL-36148-3.patch +:100644 100644 74a6434 ccce97c M glibc.spec commit 7a74d3400aeca461f8c3cc63eb177686f88c9a37 Author: Florian Weimer @@ -3566,9 +3610,9 @@ CommitDate: Thu Aug 15 11:11:24 2024 +0200 Resolves: RHEL-46723 -:000000 100644 00000000 5f3f2266 A glibc-RHEL-46723-1.patch -:000000 100644 00000000 5b7e73af A glibc-RHEL-46723-2.patch -:100644 100644 b2624b14 74a6434a M glibc.spec +:000000 100644 0000000 5f3f226 A glibc-RHEL-46723-1.patch +:000000 100644 0000000 5b7e73a A glibc-RHEL-46723-2.patch +:100644 100644 b2624b1 74a6434 M glibc.spec commit 479ad685f53b68c44b5134b7cb8a14159d3e4f07 Author: Frédéric Bérat @@ -3580,8 +3624,8 @@ CommitDate: Tue Aug 13 15:22:17 2024 +0200 Resolves: RHEL-54007 -:000000 100644 00000000 35b96a63 A glibc-RHEL-54007.patch -:100644 100644 58c12320 b2624b14 M glibc.spec +:000000 100644 0000000 35b96a6 A glibc-RHEL-54007.patch +:100644 100644 58c1232 b2624b1 M glibc.spec commit 0d2a788a884d49b318b9ba76b90e54d3166efc86 Author: Arjun Shankar @@ -3593,10 +3637,10 @@ CommitDate: Tue Aug 6 17:21:29 2024 +0200 Resolves: RHEL-50101 -:000000 100644 00000000 eb722e3c A glibc-RHEL-50101-1.patch -:000000 100644 00000000 318a0377 A glibc-RHEL-50101-2.patch -:000000 100644 00000000 49c6e283 A glibc-RHEL-50101-3.patch -:100644 100644 2a7a74f6 58c12320 M glibc.spec +:000000 100644 0000000 eb722e3 A glibc-RHEL-50101-1.patch +:000000 100644 0000000 318a037 A glibc-RHEL-50101-2.patch +:000000 100644 0000000 49c6e28 A glibc-RHEL-50101-3.patch +:100644 100644 2a7a74f 58c1232 M glibc.spec commit 0ecf9bed9bedaad481f3bf24b574d742eebe53df Author: Arjun Shankar @@ -3608,9 +3652,9 @@ CommitDate: Tue Aug 6 14:00:31 2024 +0200 Resolves: RHEL-46741 -:000000 100644 00000000 c0ba98b4 A glibc-RHEL-46741-1.patch -:000000 100644 00000000 cac84f0c A glibc-RHEL-46741-2.patch -:100644 100644 b0ee9fa2 2a7a74f6 M glibc.spec +:000000 100644 0000000 c0ba98b A glibc-RHEL-46741-1.patch +:000000 100644 0000000 cac84f0 A glibc-RHEL-46741-2.patch +:100644 100644 b0ee9fa 2a7a74f M glibc.spec commit 21ce8318ac5f1b7d93d91114a86dcf3ccc89fbfa Author: DJ Delorie @@ -3622,9 +3666,9 @@ CommitDate: Mon Jul 22 15:13:48 2024 -0400 Resolves: RHEL-25257 -:000000 100644 00000000 c7413d77 A glibc-RHEL-25257-1.patch -:000000 100644 00000000 d6e518b3 A glibc-RHEL-25257-2.patch -:100644 100644 c5816c5d b0ee9fa2 M glibc.spec +:000000 100644 0000000 c7413d7 A glibc-RHEL-25257-1.patch +:000000 100644 0000000 d6e518b A glibc-RHEL-25257-2.patch +:100644 100644 c5816c5 b0ee9fa M glibc.spec commit 29cbc66e086b6e85fab3dbf1148d8101b8029ac4 Author: DJ Delorie @@ -3636,8 +3680,8 @@ CommitDate: Fri Jul 12 13:29:15 2024 -0400 Resolves: RHEL-30823 -:000000 100644 00000000 96c256fd A glibc-RHEL-30823.patch -:100644 100644 b5800e37 c5816c5d M glibc.spec +:000000 100644 0000000 96c256f A glibc-RHEL-30823.patch +:100644 100644 b5800e3 c5816c5 M glibc.spec commit 45033701c6f05ac47509b6eb500d3c78f0be2f18 Author: Patsy Griffin @@ -3650,9 +3694,9 @@ CommitDate: Thu Jul 11 16:01:24 2024 -0400 Resolves: RHEL-39992 -:000000 100644 00000000 040a4993 A glibc-RHEL-39992-1.patch -:000000 100644 00000000 df021c91 A glibc-RHEL-39992-2.patch -:100644 100644 22fd006e b5800e37 M glibc.spec +:000000 100644 0000000 040a499 A glibc-RHEL-39992-1.patch +:000000 100644 0000000 df021c9 A glibc-RHEL-39992-2.patch +:100644 100644 22fd006 b5800e3 M glibc.spec commit c24969da0343d5c33b17fbe9fdc0313e78a044c5 Author: Patsy Griffin @@ -3664,10 +3708,10 @@ CommitDate: Wed Jul 3 18:29:08 2024 -0400 Resolves: RHEL-39000 -:000000 100644 00000000 8de8d2d7 A glibc-RHEL-39000-1.patch -:000000 100644 00000000 2ed92f7e A glibc-RHEL-39000-2.patch -:000000 100644 00000000 e2d2a831 A glibc-RHEL-39000-3.patch -:100644 100644 f3de6c63 22fd006e M glibc.spec +:000000 100644 0000000 8de8d2d A glibc-RHEL-39000-1.patch +:000000 100644 0000000 2ed92f7 A glibc-RHEL-39000-2.patch +:000000 100644 0000000 e2d2a83 A glibc-RHEL-39000-3.patch +:100644 100644 f3de6c6 22fd006 M glibc.spec commit d3837bb611d3e381b0eaa47a7863a737ecd07644 Author: Patsy Griffin @@ -3680,9 +3724,9 @@ CommitDate: Thu Jun 13 22:25:57 2024 -0400 Resolves: RHEL-34272 Resolves: RHEL-34274 -:000000 100644 00000000 f8574ea9 A glibc-RHEL-34272-1.patch -:000000 100644 00000000 62930fe5 A glibc-RHEL-34272-2.patch -:100644 100644 511830bd f3de6c63 M glibc.spec +:000000 100644 0000000 f8574ea A glibc-RHEL-34272-1.patch +:000000 100644 0000000 62930fe A glibc-RHEL-34272-2.patch +:100644 100644 511830b f3de6c6 M glibc.spec commit ec53b9158cbf423bf4406ae29b5eb94b765af31c Author: Patsy Griffin @@ -3694,9 +3738,9 @@ CommitDate: Tue Jun 11 23:25:01 2024 -0400 Resolves: RHEL-34268 -:000000 100644 00000000 4642d7a5 A glibc-RHEL-34268-1.patch -:000000 100644 00000000 6619d7c9 A glibc-RHEL-34268-2.patch -:100644 100644 222c4312 511830bd M glibc.spec +:000000 100644 0000000 4642d7a A glibc-RHEL-34268-1.patch +:000000 100644 0000000 6619d7c A glibc-RHEL-34268-2.patch +:100644 100644 222c431 511830b M glibc.spec commit 221f7bce5b62167c1851059baaa0262ac041fae3 Author: Patsy Griffin @@ -3708,8 +3752,8 @@ CommitDate: Mon Jun 10 13:51:02 2024 -0400 Resolves: RHEL-34265 -:000000 100644 00000000 f390d0c4 A glibc-RHEL-34265.patch -:100644 100644 0a053eb1 222c4312 M glibc.spec +:000000 100644 0000000 f390d0c A glibc-RHEL-34265.patch +:100644 100644 0a053eb 222c431 M glibc.spec commit 001abaad141fea4ebef70af735a1a18fa26a4f00 Author: Arjun Shankar @@ -3721,8 +3765,8 @@ CommitDate: Mon Jun 10 14:10:09 2024 +0200 Resolves: RHEL-25063 -:000000 100644 00000000 58580e92 A glibc-RHEL-25063.patch -:100644 100644 ae1494fb 0a053eb1 M glibc.spec +:000000 100644 0000000 58580e9 A glibc-RHEL-25063.patch +:100644 100644 ae1494f 0a053eb M glibc.spec commit 1fb374e8dc69a05c066f1e0ff9d9d431c758916f Author: Arjun Shankar @@ -3734,7 +3778,7 @@ CommitDate: Mon Jun 10 14:07:04 2024 +0200 Related: RHEL-31805 -:100644 100644 ff3fe4ef ae1494fb M glibc.spec +:100644 100644 ff3fe4e ae1494f M glibc.spec commit c9855bf213c3fe034f235917266e0d23d5a9c318 Author: Patsy Griffin @@ -3746,8 +3790,8 @@ CommitDate: Thu Jun 6 21:34:16 2024 -0400 Resolves: RHEL-31805 -:000000 100644 00000000 0d7fa4ee A glibc-RHEL-31805.patch -:100644 100644 28e00a97 ff3fe4ef M glibc.spec +:000000 100644 0000000 0d7fa4e A glibc-RHEL-31805.patch +:100644 100644 28e00a9 ff3fe4e M glibc.spec commit 2ea0ac63f1ebcebe8c74687472215bdb519a9905 Author: Patsy Griffin @@ -3759,12 +3803,12 @@ CommitDate: Thu Jun 6 14:24:58 2024 -0400 Resolves: RHEL-22165 -:000000 100644 00000000 31339665 A glibc-RHEL-22165-1.patch -:000000 100644 00000000 62c2711e A glibc-RHEL-22165-2.patch -:000000 100644 00000000 392e7467 A glibc-RHEL-22165-3.patch -:000000 100644 00000000 0335b6f6 A glibc-RHEL-22165-4.patch -:000000 100644 00000000 76b42ea0 A glibc-RHEL-22165-5.patch -:100644 100644 8ebbf50b 28e00a97 M glibc.spec +:000000 100644 0000000 3133966 A glibc-RHEL-22165-1.patch +:000000 100644 0000000 62c2711 A glibc-RHEL-22165-2.patch +:000000 100644 0000000 392e746 A glibc-RHEL-22165-3.patch +:000000 100644 0000000 0335b6f A glibc-RHEL-22165-4.patch +:000000 100644 0000000 76b42ea A glibc-RHEL-22165-5.patch +:100644 100644 8ebbf50 28e00a9 M glibc.spec commit 66405878839fa98d47712b4925b1c19cc4c27ee2 Author: DJ Delorie @@ -3776,8 +3820,8 @@ CommitDate: Wed May 29 15:47:04 2024 -0400 Resolves: RHEL-39006 -:000000 100644 00000000 1d159efa A glibc-RHEL-39006.patch -:100644 100644 7e06d688 8ebbf50b M glibc.spec +:000000 100644 0000000 1d159ef A glibc-RHEL-39006.patch +:100644 100644 7e06d68 8ebbf50 M glibc.spec commit ed2fe1a5b0cd2bde359e85d928fe2c01ab308cac Author: Patsy Griffin @@ -3789,9 +3833,9 @@ CommitDate: Mon May 20 17:35:34 2024 -0400 Resolves: RHEL-32681 -:000000 100644 00000000 c416a979 A glibc-RHEL-32681-1.patch -:000000 100644 00000000 1f669ff6 A glibc-RHEL-32681-2.patch -:100644 100644 32db2465 7e06d688 M glibc.spec +:000000 100644 0000000 c416a97 A glibc-RHEL-32681-1.patch +:000000 100644 0000000 1f669ff A glibc-RHEL-32681-2.patch +:100644 100644 32db246 7e06d68 M glibc.spec commit ada12691fbe0ad91aafd98e7f4eebdf7b0cef4f4 Author: DJ Delorie @@ -3803,8 +3847,8 @@ CommitDate: Wed Apr 3 23:25:59 2024 -0400 Resolves: RHEL-25046 -:000000 100644 00000000 db48ca3f A glibc-RHEL-25046.patch -:100644 100644 76187da7 32db2465 M glibc.spec +:000000 100644 0000000 db48ca3 A glibc-RHEL-25046.patch +:100644 100644 76187da 32db246 M glibc.spec commit 6dbf26d6f46fce37e63fcf2eec542b03ef4e0704 Author: DJ Delorie @@ -3816,11 +3860,11 @@ CommitDate: Tue Apr 2 22:40:56 2024 -0400 Resolves: RHEL-25531 -:000000 100644 00000000 db0260f2 A glibc-RHEL-25531-1.patch -:000000 100644 00000000 8b903654 A glibc-RHEL-25531-2.patch -:000000 100644 00000000 5d404f7e A glibc-RHEL-25531-3.patch -:000000 100644 00000000 089b29cd A glibc-RHEL-25531-4.patch -:100644 100644 3c13fdbf 76187da7 M glibc.spec +:000000 100644 0000000 db0260f A glibc-RHEL-25531-1.patch +:000000 100644 0000000 8b90365 A glibc-RHEL-25531-2.patch +:000000 100644 0000000 5d404f7 A glibc-RHEL-25531-3.patch +:000000 100644 0000000 089b29c A glibc-RHEL-25531-4.patch +:100644 100644 3c13fdb 76187da M glibc.spec commit 5a35e9b70f16e433731a3957d8933ffe1b88e6d0 Author: Arjun Shankar @@ -3832,8 +3876,8 @@ CommitDate: Tue Mar 12 17:10:19 2024 +0100 Resolves: RHEL-21884 -:000000 100644 00000000 39f15004 A glibc-RHEL-21884.patch -:100644 100644 ba1c4929 3c13fdbf M glibc.spec +:000000 100644 0000000 39f1500 A glibc-RHEL-21884.patch +:100644 100644 ba1c492 3c13fdb M glibc.spec commit b11febd62489845563767ae09926eb31a9fd342f Author: DJ Delorie @@ -3852,9 +3896,9 @@ CommitDate: Mon Mar 11 18:22:11 2024 -0400 work upstream on those tests, so leaving that out should not affect future merges. -:000000 100644 00000000 c9b75997 A glibc-RHEL-20172-1.patch -:000000 100644 00000000 0a772467 A glibc-RHEL-20172-2.patch -:100644 100644 b3384c95 ba1c4929 M glibc.spec +:000000 100644 0000000 c9b7599 A glibc-RHEL-20172-1.patch +:000000 100644 0000000 0a77246 A glibc-RHEL-20172-2.patch +:100644 100644 b3384c9 ba1c492 M glibc.spec commit 549c5753ae315a97704f805ab83ad0ca8611b9b6 Author: Patsy Griffin @@ -3866,8 +3910,8 @@ CommitDate: Thu Feb 29 09:15:16 2024 -0500 Resolves: RHEL-23472 -:000000 100644 00000000 95aae42c A glibc-RHEL-23472.patch -:100644 100644 a5733455 b3384c95 M glibc.spec +:000000 100644 0000000 95aae42 A glibc-RHEL-23472.patch +:100644 100644 a573345 b3384c9 M glibc.spec commit f58c52d099b953818e62677db93ad5ff74911638 Author: Patsy Griffin @@ -3879,8 +3923,8 @@ CommitDate: Fri Jan 26 10:50:27 2024 -0500 Resolves: RHEL-21556 -:000000 100644 00000000 31edb08f A glibc-RHEL-21556.patch -:100644 100644 bf6d66db a5733455 M glibc.spec +:000000 100644 0000000 31edb08 A glibc-RHEL-21556.patch +:100644 100644 bf6d66d a573345 M glibc.spec commit da346ff8a8d0d305f35684f2196580aec15d9a69 Author: Arjun Shankar @@ -3892,8 +3936,8 @@ CommitDate: Tue Jan 9 19:51:08 2024 +0100 Resolves: RHEL-19444 -:000000 100644 00000000 2c03560a A glibc-RHEL-19444.patch -:100644 100644 64c4a9f1 bf6d66db M glibc.spec +:000000 100644 0000000 2c03560 A glibc-RHEL-19444.patch +:100644 100644 64c4a9f bf6d66d M glibc.spec commit b02eb10bf8e955fab96187890e8c916f92f8b61b Author: Arjun Shankar @@ -3905,13 +3949,13 @@ CommitDate: Mon Jan 8 14:49:32 2024 +0100 Resolves: RHEL-16643 -:000000 100644 00000000 d8d33c37 A glibc-RHEL-16643-1.patch -:000000 100644 00000000 ed0a98c0 A glibc-RHEL-16643-2.patch -:000000 100644 00000000 c9f092a7 A glibc-RHEL-16643-3.patch -:000000 100644 00000000 53429e7e A glibc-RHEL-16643-4.patch -:000000 100644 00000000 8b166704 A glibc-RHEL-16643-5.patch -:000000 100644 00000000 dd72b798 A glibc-RHEL-16643-6.patch -:100644 100644 083d8e59 64c4a9f1 M glibc.spec +:000000 100644 0000000 d8d33c3 A glibc-RHEL-16643-1.patch +:000000 100644 0000000 ed0a98c A glibc-RHEL-16643-2.patch +:000000 100644 0000000 c9f092a A glibc-RHEL-16643-3.patch +:000000 100644 0000000 53429e7 A glibc-RHEL-16643-4.patch +:000000 100644 0000000 8b16670 A glibc-RHEL-16643-5.patch +:000000 100644 0000000 dd72b79 A glibc-RHEL-16643-6.patch +:100644 100644 083d8e5 64c4a9f M glibc.spec commit 178dfa81158eda02c2d287785e1073d66920a415 Author: Florian Weimer @@ -3923,8 +3967,8 @@ CommitDate: Tue Jan 2 15:18:37 2024 +0100 Resolves: RHEL-19862 -:000000 100644 00000000 f3aa27cd A glibc-RHEL-19862.patch -:100644 100644 995a4202 083d8e59 M glibc.spec +:000000 100644 0000000 f3aa27c A glibc-RHEL-19862.patch +:100644 100644 995a420 083d8e5 M glibc.spec commit 806a39414495ccd59a44a7e5a88484ece7a79607 Author: Carlos O'Donell @@ -3936,9 +3980,9 @@ CommitDate: Thu Dec 21 15:44:01 2023 -0500 Resolves: RHEL-17465 -:000000 100644 00000000 45dd3a67 A glibc-RHEL-17465-1.patch -:000000 100644 00000000 e3abb0f4 A glibc-RHEL-17465-2.patch -:100644 100644 4c7e36a9 995a4202 M glibc.spec +:000000 100644 0000000 45dd3a6 A glibc-RHEL-17465-1.patch +:000000 100644 0000000 e3abb0f A glibc-RHEL-17465-2.patch +:100644 100644 4c7e36a 995a420 M glibc.spec commit 46256b791c21fb725540a1b3b4b52f52378aaa52 Author: Florian Weimer @@ -3950,11 +3994,11 @@ CommitDate: Fri Dec 8 20:18:58 2023 +0100 Resolves: RHEL-17319 -:000000 100644 00000000 513c4e0d A glibc-RHEL-17319-1.patch -:000000 100644 00000000 e93db42b A glibc-RHEL-17319-2.patch -:000000 100644 00000000 fc0eb28a A glibc-RHEL-17319-3.patch -:000000 100644 00000000 2c34cf67 A glibc-RHEL-17319-4.patch -:100644 100644 409ba367 4c7e36a9 M glibc.spec +:000000 100644 0000000 513c4e0 A glibc-RHEL-17319-1.patch +:000000 100644 0000000 e93db42 A glibc-RHEL-17319-2.patch +:000000 100644 0000000 fc0eb28 A glibc-RHEL-17319-3.patch +:000000 100644 0000000 2c34cf6 A glibc-RHEL-17319-4.patch +:100644 100644 409ba36 4c7e36a M glibc.spec commit 233e710888a618d797cd62320b7ecdb7ba9dd27c Author: Patsy Griffin @@ -3966,14 +4010,14 @@ CommitDate: Fri Dec 8 10:32:16 2023 -0500 Resolves: RHEL-16016 -:000000 100644 00000000 4dc5c5f7 A glibc-RHEL-16016-1.patch -:000000 100644 00000000 18ce2c37 A glibc-RHEL-16016-2.patch -:000000 100644 00000000 9e9fd039 A glibc-RHEL-16016-3.patch -:000000 100644 00000000 b043c5cc A glibc-RHEL-16016-4.patch -:000000 100644 00000000 8bf1ec78 A glibc-RHEL-16016-5.patch -:000000 100644 00000000 342a5029 A glibc-RHEL-16016-6.patch -:000000 100644 00000000 0257087e A glibc-RHEL-16016-7.patch -:100644 100644 ca0c74bf 409ba367 M glibc.spec +:000000 100644 0000000 4dc5c5f A glibc-RHEL-16016-1.patch +:000000 100644 0000000 18ce2c3 A glibc-RHEL-16016-2.patch +:000000 100644 0000000 9e9fd03 A glibc-RHEL-16016-3.patch +:000000 100644 0000000 b043c5c A glibc-RHEL-16016-4.patch +:000000 100644 0000000 8bf1ec7 A glibc-RHEL-16016-5.patch +:000000 100644 0000000 342a502 A glibc-RHEL-16016-6.patch +:000000 100644 0000000 0257087 A glibc-RHEL-16016-7.patch +:100644 100644 ca0c74b 409ba36 M glibc.spec commit 06ca45bab0f093d0904b613071f81c14d4d22432 Author: Patsy Griffin @@ -3985,8 +4029,8 @@ CommitDate: Wed Dec 6 20:51:59 2023 -0500 Resolves: RHEL-17157 -:000000 100644 00000000 5ea1f996 A glibc-rhel-17157.patch -:100644 100644 da34e00e ca0c74bf M glibc.spec +:000000 100644 0000000 5ea1f99 A glibc-rhel-17157.patch +:100644 100644 da34e00 ca0c74b M glibc.spec commit 654c9b6d787c10d1ba93099229bc74bc82fd82d5 Author: Patsy Griffin @@ -3998,11 +4042,11 @@ CommitDate: Tue Dec 5 00:31:25 2023 -0500 Resolves: RHEL-15343 -:000000 100644 00000000 291e770b A glibc-RHEL-15343-1.patch -:000000 100644 00000000 2110e908 A glibc-RHEL-15343-2.patch -:000000 100644 00000000 8cac6d94 A glibc-RHEL-15343-3.patch -:000000 100644 00000000 cd2a826a A glibc-RHEL-15343-4.patch -:100644 100644 4663bbfc da34e00e M glibc.spec +:000000 100644 0000000 291e770 A glibc-RHEL-15343-1.patch +:000000 100644 0000000 2110e90 A glibc-RHEL-15343-2.patch +:000000 100644 0000000 8cac6d9 A glibc-RHEL-15343-3.patch +:000000 100644 0000000 cd2a826 A glibc-RHEL-15343-4.patch +:100644 100644 4663bbf da34e00 M glibc.spec commit bca78af34a263b716d46a87127dded950808f766 Author: Florian Weimer @@ -4014,11 +4058,11 @@ CommitDate: Fri Nov 24 19:33:45 2023 +0100 Resolves: RHEL-2338 -:000000 100644 00000000 6dcac65e A glibc-RHEL-2338-1.patch -:000000 100644 00000000 53729105 A glibc-RHEL-2338-2.patch -:000000 100644 00000000 9ed0a1a7 A glibc-RHEL-2338-3.patch -:000000 100644 00000000 4534dfdd A glibc-RHEL-2338-4.patch -:100644 100644 37258cee 4663bbfc M glibc.spec +:000000 100644 0000000 6dcac65 A glibc-RHEL-2338-1.patch +:000000 100644 0000000 5372910 A glibc-RHEL-2338-2.patch +:000000 100644 0000000 9ed0a1a A glibc-RHEL-2338-3.patch +:000000 100644 0000000 4534dfd A glibc-RHEL-2338-4.patch +:100644 100644 37258ce 4663bbf M glibc.spec commit 26fb3f4504ddfecee963600341e8e5c34c5b5000 Author: Florian Weimer @@ -4030,9 +4074,9 @@ CommitDate: Tue Nov 21 09:45:13 2023 +0100 Resolves: RHEL-14383 -:000000 100644 00000000 7a2e8d61 A glibc-RHEL-14383-1.patch -:000000 100644 00000000 4f687660 A glibc-RHEL-14383-2.patch -:100644 100644 a06127c9 37258cee M glibc.spec +:000000 100644 0000000 7a2e8d6 A glibc-RHEL-14383-1.patch +:000000 100644 0000000 4f68766 A glibc-RHEL-14383-2.patch +:100644 100644 a06127c 37258ce M glibc.spec commit 8b8ca63bf3b5dd9ba6c4df1185c959922d2c68df Author: Florian Weimer @@ -4044,8 +4088,8 @@ CommitDate: Mon Nov 20 13:12:49 2023 +0100 Resolves: RHEL-2491 -:000000 100644 00000000 79f18b80 A glibc-RHEL-2491.patch -:100644 100644 1b7f2d22 a06127c9 M glibc.spec +:000000 100644 0000000 79f18b8 A glibc-RHEL-2491.patch +:100644 100644 1b7f2d2 a06127c M glibc.spec commit 5c845205d34c67e8eed0297408710b3255f25697 Author: Arjun Shankar @@ -4057,8 +4101,8 @@ CommitDate: Wed Nov 15 16:12:08 2023 +0100 Resolves: RHEL-16275 -:000000 100644 00000000 c773796e A glibc-RHEL-16275.patch -:100644 100644 9c525997 1b7f2d22 M glibc.spec +:000000 100644 0000000 c773796 A glibc-RHEL-16275.patch +:100644 100644 9c52599 1b7f2d2 M glibc.spec commit 2ea2e4b80215f5f1eb5146d5cab677b4357780e0 Author: Florian Weimer @@ -4070,8 +4114,8 @@ CommitDate: Fri Nov 10 10:14:03 2023 +0100 Resolves: RHEL-2123 -:000000 100644 00000000 682d02b7 A glibc-RHEL-2123.patch -:100644 100644 9662df4f 9c525997 M glibc.spec +:000000 100644 0000000 682d02b A glibc-RHEL-2123.patch +:100644 100644 9662df4 9c52599 M glibc.spec commit 07b897537db1a130e23d2775a70f460ca960a1b8 Author: Arjun Shankar @@ -4083,7 +4127,7 @@ CommitDate: Tue Oct 24 17:23:55 2023 +0200 Resolves: RHEL-14545 -:100644 100644 33aec4d8 9662df4f M glibc.spec +:100644 100644 33aec4d 9662df4 M glibc.spec commit bab2bafb13f91cd44078090becd5bda0014fe22a Author: Florian Weimer @@ -4095,8 +4139,8 @@ CommitDate: Fri Oct 20 10:43:51 2023 +0200 Resolves: RHEL-3397 -:000000 100644 00000000 7dbd1e43 A glibc-RHEL-3397.patch -:100644 100644 3bca7c9d 33aec4d8 M glibc.spec +:000000 100644 0000000 7dbd1e4 A glibc-RHEL-3397.patch +:100644 100644 3bca7c9 33aec4d M glibc.spec commit 01cc656c6346ca5137a71d106cc880ba90923ed7 Author: Florian Weimer @@ -4108,8 +4152,8 @@ CommitDate: Mon Oct 9 16:03:20 2023 +0200 Resolves: RHEL-1191 -:000000 100644 00000000 3cb66352 A glibc-RHEL-1191.patch -:100644 100644 15f0b37c 3bca7c9d M glibc.spec +:000000 100644 0000000 3cb6635 A glibc-RHEL-1191.patch +:100644 100644 15f0b37 3bca7c9 M glibc.spec commit df2a403efa4cce80bed105a6e7e25b97634ae1b9 Author: Florian Weimer @@ -4121,9 +4165,9 @@ CommitDate: Mon Sep 25 07:54:46 2023 +0100 Related: RHEL-2426 -:000000 100644 00000000 0a4d0277 A glibc-RHEL-2426-14.patch -:000000 100644 00000000 fc8d4b4a A glibc-RHEL-2426-15.patch -:100644 100644 a47a4ee6 15f0b37c M glibc.spec +:000000 100644 0000000 0a4d027 A glibc-RHEL-2426-14.patch +:000000 100644 0000000 fc8d4b4 A glibc-RHEL-2426-15.patch +:100644 100644 a47a4ee 15f0b37 M glibc.spec commit d9eb6f42460504f3c0a42b0b39761a01835a5b5c Author: Carlos O'Donell @@ -4136,8 +4180,8 @@ CommitDate: Tue Sep 19 22:37:14 2023 -0400 Resolves: RHEL-3000 Reviewed-by: Siddhesh Poyarekar -:000000 100644 00000000 e072c712 A glibc-RHEL-3000.patch -:100644 100644 809549de a47a4ee6 M glibc.spec +:000000 100644 0000000 e072c71 A glibc-RHEL-3000.patch +:100644 100644 809549d a47a4ee M glibc.spec commit 3f7d8c721ace5014da3eaed9cafabb9df2042de9 Author: Florian Weimer @@ -4152,12 +4196,12 @@ CommitDate: Tue Sep 19 16:13:30 2023 +0200 Related: RHEL-2491 -:100644 000000 c050aea5 00000000 D glibc-RHEL-2491-1.patch -:100644 000000 b3d615f3 00000000 D glibc-RHEL-2491-2.patch -:100644 000000 b18d5977 00000000 D glibc-RHEL-2491-3.patch -:100644 000000 30491b8d 00000000 D glibc-RHEL-2491-4.patch -:100644 000000 4ee89a74 00000000 D glibc-RHEL-2491-5.patch -:100644 100644 62780c35 809549de M glibc.spec +:100644 000000 c050aea 0000000 D glibc-RHEL-2491-1.patch +:100644 000000 b3d615f 0000000 D glibc-RHEL-2491-2.patch +:100644 000000 b18d597 0000000 D glibc-RHEL-2491-3.patch +:100644 000000 30491b8 0000000 D glibc-RHEL-2491-4.patch +:100644 000000 4ee89a7 0000000 D glibc-RHEL-2491-5.patch +:100644 100644 62780c3 809549d M glibc.spec commit 8549c41db6202cb7948642d1b4c68bfa9bd4b152 Author: Siddhesh Poyarekar @@ -4169,20 +4213,20 @@ CommitDate: Sat Sep 16 09:01:34 2023 -0400 Resolves: RHEL-2426 -:000000 100644 00000000 5f5b0c4a A glibc-RHEL-2426-1.patch -:000000 100644 00000000 18763f1c A glibc-RHEL-2426-10.patch -:000000 100644 00000000 4b7d0194 A glibc-RHEL-2426-11.patch -:000000 100644 00000000 7e31ade0 A glibc-RHEL-2426-12.patch -:000000 100644 00000000 d288e17b A glibc-RHEL-2426-13.patch -:000000 100644 00000000 c431d613 A glibc-RHEL-2426-2.patch -:000000 100644 00000000 27582f21 A glibc-RHEL-2426-3.patch -:000000 100644 00000000 427630de A glibc-RHEL-2426-4.patch -:000000 100644 00000000 f6425af6 A glibc-RHEL-2426-5.patch -:000000 100644 00000000 c9e05816 A glibc-RHEL-2426-6.patch -:000000 100644 00000000 253805a9 A glibc-RHEL-2426-7.patch -:000000 100644 00000000 bc3766bd A glibc-RHEL-2426-8.patch -:000000 100644 00000000 f6693072 A glibc-RHEL-2426-9.patch -:100644 100644 d28f242d 62780c35 M glibc.spec +:000000 100644 0000000 5f5b0c4 A glibc-RHEL-2426-1.patch +:000000 100644 0000000 18763f1 A glibc-RHEL-2426-10.patch +:000000 100644 0000000 4b7d019 A glibc-RHEL-2426-11.patch +:000000 100644 0000000 7e31ade A glibc-RHEL-2426-12.patch +:000000 100644 0000000 d288e17 A glibc-RHEL-2426-13.patch +:000000 100644 0000000 c431d61 A glibc-RHEL-2426-2.patch +:000000 100644 0000000 27582f2 A glibc-RHEL-2426-3.patch +:000000 100644 0000000 427630d A glibc-RHEL-2426-4.patch +:000000 100644 0000000 f6425af A glibc-RHEL-2426-5.patch +:000000 100644 0000000 c9e0581 A glibc-RHEL-2426-6.patch +:000000 100644 0000000 253805a A glibc-RHEL-2426-7.patch +:000000 100644 0000000 bc3766b A glibc-RHEL-2426-8.patch +:000000 100644 0000000 f669307 A glibc-RHEL-2426-9.patch +:100644 100644 d28f242 62780c3 M glibc.spec commit a10da9c455e9ae6edd4d1977bbecc86dd1cb083d Author: Siddhesh Poyarekar @@ -4194,8 +4238,8 @@ CommitDate: Fri Sep 15 15:11:13 2023 -0400 Resolves: RHEL-2438 -:000000 100644 00000000 46f1c9a4 A glibc-RHEL-2438.patch -:100644 100644 4b6b6b87 d28f242d M glibc.spec +:000000 100644 0000000 46f1c9a A glibc-RHEL-2438.patch +:100644 100644 4b6b6b8 d28f242 M glibc.spec commit 2b2770be1133e0a5cc420cb6240e8b4400a6d1a1 Author: Carlos O'Donell @@ -4207,8 +4251,8 @@ CommitDate: Fri Sep 15 08:11:03 2023 -0400 Resolves: #2234716 -:000000 100644 00000000 cdf298e9 A glibc-rh2234716.patch -:100644 100644 654d4004 4b6b6b87 M glibc.spec +:000000 100644 0000000 cdf298e A glibc-rh2234716.patch +:100644 100644 654d400 4b6b6b8 M glibc.spec commit d79354ed95e9240b5604e16e364afddc27f51523 Author: Carlos O'Donell @@ -4220,12 +4264,12 @@ CommitDate: Thu Sep 14 16:58:19 2023 -0400 Resolves: RHEL-2491 -:000000 100644 00000000 c050aea5 A glibc-RHEL-2491-1.patch -:000000 100644 00000000 b3d615f3 A glibc-RHEL-2491-2.patch -:000000 100644 00000000 b18d5977 A glibc-RHEL-2491-3.patch -:000000 100644 00000000 30491b8d A glibc-RHEL-2491-4.patch -:000000 100644 00000000 4ee89a74 A glibc-RHEL-2491-5.patch -:100644 100644 16764eca 654d4004 M glibc.spec +:000000 100644 0000000 c050aea A glibc-RHEL-2491-1.patch +:000000 100644 0000000 b3d615f A glibc-RHEL-2491-2.patch +:000000 100644 0000000 b18d597 A glibc-RHEL-2491-3.patch +:000000 100644 0000000 30491b8 A glibc-RHEL-2491-4.patch +:000000 100644 0000000 4ee89a7 A glibc-RHEL-2491-5.patch +:100644 100644 16764ec 654d400 M glibc.spec commit 8099ec746ac81115ce40893ab1696cd3fc7eb01e Author: DJ Delorie @@ -4237,11 +4281,11 @@ CommitDate: Wed Sep 13 16:33:45 2023 -0400 Resolves: RHEL-1017 -:000000 100644 00000000 3db69a39 A glibc-RHEL-1017-1.patch -:000000 100644 00000000 ef94f5b7 A glibc-RHEL-1017-2.patch -:000000 100644 00000000 1f06fded A glibc-RHEL-1017-3.patch -:000000 100644 00000000 1d327f02 A glibc-RHEL-1017-4.patch -:100644 100644 b055feb5 16764eca M glibc.spec +:000000 100644 0000000 3db69a3 A glibc-RHEL-1017-1.patch +:000000 100644 0000000 ef94f5b A glibc-RHEL-1017-2.patch +:000000 100644 0000000 1f06fde A glibc-RHEL-1017-3.patch +:000000 100644 0000000 1d327f0 A glibc-RHEL-1017-4.patch +:100644 100644 b055feb 16764ec M glibc.spec commit c7fe751949fe55029ff514f12a51b88e2479547d Author: Carlos O'Donell @@ -4253,8 +4297,8 @@ CommitDate: Tue Aug 15 12:07:37 2023 -0400 Related: #2213907 -:000000 100644 00000000 bf413682 A glibc-rh2213907-7.patch -:100644 100644 e8a12b57 b055feb5 M glibc.spec +:000000 100644 0000000 bf41368 A glibc-rh2213907-7.patch +:100644 100644 e8a12b5 b055feb M glibc.spec commit 5d55f30bfcd692658a5301b5e0547eb64effb145 Author: Florian Weimer @@ -4266,8 +4310,8 @@ CommitDate: Mon Aug 14 08:50:57 2023 +0200 Resolves: #2222188 -:000000 100644 00000000 42aacaec A glibc-rh2222188-6.patch -:100644 100644 9387011d e8a12b57 M glibc.spec +:000000 100644 0000000 42aacae A glibc-rh2222188-6.patch +:100644 100644 9387011 e8a12b5 M glibc.spec commit 3a04eb2e1826da207b64a254af3d17e30a27db11 Author: Florian Weimer @@ -4281,7 +4325,7 @@ CommitDate: Fri Aug 11 17:54:52 2023 +0200 Related: #2166710 -:100644 100644 53e832ac 9387011d M glibc.spec +:100644 100644 53e832a 9387011 M glibc.spec commit 5b7b7014945956da50e87441e88a57cf58273420 Author: Florian Weimer @@ -4293,8 +4337,8 @@ CommitDate: Fri Aug 11 16:10:13 2023 +0200 Related: #2166710 -:000000 100644 00000000 d102af91 A glibc-rh2166710-2.patch -:000000 100644 00000000 94b056e0 A glibc-rh2166710-3.patch +:000000 100644 0000000 d102af9 A glibc-rh2166710-2.patch +:000000 100644 0000000 94b056e A glibc-rh2166710-3.patch commit 8c4d8a0e5b46a83e073539e45f7c52ca70f66095 Author: DJ Delorie @@ -4306,13 +4350,13 @@ CommitDate: Tue Aug 8 21:25:08 2023 -0400 Resolves: #221390 -:000000 100644 00000000 790ea665 A glibc-rh2213907-1.patch -:000000 100644 00000000 cf2aaabf A glibc-rh2213907-2.patch -:000000 100644 00000000 5132c37b A glibc-rh2213907-3.patch -:000000 100644 00000000 d2d42939 A glibc-rh2213907-4.patch -:000000 100644 00000000 0e563ec2 A glibc-rh2213907-5.patch -:000000 100644 00000000 e7a36cf8 A glibc-rh2213907-6.patch -:100644 100644 9b875bd0 53e832ac M glibc.spec +:000000 100644 0000000 790ea66 A glibc-rh2213907-1.patch +:000000 100644 0000000 cf2aaab A glibc-rh2213907-2.patch +:000000 100644 0000000 5132c37 A glibc-rh2213907-3.patch +:000000 100644 0000000 d2d4293 A glibc-rh2213907-4.patch +:000000 100644 0000000 0e563ec A glibc-rh2213907-5.patch +:000000 100644 0000000 e7a36cf A glibc-rh2213907-6.patch +:100644 100644 9b875bd 53e832a M glibc.spec commit 4a20a2b4f5170e68bff2a83fbf698da7097445de Author: Florian Weimer @@ -4324,7 +4368,7 @@ CommitDate: Fri Aug 4 15:52:59 2023 +0200 Resolves: #2229156 -:100644 100644 bea32547 9b875bd0 M glibc.spec +:100644 100644 bea3254 9b875bd M glibc.spec commit a02be7c868cce87dc3bc2e9f182527cc90ec903c Author: Florian Weimer @@ -4336,9 +4380,9 @@ CommitDate: Fri Jul 28 15:40:24 2023 +0200 Resolves: #2224504 -:000000 100644 00000000 5cfb459e A glibc-rh2224504-1.patch -:000000 100644 00000000 01011d35 A glibc-rh2224504-2.patch -:100644 100644 fbbd3d8b bea32547 M glibc.spec +:000000 100644 0000000 5cfb459 A glibc-rh2224504-1.patch +:000000 100644 0000000 01011d3 A glibc-rh2224504-2.patch +:100644 100644 fbbd3d8 bea3254 M glibc.spec commit 08f3180f471e63d99919fe2bf6f443caf23ba816 Author: Florian Weimer @@ -4350,8 +4394,8 @@ CommitDate: Tue Jul 25 14:38:09 2023 +0200 Related: #2224289 -:000000 100644 00000000 159b9b7e A glibc-rh2224289-3.patch -:100644 100644 a56b40d8 fbbd3d8b M glibc.spec +:000000 100644 0000000 159b9b7 A glibc-rh2224289-3.patch +:100644 100644 a56b40d fbbd3d8 M glibc.spec commit a422f55007aff7ad1f0839a3710182a8d0933565 Author: Florian Weimer @@ -4363,8 +4407,8 @@ CommitDate: Fri Jul 21 20:56:01 2023 +0200 Resolves: #2224349 -:000000 100644 00000000 48997a7b A glibc-rh2224349.patch -:100644 100644 6244b564 a56b40d8 M glibc.spec +:000000 100644 0000000 48997a7 A glibc-rh2224349.patch +:100644 100644 6244b56 a56b40d M glibc.spec commit 86889b954522137f5f14943da73c7e12f454dfe6 Author: Florian Weimer @@ -4376,9 +4420,9 @@ CommitDate: Fri Jul 21 16:30:40 2023 +0200 Resolves: #2224289 -:000000 100644 00000000 95cc0deb A glibc-rh2224289-1.patch -:000000 100644 00000000 16ca4960 A glibc-rh2224289-2.patch -:100644 100644 94191eca 6244b564 M glibc.spec +:000000 100644 0000000 95cc0de A glibc-rh2224289-1.patch +:000000 100644 0000000 16ca496 A glibc-rh2224289-2.patch +:100644 100644 94191ec 6244b56 M glibc.spec commit 370cf824b2d2efaa6a9a5ac3f805d12269a8cabc Author: Florian Weimer @@ -4390,12 +4434,12 @@ CommitDate: Thu Jul 20 14:34:40 2023 +0200 Resolves: #2222188 -:000000 100644 00000000 cd082ed1 A glibc-rh2222188-1.patch -:000000 100644 00000000 2bdb341e A glibc-rh2222188-2.patch -:000000 100644 00000000 c875e8d6 A glibc-rh2222188-3.patch -:000000 100644 00000000 52e3e3e8 A glibc-rh2222188-4.patch -:000000 100644 00000000 451ac218 A glibc-rh2222188-5.patch -:100644 100644 a2c8507c 94191eca M glibc.spec +:000000 100644 0000000 cd082ed A glibc-rh2222188-1.patch +:000000 100644 0000000 2bdb341 A glibc-rh2222188-2.patch +:000000 100644 0000000 c875e8d A glibc-rh2222188-3.patch +:000000 100644 0000000 52e3e3e A glibc-rh2222188-4.patch +:000000 100644 0000000 451ac21 A glibc-rh2222188-5.patch +:100644 100644 a2c8507 94191ec M glibc.spec commit 7aac3aeef385f3e21a4fb992a7e0764cd0f27f8f Author: Carlos O'Donell @@ -4407,8 +4451,8 @@ CommitDate: Fri Jul 7 13:09:04 2023 -0400 Resolves: RHEL-729 -:000000 100644 00000000 6999dc5d A glibc-RHEL-729.patch -:100644 100644 2d4bb990 a2c8507c M glibc.spec +:000000 100644 0000000 6999dc5 A glibc-RHEL-729.patch +:100644 100644 2d4bb99 a2c8507 M glibc.spec commit 5d0bb717b5917f87bbe732f6d4a074b37fe32bf4 Author: Carlos O'Donell @@ -4420,8 +4464,8 @@ CommitDate: Fri Jul 7 11:02:37 2023 -0400 Resolves: #2189923 -:000000 100644 00000000 4c76d665 A glibc-rh2189923.patch -:100644 100644 fb44ff26 2d4bb990 M glibc.spec +:000000 100644 0000000 4c76d66 A glibc-rh2189923.patch +:100644 100644 fb44ff2 2d4bb99 M glibc.spec commit f9ff3ef63b7acd272742f62b009df8bc57e83a2b Author: Arjun Shankar @@ -4433,8 +4477,8 @@ CommitDate: Mon Jun 26 16:53:50 2023 +0200 Resolves: #2213908 -:000000 100644 00000000 73392a4c A glibc-rh2213908.patch -:100644 100644 cb6a585f fb44ff26 M glibc.spec +:000000 100644 0000000 73392a4 A glibc-rh2213908.patch +:100644 100644 cb6a585 fb44ff2 M glibc.spec commit b5345eb1b6743b50c3b50f80cb2dad509603ef26 Author: Arjun Shankar @@ -4446,8 +4490,8 @@ CommitDate: Mon Jun 26 16:39:05 2023 +0200 Resolves: #2215368 -:000000 100644 00000000 d037ca1b A glibc-rh2215368.patch -:100644 100644 28c0b114 cb6a585f M glibc.spec +:000000 100644 0000000 d037ca1 A glibc-rh2215368.patch +:100644 100644 28c0b11 cb6a585 M glibc.spec commit 7afefa800d4b2a998dc4a26964f4f0c905d250d6 Author: DJ Delorie @@ -4459,8 +4503,8 @@ CommitDate: Wed May 10 21:01:00 2023 -0400 Resolves: #2095417 -:100644 100644 68edbc86 28c0b114 M glibc.spec -:000000 100644 00000000 185105fc A nscd-sysusers.conf +:100644 100644 68edbc8 28c0b11 M glibc.spec +:000000 100644 0000000 185105f A nscd-sysusers.conf commit 17e18d1a084df5f871efd42905a0cb8909de16c5 Author: Florian Weimer @@ -4486,14 +4530,14 @@ CommitDate: Fri Apr 28 20:03:19 2023 +0200 Resolves: #2177705 Resolves: #2180173 -:000000 100644 00000000 f9c924c7 A glibc-upstream-2.34-391.patch -:000000 100644 00000000 3930800f A glibc-upstream-2.34-392.patch -:000000 100644 00000000 3e8a9616 A glibc-upstream-2.34-393.patch -:000000 100644 00000000 3fce4332 A glibc-upstream-2.34-394.patch -:000000 100644 00000000 8c75337e A glibc-upstream-2.34-395.patch -:000000 100644 00000000 d5bc0dff A glibc-upstream-2.34-396.patch -:000000 100644 00000000 20ed4f70 A glibc-upstream-2.34-397.patch -:100644 100644 ff4477ac 68edbc86 M glibc.spec +:000000 100644 0000000 f9c924c A glibc-upstream-2.34-391.patch +:000000 100644 0000000 3930800 A glibc-upstream-2.34-392.patch +:000000 100644 0000000 3e8a961 A glibc-upstream-2.34-393.patch +:000000 100644 0000000 3fce433 A glibc-upstream-2.34-394.patch +:000000 100644 0000000 8c75337 A glibc-upstream-2.34-395.patch +:000000 100644 0000000 d5bc0df A glibc-upstream-2.34-396.patch +:000000 100644 0000000 20ed4f7 A glibc-upstream-2.34-397.patch +:100644 100644 ff4477a 68edbc8 M glibc.spec commit 2511b1027fdf0f5f9b87fea67c22d49b02de7c94 Author: Florian Weimer @@ -4505,9 +4549,9 @@ CommitDate: Fri Apr 28 19:32:27 2023 +0200 Related: #2166710 -:000000 100644 00000000 683c04f4 A glibc-rh2166710.patch -:100644 000000 72217d59 00000000 D glibc-upstream-2.34-390.patch -:100644 100644 f6ebc406 ff4477ac M glibc.spec +:000000 100644 0000000 683c04f A glibc-rh2166710.patch +:100644 000000 72217d5 0000000 D glibc-upstream-2.34-390.patch +:100644 100644 f6ebc40 ff4477a M glibc.spec commit 3a63de6f6050e2a6a0f710e634d18f586259f8d0 Author: Patsy Griffin @@ -4519,8 +4563,8 @@ CommitDate: Fri Apr 21 09:41:04 2023 -0400 Resolves: #2166710 -:000000 100644 00000000 72217d59 A glibc-upstream-2.34-390.patch -:100644 100644 5cc79737 f6ebc406 M glibc.spec +:000000 100644 0000000 72217d5 A glibc-upstream-2.34-390.patch +:100644 100644 5cc7973 f6ebc40 M glibc.spec commit 92ed05d9110c7b34e6d8d7b601457a9c1aabb681 Author: Florian Weimer @@ -4532,7 +4576,7 @@ CommitDate: Fri Apr 14 16:09:24 2023 +0200 Resolves: #2153855 -:100644 100644 22cd51e7 5cc79737 M glibc.spec +:100644 100644 22cd51e 5cc7973 M glibc.spec commit ab766cb47abda6e24973a4b18ac6f2e1c55c177c Author: DJ Delorie @@ -4547,8 +4591,8 @@ CommitDate: Fri Apr 7 00:02:21 2023 -0400 Resolves: #2149615 -:000000 100644 00000000 6503853b A glibc-rh2149615-3.patch -:100644 100644 e5d7f752 22cd51e7 M glibc.spec +:000000 100644 0000000 6503853 A glibc-rh2149615-3.patch +:100644 100644 e5d7f75 22cd51e M glibc.spec commit 85f2a33c601fba1233dbbd82a0130e44bde648b4 Author: Arjun Shankar @@ -4560,9 +4604,9 @@ CommitDate: Thu Mar 30 14:17:54 2023 +0200 Resolves: #2169978 -:000000 100644 00000000 9e7ebeea A glibc-rh2169978-1.patch -:000000 100644 00000000 10d832a6 A glibc-rh2169978-2.patch -:100644 100644 50d4c72f e5d7f752 M glibc.spec +:000000 100644 0000000 9e7ebee A glibc-rh2169978-1.patch +:000000 100644 0000000 10d832a A glibc-rh2169978-2.patch +:100644 100644 50d4c72 e5d7f75 M glibc.spec commit 7edee032157b9765ac59297eccc65c74495c962b Author: DJ Delorie @@ -4578,9 +4622,9 @@ CommitDate: Wed Mar 29 19:16:45 2023 -0400 61a4425dd412701f6c3545d8c1acd7e1a378ee8b db9b47e9f996bbdb831580ff7343542a017c80ee -:000000 100644 00000000 319774ac A glibc-rh2149615-1.patch -:000000 100644 00000000 26a32ef8 A glibc-rh2149615-2.patch -:100644 100644 db2ae4e8 50d4c72f M glibc.spec +:000000 100644 0000000 319774a A glibc-rh2149615-1.patch +:000000 100644 0000000 26a32ef A glibc-rh2149615-2.patch +:100644 100644 db2ae4e 50d4c72 M glibc.spec commit 959e4c2842df036bf58cdc4f48d388183b276560 Author: Carlos O'Donell @@ -4592,8 +4636,8 @@ CommitDate: Mon Mar 6 16:40:55 2023 -0500 Resolves: #2172953 -:000000 100644 00000000 7e09e598 A glibc-rh2172953.patch -:100644 100644 ddb80355 db2ae4e8 M glibc.spec +:000000 100644 0000000 7e09e59 A glibc-rh2172953.patch +:100644 100644 ddb8035 db2ae4e M glibc.spec commit a4d99f3f70a5e237931b2abe4a2426edf78feee4 Author: Florian Weimer @@ -4605,8 +4649,8 @@ CommitDate: Wed Feb 8 19:48:12 2023 +0100 Related: #2167811 -:000000 100644 00000000 83170adc A glibc-upstream-2.34-389.patch -:100644 100644 537f656e ddb80355 M glibc.spec +:000000 100644 0000000 83170ad A glibc-upstream-2.34-389.patch +:100644 100644 537f656 ddb8035 M glibc.spec commit 5eec3980b934afe2f62f22406671761cc6eab3bb Author: Florian Weimer @@ -4618,10 +4662,10 @@ CommitDate: Wed Feb 8 14:26:21 2023 +0100 Resolves: #2167811 -:000000 100644 00000000 d952d48c A glibc-upstream-2.34-385.patch -:000000 100644 00000000 fc111d4f A glibc-upstream-2.34-386.patch -:000000 100644 00000000 f7493705 A glibc-upstream-2.34-388.patch -:100644 100644 6bb08c0a 537f656e M glibc.spec +:000000 100644 0000000 d952d48 A glibc-upstream-2.34-385.patch +:000000 100644 0000000 fc111d4 A glibc-upstream-2.34-386.patch +:000000 100644 0000000 f749370 A glibc-upstream-2.34-388.patch +:100644 100644 6bb08c0 537f656 M glibc.spec commit 3ccfcc3019f231f8081daf62bfabfe277b4b591a Author: Florian Weimer @@ -4633,8 +4677,8 @@ CommitDate: Wed Jan 25 12:58:15 2023 +0100 Resolves: #2162962 -:000000 100644 00000000 718d38c9 A glibc-rh2162962.patch -:100644 100644 1d72974a 6bb08c0a M glibc.spec +:000000 100644 0000000 718d38c A glibc-rh2162962.patch +:100644 100644 1d72974 6bb08c0 M glibc.spec commit ad85e1007500b9852412cf369670a8c0b72e42b9 Author: Florian Weimer @@ -4667,24 +4711,24 @@ CommitDate: Tue Jan 17 09:30:20 2023 +0100 Resolves: #2155352 Related: #2160734 -:000000 100644 00000000 3f612815 A glibc-upstream-2.34-368.patch -:000000 100644 00000000 3c9be95d A glibc-upstream-2.34-369.patch -:000000 100644 00000000 41037ecf A glibc-upstream-2.34-370.patch -:000000 100644 00000000 b4ded310 A glibc-upstream-2.34-371.patch -:000000 100644 00000000 dd410229 A glibc-upstream-2.34-372.patch -:000000 100644 00000000 01b40078 A glibc-upstream-2.34-373.patch -:000000 100644 00000000 709b5c21 A glibc-upstream-2.34-374.patch -:000000 100644 00000000 a02bbb32 A glibc-upstream-2.34-375.patch -:000000 100644 00000000 d0513d96 A glibc-upstream-2.34-376.patch -:000000 100644 00000000 90cff649 A glibc-upstream-2.34-377.patch -:000000 100644 00000000 76de7773 A glibc-upstream-2.34-378.patch -:000000 100644 00000000 8ceaa455 A glibc-upstream-2.34-379.patch -:000000 100644 00000000 509a9e84 A glibc-upstream-2.34-380.patch -:000000 100644 00000000 f123f258 A glibc-upstream-2.34-381.patch -:000000 100644 00000000 e82998c2 A glibc-upstream-2.34-382.patch -:000000 100644 00000000 25a4892d A glibc-upstream-2.34-383.patch -:000000 100644 00000000 1dfffbe2 A glibc-upstream-2.34-384.patch -:100644 100644 8a15c7bc 1d72974a M glibc.spec +:000000 100644 0000000 3f61281 A glibc-upstream-2.34-368.patch +:000000 100644 0000000 3c9be95 A glibc-upstream-2.34-369.patch +:000000 100644 0000000 41037ec A glibc-upstream-2.34-370.patch +:000000 100644 0000000 b4ded31 A glibc-upstream-2.34-371.patch +:000000 100644 0000000 dd41022 A glibc-upstream-2.34-372.patch +:000000 100644 0000000 01b4007 A glibc-upstream-2.34-373.patch +:000000 100644 0000000 709b5c2 A glibc-upstream-2.34-374.patch +:000000 100644 0000000 a02bbb3 A glibc-upstream-2.34-375.patch +:000000 100644 0000000 d0513d9 A glibc-upstream-2.34-376.patch +:000000 100644 0000000 90cff64 A glibc-upstream-2.34-377.patch +:000000 100644 0000000 76de777 A glibc-upstream-2.34-378.patch +:000000 100644 0000000 8ceaa45 A glibc-upstream-2.34-379.patch +:000000 100644 0000000 509a9e8 A glibc-upstream-2.34-380.patch +:000000 100644 0000000 f123f25 A glibc-upstream-2.34-381.patch +:000000 100644 0000000 e82998c A glibc-upstream-2.34-382.patch +:000000 100644 0000000 25a4892 A glibc-upstream-2.34-383.patch +:000000 100644 0000000 1dfffbe A glibc-upstream-2.34-384.patch +:100644 100644 8a15c7b 1d72974 M glibc.spec commit 78832d4e7a6fb8799c005a2681ced570b312a67f Author: Tulio Magno Quites Machado Filho @@ -4699,8 +4743,8 @@ CommitDate: Fri Jan 6 11:23:18 2023 -0300 Resolves: #1870019 -:100644 100644 c657b845 8a15c7bc M glibc.spec -:100644 100644 f48c1cf2 4cbb01be M wrap-find-debuginfo.sh +:100644 100644 c657b84 8a15c7b M glibc.spec +:100644 100644 f48c1cf 4cbb01b M wrap-find-debuginfo.sh commit e8ace71c206c7e75996d2b2c372e8fad950f654d Author: Tulio Magno Quites Machado Filho @@ -4715,7 +4759,7 @@ CommitDate: Fri Jan 6 11:23:18 2023 -0300 Resolves: #2149994 -:100644 100644 61b50020 c657b845 M glibc.spec +:100644 100644 61b5002 c657b84 M glibc.spec commit b02b60a0ea849df99dccecb599eaddbf5e4eaffc Author: Florian Weimer @@ -4727,7 +4771,7 @@ CommitDate: Mon Dec 12 18:03:54 2022 +0100 Related: #2149644 -:100644 100644 41eddbb7 61b50020 M glibc.spec +:100644 100644 41eddbb 61b5002 M glibc.spec commit 1bc41d21219785f2bc6811c1b71a29eb82a9be11 Author: Arjun Shankar @@ -4746,9 +4790,9 @@ CommitDate: Wed Dec 7 15:15:59 2022 +0100 Related: #2149102 Related: #2142935 (actually fixed in fb3d49c3bfe0) -:000000 100644 00000000 dec7dc49 A glibc-upstream-2.34-366.patch -:000000 100644 00000000 7df9998b A glibc-upstream-2.34-367.patch -:100644 100644 c7bda412 41eddbb7 M glibc.spec +:000000 100644 0000000 dec7dc4 A glibc-upstream-2.34-366.patch +:000000 100644 0000000 7df9998 A glibc-upstream-2.34-367.patch +:100644 100644 c7bda41 41eddbb M glibc.spec commit fb3d49c3bfe0e81282940b08de2387260cb51e6c Author: Florian Weimer @@ -4776,14 +4820,14 @@ CommitDate: Mon Dec 5 18:01:18 2022 +0100 Resolves: #2149102 Resolves: #2149644 -:000000 100644 00000000 6516cc06 A glibc-rh2149102.patch -:000000 100644 00000000 b6b86ca1 A glibc-upstream-2.34-361.patch -:000000 100644 00000000 d7b4767f A glibc-upstream-2.34-362.patch -:000000 100644 00000000 4428f128 A glibc-upstream-2.34-363.patch -:000000 100644 00000000 cf76f9b0 A glibc-upstream-2.34-364.patch -:000000 100644 00000000 1fd3d7cb A glibc-upstream-2.34-365.patch -:100644 100644 d5bf4222 c7bda412 M glibc.spec -:100644 100644 38c27d0b f48c1cf2 M wrap-find-debuginfo.sh +:000000 100644 0000000 6516cc0 A glibc-rh2149102.patch +:000000 100644 0000000 b6b86ca A glibc-upstream-2.34-361.patch +:000000 100644 0000000 d7b4767 A glibc-upstream-2.34-362.patch +:000000 100644 0000000 4428f12 A glibc-upstream-2.34-363.patch +:000000 100644 0000000 cf76f9b A glibc-upstream-2.34-364.patch +:000000 100644 0000000 1fd3d7c A glibc-upstream-2.34-365.patch +:100644 100644 d5bf422 c7bda41 M glibc.spec +:100644 100644 38c27d0 f48c1cf M wrap-find-debuginfo.sh commit 1708d98eba45cadfcc79094d5b6e2b92f1745bc1 Author: Arjun Shankar @@ -4816,21 +4860,21 @@ CommitDate: Mon Nov 14 21:09:51 2022 +0100 Resolves: #2110357 Resolves: #2141685 -:000000 100644 00000000 a0fe300f A glibc-upstream-2.34-346.patch -:000000 100644 00000000 408e38f7 A glibc-upstream-2.34-347.patch -:000000 100644 00000000 c33b026d A glibc-upstream-2.34-348.patch -:000000 100644 00000000 0b05961d A glibc-upstream-2.34-349.patch -:000000 100644 00000000 7ab515b8 A glibc-upstream-2.34-350.patch -:000000 100644 00000000 91141b0c A glibc-upstream-2.34-351.patch -:000000 100644 00000000 5c4006ea A glibc-upstream-2.34-352.patch -:000000 100644 00000000 2bf62509 A glibc-upstream-2.34-353.patch -:000000 100644 00000000 0ac8827d A glibc-upstream-2.34-354.patch -:000000 100644 00000000 4ba03a05 A glibc-upstream-2.34-355.patch -:000000 100644 00000000 fcaa4ad2 A glibc-upstream-2.34-356.patch -:000000 100644 00000000 732e8afd A glibc-upstream-2.34-357.patch -:000000 100644 00000000 fb4f91e8 A glibc-upstream-2.34-358.patch -:000000 100644 00000000 25fdf9fb A glibc-upstream-2.34-359.patch -:100644 100644 428a3b6d d5bf4222 M glibc.spec +:000000 100644 0000000 a0fe300 A glibc-upstream-2.34-346.patch +:000000 100644 0000000 408e38f A glibc-upstream-2.34-347.patch +:000000 100644 0000000 c33b026 A glibc-upstream-2.34-348.patch +:000000 100644 0000000 0b05961 A glibc-upstream-2.34-349.patch +:000000 100644 0000000 7ab515b A glibc-upstream-2.34-350.patch +:000000 100644 0000000 91141b0 A glibc-upstream-2.34-351.patch +:000000 100644 0000000 5c4006e A glibc-upstream-2.34-352.patch +:000000 100644 0000000 2bf6250 A glibc-upstream-2.34-353.patch +:000000 100644 0000000 0ac8827 A glibc-upstream-2.34-354.patch +:000000 100644 0000000 4ba03a0 A glibc-upstream-2.34-355.patch +:000000 100644 0000000 fcaa4ad A glibc-upstream-2.34-356.patch +:000000 100644 0000000 732e8af A glibc-upstream-2.34-357.patch +:000000 100644 0000000 fb4f91e A glibc-upstream-2.34-358.patch +:000000 100644 0000000 25fdf9f A glibc-upstream-2.34-359.patch +:100644 100644 428a3b6 d5bf422 M glibc.spec commit e43852d149b01500720d78049f23bdba99500b16 Author: Arjun Shankar @@ -4885,43 +4929,43 @@ CommitDate: Fri Oct 14 14:22:13 2022 +0200 Resolves: #2129005 Resolves: #2116960 -:000000 100644 00000000 10d78018 A glibc-rh2129005.patch -:000000 100644 00000000 1c34dc00 A glibc-upstream-2.34-309.patch -:000000 100644 00000000 7f949a00 A glibc-upstream-2.34-310.patch -:000000 100644 00000000 2307c0c6 A glibc-upstream-2.34-311.patch -:000000 100644 00000000 f8add993 A glibc-upstream-2.34-312.patch -:000000 100644 00000000 be02589d A glibc-upstream-2.34-314.patch -:000000 100644 00000000 89512a13 A glibc-upstream-2.34-315.patch -:000000 100644 00000000 6712840d A glibc-upstream-2.34-316.patch -:000000 100644 00000000 b99be70c A glibc-upstream-2.34-317.patch -:000000 100644 00000000 0dd08c0e A glibc-upstream-2.34-318.patch -:000000 100644 00000000 e00dfbe5 A glibc-upstream-2.34-319.patch -:000000 100644 00000000 617e31c0 A glibc-upstream-2.34-320.patch -:000000 100644 00000000 c32e7cea A glibc-upstream-2.34-321.patch -:000000 100644 00000000 f590d8ee A glibc-upstream-2.34-322.patch -:000000 100644 00000000 9e000220 A glibc-upstream-2.34-323.patch -:000000 100644 00000000 b77de6e7 A glibc-upstream-2.34-324.patch -:000000 100644 00000000 7a282c5f A glibc-upstream-2.34-325.patch -:000000 100644 00000000 3784a3e0 A glibc-upstream-2.34-326.patch -:000000 100644 00000000 8019ca3f A glibc-upstream-2.34-327.patch -:000000 100644 00000000 d718c5fe A glibc-upstream-2.34-329.patch -:000000 100644 00000000 4fb22efb A glibc-upstream-2.34-330.patch -:000000 100644 00000000 59c359fd A glibc-upstream-2.34-331.patch -:000000 100644 00000000 2a8d15a2 A glibc-upstream-2.34-332.patch -:000000 100644 00000000 71f9e2aa A glibc-upstream-2.34-333.patch -:000000 100644 00000000 1138256b A glibc-upstream-2.34-334.patch -:000000 100644 00000000 fdf1241a A glibc-upstream-2.34-335.patch -:000000 100644 00000000 94b39f21 A glibc-upstream-2.34-336.patch -:000000 100644 00000000 41aea509 A glibc-upstream-2.34-337.patch -:000000 100644 00000000 44dec628 A glibc-upstream-2.34-338.patch -:000000 100644 00000000 4820b0fd A glibc-upstream-2.34-339.patch -:000000 100644 00000000 077c2887 A glibc-upstream-2.34-340.patch -:000000 100644 00000000 6e9814a4 A glibc-upstream-2.34-341.patch -:000000 100644 00000000 8750786c A glibc-upstream-2.34-342.patch -:000000 100644 00000000 dd9d4b82 A glibc-upstream-2.34-343.patch -:000000 100644 00000000 754168fc A glibc-upstream-2.34-344.patch -:000000 100644 00000000 c0028ebc A glibc-upstream-2.34-345.patch -:100644 100644 2da3d32a 428a3b6d M glibc.spec +:000000 100644 0000000 10d7801 A glibc-rh2129005.patch +:000000 100644 0000000 1c34dc0 A glibc-upstream-2.34-309.patch +:000000 100644 0000000 7f949a0 A glibc-upstream-2.34-310.patch +:000000 100644 0000000 2307c0c A glibc-upstream-2.34-311.patch +:000000 100644 0000000 f8add99 A glibc-upstream-2.34-312.patch +:000000 100644 0000000 be02589 A glibc-upstream-2.34-314.patch +:000000 100644 0000000 89512a1 A glibc-upstream-2.34-315.patch +:000000 100644 0000000 6712840 A glibc-upstream-2.34-316.patch +:000000 100644 0000000 b99be70 A glibc-upstream-2.34-317.patch +:000000 100644 0000000 0dd08c0 A glibc-upstream-2.34-318.patch +:000000 100644 0000000 e00dfbe A glibc-upstream-2.34-319.patch +:000000 100644 0000000 617e31c A glibc-upstream-2.34-320.patch +:000000 100644 0000000 c32e7ce A glibc-upstream-2.34-321.patch +:000000 100644 0000000 f590d8e A glibc-upstream-2.34-322.patch +:000000 100644 0000000 9e00022 A glibc-upstream-2.34-323.patch +:000000 100644 0000000 b77de6e A glibc-upstream-2.34-324.patch +:000000 100644 0000000 7a282c5 A glibc-upstream-2.34-325.patch +:000000 100644 0000000 3784a3e A glibc-upstream-2.34-326.patch +:000000 100644 0000000 8019ca3 A glibc-upstream-2.34-327.patch +:000000 100644 0000000 d718c5f A glibc-upstream-2.34-329.patch +:000000 100644 0000000 4fb22ef A glibc-upstream-2.34-330.patch +:000000 100644 0000000 59c359f A glibc-upstream-2.34-331.patch +:000000 100644 0000000 2a8d15a A glibc-upstream-2.34-332.patch +:000000 100644 0000000 71f9e2a A glibc-upstream-2.34-333.patch +:000000 100644 0000000 1138256 A glibc-upstream-2.34-334.patch +:000000 100644 0000000 fdf1241 A glibc-upstream-2.34-335.patch +:000000 100644 0000000 94b39f2 A glibc-upstream-2.34-336.patch +:000000 100644 0000000 41aea50 A glibc-upstream-2.34-337.patch +:000000 100644 0000000 44dec62 A glibc-upstream-2.34-338.patch +:000000 100644 0000000 4820b0f A glibc-upstream-2.34-339.patch +:000000 100644 0000000 077c288 A glibc-upstream-2.34-340.patch +:000000 100644 0000000 6e9814a A glibc-upstream-2.34-341.patch +:000000 100644 0000000 8750786 A glibc-upstream-2.34-342.patch +:000000 100644 0000000 dd9d4b8 A glibc-upstream-2.34-343.patch +:000000 100644 0000000 754168f A glibc-upstream-2.34-344.patch +:000000 100644 0000000 c0028eb A glibc-upstream-2.34-345.patch +:100644 100644 2da3d32 428a3b6 M glibc.spec commit 6b1ce0df404b9d1908f768b733a9dfcd17d39050 Author: Florian Weimer @@ -4944,17 +4988,17 @@ CommitDate: Tue Oct 11 16:16:48 2022 +0200 Resolves: #2118666 Resolves: #2128615 -:000000 100644 00000000 e1543653 A glibc-rh2117712-1.patch -:000000 100644 00000000 0a551822 A glibc-rh2117712-2.patch -:000000 100644 00000000 e3cf26e4 A glibc-rh2117712-3.patch -:000000 100644 00000000 1d0a420d A glibc-rh2117712-4.patch -:000000 100644 00000000 e147fa2d A glibc-rh2117712-5.patch -:000000 100644 00000000 33766ff1 A glibc-rh2117712-6.patch -:000000 100644 00000000 86750f6c A glibc-rh2118666.patch -:000000 100644 00000000 b4783d8c A glibc-rh2128615-1.patch -:000000 100644 00000000 2d8d4acd A glibc-rh2128615-2.patch -:000000 100644 00000000 bf8a9a42 A glibc-rh2128615-3.patch -:100644 100644 62d9d146 2da3d32a M glibc.spec +:000000 100644 0000000 e154365 A glibc-rh2117712-1.patch +:000000 100644 0000000 0a55182 A glibc-rh2117712-2.patch +:000000 100644 0000000 e3cf26e A glibc-rh2117712-3.patch +:000000 100644 0000000 1d0a420 A glibc-rh2117712-4.patch +:000000 100644 0000000 e147fa2 A glibc-rh2117712-5.patch +:000000 100644 0000000 33766ff A glibc-rh2117712-6.patch +:000000 100644 0000000 86750f6 A glibc-rh2118666.patch +:000000 100644 0000000 b4783d8 A glibc-rh2128615-1.patch +:000000 100644 0000000 2d8d4ac A glibc-rh2128615-2.patch +:000000 100644 0000000 bf8a9a4 A glibc-rh2128615-3.patch +:100644 100644 62d9d14 2da3d32 M glibc.spec commit 591bb6da2e5b1a7906feb36963fe692612331c35 Author: Arjun Shankar @@ -4969,8 +5013,8 @@ CommitDate: Thu Oct 6 17:14:28 2022 +0200 Resolves: #2115831 -:100644 100644 a393e5e3 62d9d146 M glibc.spec -:100644 100644 d26f8ebc 38c27d0b M wrap-find-debuginfo.sh +:100644 100644 a393e5e 62d9d14 M glibc.spec +:100644 100644 d26f8eb 38c27d0 M wrap-find-debuginfo.sh commit d3604d02a2b94bef86e436eea0e50ab5e12fc5b2 Author: Arjun Shankar @@ -4985,8 +5029,8 @@ CommitDate: Tue Oct 4 18:59:41 2022 +0200 Resolves: #2115831 -:100644 100644 3e5fb9d7 a393e5e3 M glibc.spec -:100644 100644 3157d69e d26f8ebc M wrap-find-debuginfo.sh +:100644 100644 3e5fb9d a393e5e M glibc.spec +:100644 100644 3157d69 d26f8eb M wrap-find-debuginfo.sh commit c3e41ff9aafc2e04cbb2edcad3d00581fe4ed5b0 Author: Arjun Shankar @@ -5014,14 +5058,14 @@ CommitDate: Fri Sep 23 14:51:51 2022 +0200 Resolves: #2115831 Resolves: #2116960 -:000000 100644 00000000 d7c929fa A glibc-upstream-2.34-303.patch -:000000 100644 00000000 f67a8354 A glibc-upstream-2.34-304.patch -:000000 100644 00000000 8a70f757 A glibc-upstream-2.34-305.patch -:000000 100644 00000000 b031a566 A glibc-upstream-2.34-306.patch -:000000 100644 00000000 8e5493bc A glibc-upstream-2.34-307.patch -:000000 100644 00000000 4726bf0f A glibc-upstream-2.34-308.patch -:100644 100644 dcfb89fe 3e5fb9d7 M glibc.spec -:100644 100644 6a558df9 3157d69e M wrap-find-debuginfo.sh +:000000 100644 0000000 d7c929f A glibc-upstream-2.34-303.patch +:000000 100644 0000000 f67a835 A glibc-upstream-2.34-304.patch +:000000 100644 0000000 8a70f75 A glibc-upstream-2.34-305.patch +:000000 100644 0000000 b031a56 A glibc-upstream-2.34-306.patch +:000000 100644 0000000 8e5493b A glibc-upstream-2.34-307.patch +:000000 100644 0000000 4726bf0 A glibc-upstream-2.34-308.patch +:100644 100644 dcfb89f 3e5fb9d M glibc.spec +:100644 100644 6a558df 3157d69 M wrap-find-debuginfo.sh commit 668eaab0c7ee94b9bef59eb763068709657273fc Author: Arjun Shankar @@ -5066,36 +5110,36 @@ CommitDate: Fri Jul 22 21:11:19 2022 +0200 Resolves: #2109505 -:000000 100644 00000000 c56ed939 A glibc-upstream-2.34-274.patch -:000000 100644 00000000 155d9e13 A glibc-upstream-2.34-275.patch -:000000 100644 00000000 5e9bb638 A glibc-upstream-2.34-276.patch -:000000 100644 00000000 3f15409f A glibc-upstream-2.34-277.patch -:000000 100644 00000000 26b047f5 A glibc-upstream-2.34-278.patch -:000000 100644 00000000 21c99ad0 A glibc-upstream-2.34-279.patch -:000000 100644 00000000 95a58fe3 A glibc-upstream-2.34-280.patch -:000000 100644 00000000 3a323787 A glibc-upstream-2.34-281.patch -:000000 100644 00000000 b1c9c0d2 A glibc-upstream-2.34-282.patch -:000000 100644 00000000 7745fefc A glibc-upstream-2.34-283.patch -:000000 100644 00000000 846f8077 A glibc-upstream-2.34-284.patch -:000000 100644 00000000 c3b0837e A glibc-upstream-2.34-285.patch -:000000 100644 00000000 41a01880 A glibc-upstream-2.34-286.patch -:000000 100644 00000000 083be9d2 A glibc-upstream-2.34-287.patch -:000000 100644 00000000 65654558 A glibc-upstream-2.34-288.patch -:000000 100644 00000000 fe9c3359 A glibc-upstream-2.34-289.patch -:000000 100644 00000000 326109c9 A glibc-upstream-2.34-290.patch -:000000 100644 00000000 849476fc A glibc-upstream-2.34-291.patch -:000000 100644 00000000 492f541c A glibc-upstream-2.34-292.patch -:000000 100644 00000000 81a4e0e5 A glibc-upstream-2.34-293.patch -:000000 100644 00000000 a7bd3919 A glibc-upstream-2.34-294.patch -:000000 100644 00000000 88d89e89 A glibc-upstream-2.34-295.patch -:000000 100644 00000000 eecd0055 A glibc-upstream-2.34-296.patch -:000000 100644 00000000 1bc2f3c2 A glibc-upstream-2.34-297.patch -:000000 100644 00000000 ae07d14b A glibc-upstream-2.34-298.patch -:000000 100644 00000000 afa05e9a A glibc-upstream-2.34-299.patch -:000000 100644 00000000 5db83274 A glibc-upstream-2.34-300.patch -:000000 100644 00000000 4d8b2fb3 A glibc-upstream-2.34-301.patch -:000000 100644 00000000 3c37bca3 A glibc-upstream-2.34-302.patch -:100644 100644 2b4c989e dcfb89fe M glibc.spec +:000000 100644 0000000 c56ed93 A glibc-upstream-2.34-274.patch +:000000 100644 0000000 155d9e1 A glibc-upstream-2.34-275.patch +:000000 100644 0000000 5e9bb63 A glibc-upstream-2.34-276.patch +:000000 100644 0000000 3f15409 A glibc-upstream-2.34-277.patch +:000000 100644 0000000 26b047f A glibc-upstream-2.34-278.patch +:000000 100644 0000000 21c99ad A glibc-upstream-2.34-279.patch +:000000 100644 0000000 95a58fe A glibc-upstream-2.34-280.patch +:000000 100644 0000000 3a32378 A glibc-upstream-2.34-281.patch +:000000 100644 0000000 b1c9c0d A glibc-upstream-2.34-282.patch +:000000 100644 0000000 7745fef A glibc-upstream-2.34-283.patch +:000000 100644 0000000 846f807 A glibc-upstream-2.34-284.patch +:000000 100644 0000000 c3b0837 A glibc-upstream-2.34-285.patch +:000000 100644 0000000 41a0188 A glibc-upstream-2.34-286.patch +:000000 100644 0000000 083be9d A glibc-upstream-2.34-287.patch +:000000 100644 0000000 6565455 A glibc-upstream-2.34-288.patch +:000000 100644 0000000 fe9c335 A glibc-upstream-2.34-289.patch +:000000 100644 0000000 326109c A glibc-upstream-2.34-290.patch +:000000 100644 0000000 849476f A glibc-upstream-2.34-291.patch +:000000 100644 0000000 492f541 A glibc-upstream-2.34-292.patch +:000000 100644 0000000 81a4e0e A glibc-upstream-2.34-293.patch +:000000 100644 0000000 a7bd391 A glibc-upstream-2.34-294.patch +:000000 100644 0000000 88d89e8 A glibc-upstream-2.34-295.patch +:000000 100644 0000000 eecd005 A glibc-upstream-2.34-296.patch +:000000 100644 0000000 1bc2f3c A glibc-upstream-2.34-297.patch +:000000 100644 0000000 ae07d14 A glibc-upstream-2.34-298.patch +:000000 100644 0000000 afa05e9 A glibc-upstream-2.34-299.patch +:000000 100644 0000000 5db8327 A glibc-upstream-2.34-300.patch +:000000 100644 0000000 4d8b2fb A glibc-upstream-2.34-301.patch +:000000 100644 0000000 3c37bca A glibc-upstream-2.34-302.patch +:100644 100644 2b4c989 dcfb89f M glibc.spec commit bc1778ead1b7d0e2dbba12d942eb4d5f59dfb13b Author: Florian Weimer @@ -5110,9 +5154,9 @@ CommitDate: Fri Jun 24 23:17:16 2022 +0200 Resolves: #2096191 -:000000 100644 00000000 b1341ef0 A glibc-rh2096191-1.patch -:000000 100644 00000000 1cbd0a47 A glibc-rh2096191-2.patch -:100644 100644 1409826d 2b4c989e M glibc.spec +:000000 100644 0000000 b1341ef A glibc-rh2096191-1.patch +:000000 100644 0000000 1cbd0a4 A glibc-rh2096191-2.patch +:100644 100644 1409826 2b4c989 M glibc.spec commit 3aa2e0d8ede7d18bb56232e5907d33cc624dd73e Author: Arjun Shankar @@ -5134,12 +5178,12 @@ CommitDate: Tue Jun 14 19:09:15 2022 +0200 Related: #2091541 Related: #2080163 (actually fixed in 601650f878b6, two commits ago) -:000000 100644 00000000 35c6ab23 A glibc-upstream-2.34-269.patch -:000000 100644 00000000 07ab4c96 A glibc-upstream-2.34-270.patch -:000000 100644 00000000 d5f61443 A glibc-upstream-2.34-271.patch -:000000 100644 00000000 289b763b A glibc-upstream-2.34-272.patch -:000000 100644 00000000 698b3e50 A glibc-upstream-2.34-273.patch -:100644 100644 6b6dad01 1409826d M glibc.spec +:000000 100644 0000000 35c6ab2 A glibc-upstream-2.34-269.patch +:000000 100644 0000000 07ab4c9 A glibc-upstream-2.34-270.patch +:000000 100644 0000000 d5f6144 A glibc-upstream-2.34-271.patch +:000000 100644 0000000 289b763 A glibc-upstream-2.34-272.patch +:000000 100644 0000000 698b3e5 A glibc-upstream-2.34-273.patch +:100644 100644 6b6dad0 1409826 M glibc.spec commit 5f265ff1c66b52a834bbbc181bbe10b8ab341fb7 Author: Florian Weimer @@ -5170,21 +5214,21 @@ CommitDate: Wed Jun 8 17:01:17 2022 +0200 Resolves: #2091549 Related: #2091541 -:000000 100644 00000000 5e49605a A glibc-rh2085529-1.patch -:000000 100644 00000000 22036355 A glibc-rh2085529-2.patch -:000000 100644 00000000 496a5d3f A glibc-rh2085529-3.patch -:000000 100644 00000000 54c97e90 A glibc-rh2085529-4.patch -:000000 100644 00000000 d0501b86 A glibc-upstream-2.34-259.patch -:000000 100644 00000000 95264aac A glibc-upstream-2.34-260.patch -:000000 100644 00000000 349d50d2 A glibc-upstream-2.34-261.patch -:000000 100644 00000000 013d55c3 A glibc-upstream-2.34-262.patch -:000000 100644 00000000 b2e79e12 A glibc-upstream-2.34-263.patch -:000000 100644 00000000 b8e9768a A glibc-upstream-2.34-264.patch -:000000 100644 00000000 0bd0c816 A glibc-upstream-2.34-265.patch -:000000 100644 00000000 7bf98d2b A glibc-upstream-2.34-266.patch -:000000 100644 00000000 1511b1eb A glibc-upstream-2.34-267.patch -:000000 100644 00000000 28787636 A glibc-upstream-2.34-268.patch -:100644 100644 7911d80a 6b6dad01 M glibc.spec +:000000 100644 0000000 5e49605 A glibc-rh2085529-1.patch +:000000 100644 0000000 2203635 A glibc-rh2085529-2.patch +:000000 100644 0000000 496a5d3 A glibc-rh2085529-3.patch +:000000 100644 0000000 54c97e9 A glibc-rh2085529-4.patch +:000000 100644 0000000 d0501b8 A glibc-upstream-2.34-259.patch +:000000 100644 0000000 95264aa A glibc-upstream-2.34-260.patch +:000000 100644 0000000 349d50d A glibc-upstream-2.34-261.patch +:000000 100644 0000000 013d55c A glibc-upstream-2.34-262.patch +:000000 100644 0000000 b2e79e1 A glibc-upstream-2.34-263.patch +:000000 100644 0000000 b8e9768 A glibc-upstream-2.34-264.patch +:000000 100644 0000000 0bd0c81 A glibc-upstream-2.34-265.patch +:000000 100644 0000000 7bf98d2 A glibc-upstream-2.34-266.patch +:000000 100644 0000000 1511b1e A glibc-upstream-2.34-267.patch +:000000 100644 0000000 2878763 A glibc-upstream-2.34-268.patch +:100644 100644 7911d80 6b6dad0 M glibc.spec commit 601650f878b6ebd7405c6a38a15d7583a00036ac Author: Arjun Shankar @@ -5276,75 +5320,75 @@ CommitDate: Mon Jun 6 16:33:33 2022 +0200 Resolves: #2091541 -:000000 100644 00000000 55b6a812 A glibc-upstream-2.34-191.patch -:000000 100644 00000000 5a89460e A glibc-upstream-2.34-192.patch -:000000 100644 00000000 d056d363 A glibc-upstream-2.34-193.patch -:000000 100644 00000000 0437f533 A glibc-upstream-2.34-194.patch -:000000 100644 00000000 d2b7afb5 A glibc-upstream-2.34-195.patch -:000000 100644 00000000 5294eea4 A glibc-upstream-2.34-196.patch -:000000 100644 00000000 afe47ec5 A glibc-upstream-2.34-197.patch -:000000 100644 00000000 67ab10c5 A glibc-upstream-2.34-198.patch -:000000 100644 00000000 02675fc3 A glibc-upstream-2.34-199.patch -:000000 100644 00000000 7ad14c9b A glibc-upstream-2.34-200.patch -:000000 100644 00000000 68ca9691 A glibc-upstream-2.34-201.patch -:000000 100644 00000000 9357b6f3 A glibc-upstream-2.34-202.patch -:000000 100644 00000000 e45b5883 A glibc-upstream-2.34-203.patch -:000000 100644 00000000 42504937 A glibc-upstream-2.34-204.patch -:000000 100644 00000000 6cf18b84 A glibc-upstream-2.34-205.patch -:000000 100644 00000000 ed9f37bf A glibc-upstream-2.34-206.patch -:000000 100644 00000000 9818f5da A glibc-upstream-2.34-207.patch -:000000 100644 00000000 d4d9b52a A glibc-upstream-2.34-208.patch -:000000 100644 00000000 4874143a A glibc-upstream-2.34-209.patch -:000000 100644 00000000 4898d45c A glibc-upstream-2.34-210.patch -:000000 100644 00000000 12214586 A glibc-upstream-2.34-211.patch -:000000 100644 00000000 000023f5 A glibc-upstream-2.34-212.patch -:000000 100644 00000000 544f599f A glibc-upstream-2.34-213.patch -:000000 100644 00000000 d51a0066 A glibc-upstream-2.34-214.patch -:000000 100644 00000000 d33cacef A glibc-upstream-2.34-215.patch -:000000 100644 00000000 b1e36ab9 A glibc-upstream-2.34-216.patch -:000000 100644 00000000 8f92420c A glibc-upstream-2.34-217.patch -:000000 100644 00000000 312016be A glibc-upstream-2.34-218.patch -:000000 100644 00000000 654fb287 A glibc-upstream-2.34-219.patch -:000000 100644 00000000 5f77e5c4 A glibc-upstream-2.34-220.patch -:000000 100644 00000000 c4b411b1 A glibc-upstream-2.34-221.patch -:000000 100644 00000000 4b54799a A glibc-upstream-2.34-222.patch -:000000 100644 00000000 42acccac A glibc-upstream-2.34-223.patch -:000000 100644 00000000 764dd6d6 A glibc-upstream-2.34-224.patch -:000000 100644 00000000 61ccb203 A glibc-upstream-2.34-225.patch -:000000 100644 00000000 fcadc66b A glibc-upstream-2.34-226.patch -:000000 100644 00000000 9dd23aa3 A glibc-upstream-2.34-227.patch -:000000 100644 00000000 dee65989 A glibc-upstream-2.34-228.patch -:000000 100644 00000000 97f6bbdc A glibc-upstream-2.34-229.patch -:000000 100644 00000000 b7eb5948 A glibc-upstream-2.34-230.patch -:000000 100644 00000000 3c928b8f A glibc-upstream-2.34-231.patch -:000000 100644 00000000 03ca8522 A glibc-upstream-2.34-232.patch -:000000 100644 00000000 30c79ded A glibc-upstream-2.34-233.patch -:000000 100644 00000000 4b8b07dd A glibc-upstream-2.34-234.patch -:000000 100644 00000000 c3ca9590 A glibc-upstream-2.34-235.patch -:000000 100644 00000000 46f44495 A glibc-upstream-2.34-236.patch -:000000 100644 00000000 1ea756f1 A glibc-upstream-2.34-237.patch -:000000 100644 00000000 4d07a8aa A glibc-upstream-2.34-238.patch -:000000 100644 00000000 ef06d235 A glibc-upstream-2.34-239.patch -:000000 100644 00000000 d5cec58e A glibc-upstream-2.34-240.patch -:000000 100644 00000000 0d67f1c4 A glibc-upstream-2.34-241.patch -:000000 100644 00000000 a120d5c8 A glibc-upstream-2.34-242.patch -:000000 100644 00000000 a9ae2851 A glibc-upstream-2.34-243.patch -:000000 100644 00000000 0a4325f7 A glibc-upstream-2.34-244.patch -:000000 100644 00000000 5ba00fd0 A glibc-upstream-2.34-245.patch -:000000 100644 00000000 76c7b683 A glibc-upstream-2.34-246.patch -:000000 100644 00000000 c6b2961d A glibc-upstream-2.34-247.patch -:000000 100644 00000000 dda3e735 A glibc-upstream-2.34-248.patch -:000000 100644 00000000 7b48d3fd A glibc-upstream-2.34-249.patch -:000000 100644 00000000 f552acca A glibc-upstream-2.34-250.patch -:000000 100644 00000000 9f5a590c A glibc-upstream-2.34-251.patch -:000000 100644 00000000 b607fcc5 A glibc-upstream-2.34-252.patch -:000000 100644 00000000 2be9efca A glibc-upstream-2.34-253.patch -:000000 100644 00000000 be69b2f9 A glibc-upstream-2.34-254.patch -:000000 100644 00000000 aa679f3d A glibc-upstream-2.34-255.patch -:000000 100644 00000000 d92a5d0c A glibc-upstream-2.34-256.patch -:000000 100644 00000000 c9e1cd50 A glibc-upstream-2.34-257.patch -:000000 100644 00000000 1f04c211 A glibc-upstream-2.34-258.patch -:100644 100644 61f2eccc 7911d80a M glibc.spec +:000000 100644 0000000 55b6a81 A glibc-upstream-2.34-191.patch +:000000 100644 0000000 5a89460 A glibc-upstream-2.34-192.patch +:000000 100644 0000000 d056d36 A glibc-upstream-2.34-193.patch +:000000 100644 0000000 0437f53 A glibc-upstream-2.34-194.patch +:000000 100644 0000000 d2b7afb A glibc-upstream-2.34-195.patch +:000000 100644 0000000 5294eea A glibc-upstream-2.34-196.patch +:000000 100644 0000000 afe47ec A glibc-upstream-2.34-197.patch +:000000 100644 0000000 67ab10c A glibc-upstream-2.34-198.patch +:000000 100644 0000000 02675fc A glibc-upstream-2.34-199.patch +:000000 100644 0000000 7ad14c9 A glibc-upstream-2.34-200.patch +:000000 100644 0000000 68ca969 A glibc-upstream-2.34-201.patch +:000000 100644 0000000 9357b6f A glibc-upstream-2.34-202.patch +:000000 100644 0000000 e45b588 A glibc-upstream-2.34-203.patch +:000000 100644 0000000 4250493 A glibc-upstream-2.34-204.patch +:000000 100644 0000000 6cf18b8 A glibc-upstream-2.34-205.patch +:000000 100644 0000000 ed9f37b A glibc-upstream-2.34-206.patch +:000000 100644 0000000 9818f5d A glibc-upstream-2.34-207.patch +:000000 100644 0000000 d4d9b52 A glibc-upstream-2.34-208.patch +:000000 100644 0000000 4874143 A glibc-upstream-2.34-209.patch +:000000 100644 0000000 4898d45 A glibc-upstream-2.34-210.patch +:000000 100644 0000000 1221458 A glibc-upstream-2.34-211.patch +:000000 100644 0000000 000023f A glibc-upstream-2.34-212.patch +:000000 100644 0000000 544f599 A glibc-upstream-2.34-213.patch +:000000 100644 0000000 d51a006 A glibc-upstream-2.34-214.patch +:000000 100644 0000000 d33cace A glibc-upstream-2.34-215.patch +:000000 100644 0000000 b1e36ab A glibc-upstream-2.34-216.patch +:000000 100644 0000000 8f92420 A glibc-upstream-2.34-217.patch +:000000 100644 0000000 312016b A glibc-upstream-2.34-218.patch +:000000 100644 0000000 654fb28 A glibc-upstream-2.34-219.patch +:000000 100644 0000000 5f77e5c A glibc-upstream-2.34-220.patch +:000000 100644 0000000 c4b411b A glibc-upstream-2.34-221.patch +:000000 100644 0000000 4b54799 A glibc-upstream-2.34-222.patch +:000000 100644 0000000 42accca A glibc-upstream-2.34-223.patch +:000000 100644 0000000 764dd6d A glibc-upstream-2.34-224.patch +:000000 100644 0000000 61ccb20 A glibc-upstream-2.34-225.patch +:000000 100644 0000000 fcadc66 A glibc-upstream-2.34-226.patch +:000000 100644 0000000 9dd23aa A glibc-upstream-2.34-227.patch +:000000 100644 0000000 dee6598 A glibc-upstream-2.34-228.patch +:000000 100644 0000000 97f6bbd A glibc-upstream-2.34-229.patch +:000000 100644 0000000 b7eb594 A glibc-upstream-2.34-230.patch +:000000 100644 0000000 3c928b8 A glibc-upstream-2.34-231.patch +:000000 100644 0000000 03ca852 A glibc-upstream-2.34-232.patch +:000000 100644 0000000 30c79de A glibc-upstream-2.34-233.patch +:000000 100644 0000000 4b8b07d A glibc-upstream-2.34-234.patch +:000000 100644 0000000 c3ca959 A glibc-upstream-2.34-235.patch +:000000 100644 0000000 46f4449 A glibc-upstream-2.34-236.patch +:000000 100644 0000000 1ea756f A glibc-upstream-2.34-237.patch +:000000 100644 0000000 4d07a8a A glibc-upstream-2.34-238.patch +:000000 100644 0000000 ef06d23 A glibc-upstream-2.34-239.patch +:000000 100644 0000000 d5cec58 A glibc-upstream-2.34-240.patch +:000000 100644 0000000 0d67f1c A glibc-upstream-2.34-241.patch +:000000 100644 0000000 a120d5c A glibc-upstream-2.34-242.patch +:000000 100644 0000000 a9ae285 A glibc-upstream-2.34-243.patch +:000000 100644 0000000 0a4325f A glibc-upstream-2.34-244.patch +:000000 100644 0000000 5ba00fd A glibc-upstream-2.34-245.patch +:000000 100644 0000000 76c7b68 A glibc-upstream-2.34-246.patch +:000000 100644 0000000 c6b2961 A glibc-upstream-2.34-247.patch +:000000 100644 0000000 dda3e73 A glibc-upstream-2.34-248.patch +:000000 100644 0000000 7b48d3f A glibc-upstream-2.34-249.patch +:000000 100644 0000000 f552acc A glibc-upstream-2.34-250.patch +:000000 100644 0000000 9f5a590 A glibc-upstream-2.34-251.patch +:000000 100644 0000000 b607fcc A glibc-upstream-2.34-252.patch +:000000 100644 0000000 2be9efc A glibc-upstream-2.34-253.patch +:000000 100644 0000000 be69b2f A glibc-upstream-2.34-254.patch +:000000 100644 0000000 aa679f3 A glibc-upstream-2.34-255.patch +:000000 100644 0000000 d92a5d0 A glibc-upstream-2.34-256.patch +:000000 100644 0000000 c9e1cd5 A glibc-upstream-2.34-257.patch +:000000 100644 0000000 1f04c21 A glibc-upstream-2.34-258.patch +:100644 100644 61f2ecc 7911d80 M glibc.spec commit 73667d0be699444116ad5789c81b162ec2db80be Author: Carlos O'Donell @@ -5430,64 +5474,64 @@ CommitDate: Fri Apr 29 11:01:33 2022 -0400 Resolves: #2075713 Resolves: #2077838 -:000000 100644 00000000 a0c44789 A glibc-upstream-2.34-133.patch -:000000 100644 00000000 79d45eef A glibc-upstream-2.34-134.patch -:000000 100644 00000000 e5b3840f A glibc-upstream-2.34-135.patch -:000000 100644 00000000 0906c1ce A glibc-upstream-2.34-136.patch -:000000 100644 00000000 06aaa91d A glibc-upstream-2.34-137.patch -:000000 100644 00000000 778ada92 A glibc-upstream-2.34-138.patch -:000000 100644 00000000 8633732a A glibc-upstream-2.34-139.patch -:000000 100644 00000000 69ab10b1 A glibc-upstream-2.34-140.patch -:000000 100644 00000000 2856c966 A glibc-upstream-2.34-141.patch -:000000 100644 00000000 20e72f15 A glibc-upstream-2.34-142.patch -:000000 100644 00000000 d93c0cb9 A glibc-upstream-2.34-143.patch -:000000 100644 00000000 62ab51cd A glibc-upstream-2.34-144.patch -:000000 100644 00000000 f4293605 A glibc-upstream-2.34-145.patch -:000000 100644 00000000 4024ad28 A glibc-upstream-2.34-146.patch -:000000 100644 00000000 5c93ad34 A glibc-upstream-2.34-147.patch -:000000 100644 00000000 11ffb9f8 A glibc-upstream-2.34-148.patch -:000000 100644 00000000 927d0e77 A glibc-upstream-2.34-149.patch -:000000 100644 00000000 40829fd7 A glibc-upstream-2.34-150.patch -:000000 100644 00000000 21e804b6 A glibc-upstream-2.34-151.patch -:000000 100644 00000000 e2c8172b A glibc-upstream-2.34-152.patch -:000000 100644 00000000 2dba7b13 A glibc-upstream-2.34-153.patch -:000000 100644 00000000 15b64cf8 A glibc-upstream-2.34-154.patch -:000000 100644 00000000 bb24edf3 A glibc-upstream-2.34-155.patch -:000000 100644 00000000 528b157d A glibc-upstream-2.34-156.patch -:000000 100644 00000000 0f5fd3c8 A glibc-upstream-2.34-157.patch -:000000 100644 00000000 1cb44e25 A glibc-upstream-2.34-158.patch -:000000 100644 00000000 e45d2051 A glibc-upstream-2.34-159.patch -:000000 100644 00000000 2ce930a4 A glibc-upstream-2.34-160.patch -:000000 100644 00000000 d409366c A glibc-upstream-2.34-162.patch -:000000 100644 00000000 251939d4 A glibc-upstream-2.34-163.patch -:000000 100644 00000000 dbe230b8 A glibc-upstream-2.34-164.patch -:000000 100644 00000000 1bab4fcf A glibc-upstream-2.34-165.patch -:000000 100644 00000000 c2db463b A glibc-upstream-2.34-166.patch -:000000 100644 00000000 e00042d4 A glibc-upstream-2.34-167.patch -:000000 100644 00000000 49e07b7d A glibc-upstream-2.34-168.patch -:000000 100644 00000000 63cb4523 A glibc-upstream-2.34-169.patch -:000000 100644 00000000 11aa68c8 A glibc-upstream-2.34-170.patch -:000000 100644 00000000 04e6898a A glibc-upstream-2.34-171.patch -:000000 100644 00000000 06dc695a A glibc-upstream-2.34-172.patch -:000000 100644 00000000 69a92b89 A glibc-upstream-2.34-173.patch -:000000 100644 00000000 3bf44a87 A glibc-upstream-2.34-174.patch -:000000 100644 00000000 5ebf0b71 A glibc-upstream-2.34-175.patch -:000000 100644 00000000 74b18aba A glibc-upstream-2.34-176.patch -:000000 100644 00000000 112bcadd A glibc-upstream-2.34-177.patch -:000000 100644 00000000 1540e2ff A glibc-upstream-2.34-178.patch -:000000 100644 00000000 e9a4329e A glibc-upstream-2.34-179.patch -:000000 100644 00000000 9707cf26 A glibc-upstream-2.34-180.patch -:000000 100644 00000000 36a401f1 A glibc-upstream-2.34-181.patch -:000000 100644 00000000 563ff9df A glibc-upstream-2.34-182.patch -:000000 100644 00000000 a1a72852 A glibc-upstream-2.34-183.patch -:000000 100644 00000000 805f91ea A glibc-upstream-2.34-184.patch -:000000 100644 00000000 f06f86fc A glibc-upstream-2.34-185.patch -:000000 100644 00000000 a0468445 A glibc-upstream-2.34-186.patch -:000000 100644 00000000 6186aeb1 A glibc-upstream-2.34-187.patch -:000000 100644 00000000 8b493698 A glibc-upstream-2.34-188.patch -:000000 100644 00000000 3a5889cd A glibc-upstream-2.34-189.patch -:000000 100644 00000000 f21a4bf0 A glibc-upstream-2.34-190.patch -:100644 100644 1db258fb 61f2eccc M glibc.spec +:000000 100644 0000000 a0c4478 A glibc-upstream-2.34-133.patch +:000000 100644 0000000 79d45ee A glibc-upstream-2.34-134.patch +:000000 100644 0000000 e5b3840 A glibc-upstream-2.34-135.patch +:000000 100644 0000000 0906c1c A glibc-upstream-2.34-136.patch +:000000 100644 0000000 06aaa91 A glibc-upstream-2.34-137.patch +:000000 100644 0000000 778ada9 A glibc-upstream-2.34-138.patch +:000000 100644 0000000 8633732 A glibc-upstream-2.34-139.patch +:000000 100644 0000000 69ab10b A glibc-upstream-2.34-140.patch +:000000 100644 0000000 2856c96 A glibc-upstream-2.34-141.patch +:000000 100644 0000000 20e72f1 A glibc-upstream-2.34-142.patch +:000000 100644 0000000 d93c0cb A glibc-upstream-2.34-143.patch +:000000 100644 0000000 62ab51c A glibc-upstream-2.34-144.patch +:000000 100644 0000000 f429360 A glibc-upstream-2.34-145.patch +:000000 100644 0000000 4024ad2 A glibc-upstream-2.34-146.patch +:000000 100644 0000000 5c93ad3 A glibc-upstream-2.34-147.patch +:000000 100644 0000000 11ffb9f A glibc-upstream-2.34-148.patch +:000000 100644 0000000 927d0e7 A glibc-upstream-2.34-149.patch +:000000 100644 0000000 40829fd A glibc-upstream-2.34-150.patch +:000000 100644 0000000 21e804b A glibc-upstream-2.34-151.patch +:000000 100644 0000000 e2c8172 A glibc-upstream-2.34-152.patch +:000000 100644 0000000 2dba7b1 A glibc-upstream-2.34-153.patch +:000000 100644 0000000 15b64cf A glibc-upstream-2.34-154.patch +:000000 100644 0000000 bb24edf A glibc-upstream-2.34-155.patch +:000000 100644 0000000 528b157 A glibc-upstream-2.34-156.patch +:000000 100644 0000000 0f5fd3c A glibc-upstream-2.34-157.patch +:000000 100644 0000000 1cb44e2 A glibc-upstream-2.34-158.patch +:000000 100644 0000000 e45d205 A glibc-upstream-2.34-159.patch +:000000 100644 0000000 2ce930a A glibc-upstream-2.34-160.patch +:000000 100644 0000000 d409366 A glibc-upstream-2.34-162.patch +:000000 100644 0000000 251939d A glibc-upstream-2.34-163.patch +:000000 100644 0000000 dbe230b A glibc-upstream-2.34-164.patch +:000000 100644 0000000 1bab4fc A glibc-upstream-2.34-165.patch +:000000 100644 0000000 c2db463 A glibc-upstream-2.34-166.patch +:000000 100644 0000000 e00042d A glibc-upstream-2.34-167.patch +:000000 100644 0000000 49e07b7 A glibc-upstream-2.34-168.patch +:000000 100644 0000000 63cb452 A glibc-upstream-2.34-169.patch +:000000 100644 0000000 11aa68c A glibc-upstream-2.34-170.patch +:000000 100644 0000000 04e6898 A glibc-upstream-2.34-171.patch +:000000 100644 0000000 06dc695 A glibc-upstream-2.34-172.patch +:000000 100644 0000000 69a92b8 A glibc-upstream-2.34-173.patch +:000000 100644 0000000 3bf44a8 A glibc-upstream-2.34-174.patch +:000000 100644 0000000 5ebf0b7 A glibc-upstream-2.34-175.patch +:000000 100644 0000000 74b18ab A glibc-upstream-2.34-176.patch +:000000 100644 0000000 112bcad A glibc-upstream-2.34-177.patch +:000000 100644 0000000 1540e2f A glibc-upstream-2.34-178.patch +:000000 100644 0000000 e9a4329 A glibc-upstream-2.34-179.patch +:000000 100644 0000000 9707cf2 A glibc-upstream-2.34-180.patch +:000000 100644 0000000 36a401f A glibc-upstream-2.34-181.patch +:000000 100644 0000000 563ff9d A glibc-upstream-2.34-182.patch +:000000 100644 0000000 a1a7285 A glibc-upstream-2.34-183.patch +:000000 100644 0000000 805f91e A glibc-upstream-2.34-184.patch +:000000 100644 0000000 f06f86f A glibc-upstream-2.34-185.patch +:000000 100644 0000000 a046844 A glibc-upstream-2.34-186.patch +:000000 100644 0000000 6186aeb A glibc-upstream-2.34-187.patch +:000000 100644 0000000 8b49369 A glibc-upstream-2.34-188.patch +:000000 100644 0000000 3a5889c A glibc-upstream-2.34-189.patch +:000000 100644 0000000 f21a4bf A glibc-upstream-2.34-190.patch +:100644 100644 1db258f 61f2ecc M glibc.spec commit 42eb238e491bf8da05db983eac857efcf91d7f13 Author: Florian Weimer @@ -5531,30 +5575,30 @@ CommitDate: Tue Mar 15 08:58:47 2022 +0100 Resolves: #2063041 Resolves: #2063142 -:100644 100644 2afbfc5c a0b9a7f9 M ChangeLog.old -:000000 100644 00000000 e4186eee A glibc-upstream-2.34-108.patch -:000000 100644 00000000 cd9bc090 A glibc-upstream-2.34-110.patch -:000000 100644 00000000 cf08e560 A glibc-upstream-2.34-111.patch -:000000 100644 00000000 d6a677ad A glibc-upstream-2.34-112.patch -:000000 100644 00000000 e83d23c9 A glibc-upstream-2.34-113.patch -:000000 100644 00000000 863b88c3 A glibc-upstream-2.34-114.patch -:000000 100644 00000000 62b8f3b3 A glibc-upstream-2.34-117.patch -:000000 100644 00000000 b2b028e8 A glibc-upstream-2.34-118.patch -:000000 100644 00000000 cc25de70 A glibc-upstream-2.34-119.patch -:000000 100644 00000000 2fe0c554 A glibc-upstream-2.34-120.patch -:000000 100644 00000000 3f74efd8 A glibc-upstream-2.34-121.patch -:000000 100644 00000000 e628384c A glibc-upstream-2.34-122.patch -:000000 100644 00000000 22b1d2a4 A glibc-upstream-2.34-123.patch -:000000 100644 00000000 0ee28301 A glibc-upstream-2.34-124.patch -:000000 100644 00000000 208da9bc A glibc-upstream-2.34-125.patch -:000000 100644 00000000 93d236df A glibc-upstream-2.34-126.patch -:000000 100644 00000000 488cc635 A glibc-upstream-2.34-127.patch -:000000 100644 00000000 f08fa75e A glibc-upstream-2.34-128.patch -:000000 100644 00000000 507a5a50 A glibc-upstream-2.34-129.patch -:000000 100644 00000000 e114c758 A glibc-upstream-2.34-130.patch -:000000 100644 00000000 d2b1af93 A glibc-upstream-2.34-131.patch -:000000 100644 00000000 9da05bad A glibc-upstream-2.34-132.patch -:100644 100644 81a2eb1c 1db258fb M glibc.spec +:100644 100644 2afbfc5 a0b9a7f M ChangeLog.old +:000000 100644 0000000 e4186ee A glibc-upstream-2.34-108.patch +:000000 100644 0000000 cd9bc09 A glibc-upstream-2.34-110.patch +:000000 100644 0000000 cf08e56 A glibc-upstream-2.34-111.patch +:000000 100644 0000000 d6a677a A glibc-upstream-2.34-112.patch +:000000 100644 0000000 e83d23c A glibc-upstream-2.34-113.patch +:000000 100644 0000000 863b88c A glibc-upstream-2.34-114.patch +:000000 100644 0000000 62b8f3b A glibc-upstream-2.34-117.patch +:000000 100644 0000000 b2b028e A glibc-upstream-2.34-118.patch +:000000 100644 0000000 cc25de7 A glibc-upstream-2.34-119.patch +:000000 100644 0000000 2fe0c55 A glibc-upstream-2.34-120.patch +:000000 100644 0000000 3f74efd A glibc-upstream-2.34-121.patch +:000000 100644 0000000 e628384 A glibc-upstream-2.34-122.patch +:000000 100644 0000000 22b1d2a A glibc-upstream-2.34-123.patch +:000000 100644 0000000 0ee2830 A glibc-upstream-2.34-124.patch +:000000 100644 0000000 208da9b A glibc-upstream-2.34-125.patch +:000000 100644 0000000 93d236d A glibc-upstream-2.34-126.patch +:000000 100644 0000000 488cc63 A glibc-upstream-2.34-127.patch +:000000 100644 0000000 f08fa75 A glibc-upstream-2.34-128.patch +:000000 100644 0000000 507a5a5 A glibc-upstream-2.34-129.patch +:000000 100644 0000000 e114c75 A glibc-upstream-2.34-130.patch +:000000 100644 0000000 d2b1af9 A glibc-upstream-2.34-131.patch +:000000 100644 0000000 9da05ba A glibc-upstream-2.34-132.patch +:100644 100644 81a2eb1 1db258f M glibc.spec commit d6cd878dc933800e257316081cd56c8d3774b578 Author: Arjun Shankar @@ -5572,9 +5616,9 @@ CommitDate: Tue Mar 8 23:25:23 2022 +0100 Resolves: #2054789 -:100644 000000 515611a9 00000000 D glibc-fedora-localedef.patch -:000000 100644 00000000 68fff2ff A glibc-rh2054789.patch -:100644 100644 11ec2c1f 81a2eb1c M glibc.spec +:100644 000000 515611a 0000000 D glibc-fedora-localedef.patch +:000000 100644 0000000 68fff2f A glibc-rh2054789.patch +:100644 100644 11ec2c1 81a2eb1 M glibc.spec commit e5be379cb04268f7c3e5fad8163c4b5a2dd93ed7 Author: Florian Weimer @@ -5593,10 +5637,10 @@ CommitDate: Fri Mar 4 11:15:41 2022 +0100 Resolves: #2060777 Resolves: #2060778 -:000000 100644 00000000 fd6cacc6 A glibc-rh2058224-1.patch -:000000 100644 00000000 ee6e4ccd A glibc-rh2058224-2.patch -:000000 100644 00000000 5d7ab3f7 A glibc-rh2058230.patch -:100644 100644 fca63126 11ec2c1f M glibc.spec +:000000 100644 0000000 fd6cacc A glibc-rh2058224-1.patch +:000000 100644 0000000 ee6e4cc A glibc-rh2058224-2.patch +:000000 100644 0000000 5d7ab3f A glibc-rh2058230.patch +:100644 100644 fca6312 11ec2c1 M glibc.spec commit 63da4f7958f3e28080e220cef606f74b49aebff0 Author: Florian Weimer @@ -5616,11 +5660,11 @@ CommitDate: Thu Feb 3 18:26:18 2022 +0100 Related: #2037056 -:000000 100644 00000000 4ae7486a A glibc-upstream-2.34-104.patch -:000000 100644 00000000 423f65fb A glibc-upstream-2.34-105.patch -:000000 100644 00000000 296f32a1 A glibc-upstream-2.34-106.patch -:000000 100644 00000000 650aa2be A glibc-upstream-2.34-107.patch -:100644 100644 654c2d2d fca63126 M glibc.spec +:000000 100644 0000000 4ae7486 A glibc-upstream-2.34-104.patch +:000000 100644 0000000 423f65f A glibc-upstream-2.34-105.patch +:000000 100644 0000000 296f32a A glibc-upstream-2.34-106.patch +:000000 100644 0000000 650aa2b A glibc-upstream-2.34-107.patch +:100644 100644 654c2d2 fca6312 M glibc.spec commit 234a1c0ad2aeac75515a6e6c788d04c36e0fa20b Author: Florian Weimer @@ -5652,19 +5696,19 @@ CommitDate: Tue Feb 1 21:15:30 2022 +0100 Resolves: #2037056 -:000000 100644 00000000 3a90a475 A glibc-c-utf8-locale-3.patch -:000000 100644 00000000 8e9ec4cb A glibc-c-utf8-locale-4.patch -:000000 100644 00000000 06144a46 A glibc-c-utf8-locale-5.patch -:000000 100644 00000000 d797f77d A glibc-upstream-2.34-100.patch -:000000 100644 00000000 b318a814 A glibc-upstream-2.34-101.patch -:000000 100644 00000000 928856ea A glibc-upstream-2.34-102.patch -:000000 100644 00000000 1605e959 A glibc-upstream-2.34-103.patch -:000000 100644 00000000 f577e344 A glibc-upstream-2.34-91.patch -:000000 100644 00000000 03a51c61 A glibc-upstream-2.34-92.patch -:000000 100644 00000000 e9adea4b A glibc-upstream-2.34-97.patch -:000000 100644 00000000 adbb1549 A glibc-upstream-2.34-98.patch -:000000 100644 00000000 7df75d8b A glibc-upstream-2.34-99.patch -:100644 100644 2677cb32 654c2d2d M glibc.spec +:000000 100644 0000000 3a90a47 A glibc-c-utf8-locale-3.patch +:000000 100644 0000000 8e9ec4c A glibc-c-utf8-locale-4.patch +:000000 100644 0000000 06144a4 A glibc-c-utf8-locale-5.patch +:000000 100644 0000000 d797f77 A glibc-upstream-2.34-100.patch +:000000 100644 0000000 b318a81 A glibc-upstream-2.34-101.patch +:000000 100644 0000000 928856e A glibc-upstream-2.34-102.patch +:000000 100644 0000000 1605e95 A glibc-upstream-2.34-103.patch +:000000 100644 0000000 f577e34 A glibc-upstream-2.34-91.patch +:000000 100644 0000000 03a51c6 A glibc-upstream-2.34-92.patch +:000000 100644 0000000 e9adea4 A glibc-upstream-2.34-97.patch +:000000 100644 0000000 adbb154 A glibc-upstream-2.34-98.patch +:000000 100644 0000000 7df75d8 A glibc-upstream-2.34-99.patch +:100644 100644 2677cb3 654c2d2 M glibc.spec commit db9712052c4cf36b26872423be29cb772d3bb85e Author: Florian Weimer @@ -5697,23 +5741,23 @@ CommitDate: Mon Jan 24 20:15:42 2022 +0100 Resolves: #2032279 Resolves: #2032276 -:000000 100644 00000000 15d3b629 A glibc-upstream-2.34-74.patch -:000000 100644 00000000 7fada184 A glibc-upstream-2.34-75.patch -:000000 100644 00000000 3d669c3a A glibc-upstream-2.34-76.patch -:000000 100644 00000000 752a81ae A glibc-upstream-2.34-77.patch -:000000 100644 00000000 cfd76f0b A glibc-upstream-2.34-78.patch -:000000 100644 00000000 84f34f8c A glibc-upstream-2.34-79.patch -:000000 100644 00000000 fec92e27 A glibc-upstream-2.34-80.patch -:000000 100644 00000000 3fcbbf48 A glibc-upstream-2.34-81.patch -:000000 100644 00000000 1f522aa4 A glibc-upstream-2.34-82.patch -:000000 100644 00000000 4a37c4da A glibc-upstream-2.34-83.patch -:000000 100644 00000000 e97805a3 A glibc-upstream-2.34-84.patch -:000000 100644 00000000 3ea12aa8 A glibc-upstream-2.34-85.patch -:000000 100644 00000000 1885d410 A glibc-upstream-2.34-86.patch -:000000 100644 00000000 a6965845 A glibc-upstream-2.34-87.patch -:000000 100644 00000000 d741c3c2 A glibc-upstream-2.34-88.patch -:000000 100644 00000000 37ddc35e A glibc-upstream-2.34-89.patch -:100644 100644 9fc6964a 2677cb32 M glibc.spec +:000000 100644 0000000 15d3b62 A glibc-upstream-2.34-74.patch +:000000 100644 0000000 7fada18 A glibc-upstream-2.34-75.patch +:000000 100644 0000000 3d669c3 A glibc-upstream-2.34-76.patch +:000000 100644 0000000 752a81a A glibc-upstream-2.34-77.patch +:000000 100644 0000000 cfd76f0 A glibc-upstream-2.34-78.patch +:000000 100644 0000000 84f34f8 A glibc-upstream-2.34-79.patch +:000000 100644 0000000 fec92e2 A glibc-upstream-2.34-80.patch +:000000 100644 0000000 3fcbbf4 A glibc-upstream-2.34-81.patch +:000000 100644 0000000 1f522aa A glibc-upstream-2.34-82.patch +:000000 100644 0000000 4a37c4d A glibc-upstream-2.34-83.patch +:000000 100644 0000000 e97805a A glibc-upstream-2.34-84.patch +:000000 100644 0000000 3ea12aa A glibc-upstream-2.34-85.patch +:000000 100644 0000000 1885d41 A glibc-upstream-2.34-86.patch +:000000 100644 0000000 a696584 A glibc-upstream-2.34-87.patch +:000000 100644 0000000 d741c3c A glibc-upstream-2.34-88.patch +:000000 100644 0000000 37ddc35 A glibc-upstream-2.34-89.patch +:100644 100644 9fc6964 2677cb3 M glibc.spec commit bdebdc5e8b68794af21458a176b698fd483b9977 Author: Florian Weimer @@ -5728,19 +5772,19 @@ CommitDate: Thu Jan 20 18:51:08 2022 +0100 Resolves: #2040657 -:000000 100644 00000000 4a25277d A glibc-rh2040657-1.patch -:000000 100644 00000000 cff581f3 A glibc-rh2040657-10.patch -:000000 100644 00000000 1ca34092 A glibc-rh2040657-11.patch -:000000 100644 00000000 592c08cb A glibc-rh2040657-12.patch -:000000 100644 00000000 02b89539 A glibc-rh2040657-2.patch -:000000 100644 00000000 5c635163 A glibc-rh2040657-3.patch -:000000 100644 00000000 c3765b9c A glibc-rh2040657-4.patch -:000000 100644 00000000 bf5343ec A glibc-rh2040657-5.patch -:000000 100644 00000000 15caf1d7 A glibc-rh2040657-6.patch -:000000 100644 00000000 1189326c A glibc-rh2040657-7.patch -:000000 100644 00000000 7eabbc46 A glibc-rh2040657-8.patch -:000000 100644 00000000 1908c6f9 A glibc-rh2040657-9.patch -:100644 100644 c0977196 9fc6964a M glibc.spec +:000000 100644 0000000 4a25277 A glibc-rh2040657-1.patch +:000000 100644 0000000 cff581f A glibc-rh2040657-10.patch +:000000 100644 0000000 1ca3409 A glibc-rh2040657-11.patch +:000000 100644 0000000 592c08c A glibc-rh2040657-12.patch +:000000 100644 0000000 02b8953 A glibc-rh2040657-2.patch +:000000 100644 0000000 5c63516 A glibc-rh2040657-3.patch +:000000 100644 0000000 c3765b9 A glibc-rh2040657-4.patch +:000000 100644 0000000 bf5343e A glibc-rh2040657-5.patch +:000000 100644 0000000 15caf1d A glibc-rh2040657-6.patch +:000000 100644 0000000 1189326 A glibc-rh2040657-7.patch +:000000 100644 0000000 7eabbc4 A glibc-rh2040657-8.patch +:000000 100644 0000000 1908c6f A glibc-rh2040657-9.patch +:100644 100644 c097719 9fc6964 M glibc.spec commit c77b926c9d21d1ab8df3e5d1d417a8bb2a5c2b1d Author: Florian Weimer @@ -5755,20 +5799,20 @@ CommitDate: Wed Jan 19 11:35:37 2022 +0100 Resolves: #2024347 -:000000 100644 00000000 1c18bfac A glibc-rh2024347-1.patch -:000000 100644 00000000 42855111 A glibc-rh2024347-10.patch -:000000 100644 00000000 3060a510 A glibc-rh2024347-11.patch -:000000 100644 00000000 02a9cea3 A glibc-rh2024347-12.patch -:000000 100644 00000000 f002a788 A glibc-rh2024347-13.patch -:000000 100644 00000000 71613f3e A glibc-rh2024347-2.patch -:000000 100644 00000000 08e30f7b A glibc-rh2024347-3.patch -:000000 100644 00000000 a49f626a A glibc-rh2024347-4.patch -:000000 100644 00000000 36b1db16 A glibc-rh2024347-5.patch -:000000 100644 00000000 4782cdf0 A glibc-rh2024347-6.patch -:000000 100644 00000000 b0d158b3 A glibc-rh2024347-7.patch -:000000 100644 00000000 1436fe10 A glibc-rh2024347-8.patch -:000000 100644 00000000 af25983f A glibc-rh2024347-9.patch -:100644 100644 00649b07 c0977196 M glibc.spec +:000000 100644 0000000 1c18bfa A glibc-rh2024347-1.patch +:000000 100644 0000000 4285511 A glibc-rh2024347-10.patch +:000000 100644 0000000 3060a51 A glibc-rh2024347-11.patch +:000000 100644 0000000 02a9cea A glibc-rh2024347-12.patch +:000000 100644 0000000 f002a78 A glibc-rh2024347-13.patch +:000000 100644 0000000 71613f3 A glibc-rh2024347-2.patch +:000000 100644 0000000 08e30f7 A glibc-rh2024347-3.patch +:000000 100644 0000000 a49f626 A glibc-rh2024347-4.patch +:000000 100644 0000000 36b1db1 A glibc-rh2024347-5.patch +:000000 100644 0000000 4782cdf A glibc-rh2024347-6.patch +:000000 100644 0000000 b0d158b A glibc-rh2024347-7.patch +:000000 100644 0000000 1436fe1 A glibc-rh2024347-8.patch +:000000 100644 0000000 af25983 A glibc-rh2024347-9.patch +:100644 100644 00649b0 c097719 M glibc.spec commit c2879fd933ab58aac876d85d988f06182d9ba167 Author: Florian Weimer @@ -5808,33 +5852,33 @@ CommitDate: Fri Jan 14 19:18:46 2022 +0100 Resolves: #2032647 Resolves: #2033649 -:000000 100644 00000000 ebc11b19 A glibc-rh2032647-1.patch -:000000 100644 00000000 4ac1d1a7 A glibc-rh2032647-2.patch -:000000 100644 00000000 789e6446 A glibc-rh2032647-3.patch -:000000 100644 00000000 1c415d46 A glibc-rh2032647-4.patch -:000000 100644 00000000 308d8316 A glibc-rh2032647-5.patch -:000000 100644 00000000 6dcaccd9 A glibc-rh2032647-6.patch -:000000 100644 00000000 fec14bf2 A glibc-upstream-2.34-54.patch -:000000 100644 00000000 97467050 A glibc-upstream-2.34-55.patch -:000000 100644 00000000 ee2ad63a A glibc-upstream-2.34-56.patch -:000000 100644 00000000 c8523f9b A glibc-upstream-2.34-57.patch -:000000 100644 00000000 d95112e4 A glibc-upstream-2.34-58.patch -:000000 100644 00000000 b0ea00c7 A glibc-upstream-2.34-59.patch -:000000 100644 00000000 60d27653 A glibc-upstream-2.34-60.patch -:000000 100644 00000000 82214de8 A glibc-upstream-2.34-61.patch -:000000 100644 00000000 656bcfbb A glibc-upstream-2.34-62.patch -:000000 100644 00000000 e0944e16 A glibc-upstream-2.34-63.patch -:000000 100644 00000000 54ae9608 A glibc-upstream-2.34-64.patch -:000000 100644 00000000 6644c9df A glibc-upstream-2.34-65.patch -:000000 100644 00000000 96191001 A glibc-upstream-2.34-66.patch -:000000 100644 00000000 2ee0841a A glibc-upstream-2.34-67.patch -:000000 100644 00000000 935e4f0d A glibc-upstream-2.34-68.patch -:000000 100644 00000000 13462634 A glibc-upstream-2.34-69.patch -:000000 100644 00000000 b83ae035 A glibc-upstream-2.34-70.patch -:000000 100644 00000000 4e534ed4 A glibc-upstream-2.34-71.patch -:000000 100644 00000000 548e54e4 A glibc-upstream-2.34-72.patch -:000000 100644 00000000 50816741 A glibc-upstream-2.34-73.patch -:100644 100644 110f94eb 00649b07 M glibc.spec +:000000 100644 0000000 ebc11b1 A glibc-rh2032647-1.patch +:000000 100644 0000000 4ac1d1a A glibc-rh2032647-2.patch +:000000 100644 0000000 789e644 A glibc-rh2032647-3.patch +:000000 100644 0000000 1c415d4 A glibc-rh2032647-4.patch +:000000 100644 0000000 308d831 A glibc-rh2032647-5.patch +:000000 100644 0000000 6dcaccd A glibc-rh2032647-6.patch +:000000 100644 0000000 fec14bf A glibc-upstream-2.34-54.patch +:000000 100644 0000000 9746705 A glibc-upstream-2.34-55.patch +:000000 100644 0000000 ee2ad63 A glibc-upstream-2.34-56.patch +:000000 100644 0000000 c8523f9 A glibc-upstream-2.34-57.patch +:000000 100644 0000000 d95112e A glibc-upstream-2.34-58.patch +:000000 100644 0000000 b0ea00c A glibc-upstream-2.34-59.patch +:000000 100644 0000000 60d2765 A glibc-upstream-2.34-60.patch +:000000 100644 0000000 82214de A glibc-upstream-2.34-61.patch +:000000 100644 0000000 656bcfb A glibc-upstream-2.34-62.patch +:000000 100644 0000000 e0944e1 A glibc-upstream-2.34-63.patch +:000000 100644 0000000 54ae960 A glibc-upstream-2.34-64.patch +:000000 100644 0000000 6644c9d A glibc-upstream-2.34-65.patch +:000000 100644 0000000 9619100 A glibc-upstream-2.34-66.patch +:000000 100644 0000000 2ee0841 A glibc-upstream-2.34-67.patch +:000000 100644 0000000 935e4f0 A glibc-upstream-2.34-68.patch +:000000 100644 0000000 1346263 A glibc-upstream-2.34-69.patch +:000000 100644 0000000 b83ae03 A glibc-upstream-2.34-70.patch +:000000 100644 0000000 4e534ed A glibc-upstream-2.34-71.patch +:000000 100644 0000000 548e54e A glibc-upstream-2.34-72.patch +:000000 100644 0000000 5081674 A glibc-upstream-2.34-73.patch +:100644 100644 110f94e 00649b0 M glibc.spec commit 8e6a1ec6a426703d60910f5b271d87e6adf2f6ce Author: Siddhesh Poyarekar @@ -5859,12 +5903,12 @@ CommitDate: Tue Dec 14 13:38:04 2021 +0100 Resolves: #1988382 -:000000 100644 00000000 37c3774a A glibc-rh1988382.patch -:000000 100644 00000000 91a274f3 A glibc-upstream-2.34-50.patch -:000000 100644 00000000 2b179beb A glibc-upstream-2.34-51.patch -:000000 100644 00000000 10d93937 A glibc-upstream-2.34-52.patch -:000000 100644 00000000 9e3453a8 A glibc-upstream-2.34-53.patch -:100644 100644 21e2e41d 110f94eb M glibc.spec +:000000 100644 0000000 37c3774 A glibc-rh1988382.patch +:000000 100644 0000000 91a274f A glibc-upstream-2.34-50.patch +:000000 100644 0000000 2b179be A glibc-upstream-2.34-51.patch +:000000 100644 0000000 10d9393 A glibc-upstream-2.34-52.patch +:000000 100644 0000000 9e3453a A glibc-upstream-2.34-53.patch +:100644 100644 21e2e41 110f94e M glibc.spec commit e5d1ba4c527f5ce3c5f171c72f65235e977d1205 Author: Florian Weimer @@ -5877,8 +5921,8 @@ CommitDate: Mon Dec 13 18:31:11 2021 +0100 Resolves: #2029410 Reviewed-by: Carlos O'Donell -:000000 100644 00000000 256380ac A glibc-rh2029410.patch -:100644 100644 f266a185 21e2e41d M glibc.spec +:000000 100644 0000000 256380a A glibc-rh2029410.patch +:100644 100644 f266a18 21e2e41 M glibc.spec commit ea8b4d5547bc8c9f993e9063589ddecd786e6e84 Author: Florian Weimer @@ -5890,10 +5934,10 @@ CommitDate: Fri Dec 10 22:42:46 2021 +0100 Resolves: #2023422 -:000000 100644 00000000 c3ba08eb A glibc-rh2023422-1.patch -:000000 100644 00000000 c6d87dfb A glibc-rh2023422-2.patch -:000000 100644 00000000 36f89491 A glibc-rh2023422-3.patch -:100644 100644 cbf26de7 f266a185 M glibc.spec +:000000 100644 0000000 c3ba08e A glibc-rh2023422-1.patch +:000000 100644 0000000 c6d87df A glibc-rh2023422-2.patch +:000000 100644 0000000 36f8949 A glibc-rh2023422-3.patch +:100644 100644 cbf26de f266a18 M glibc.spec commit 08427423f5971a79879e22b660a743d79351a292 Author: Florian Weimer @@ -5905,8 +5949,8 @@ CommitDate: Tue Dec 7 17:48:00 2021 +0100 Resolves: #2027789 -:000000 100644 00000000 798d4963 A glibc-rh2027789.patch -:100644 100644 8d8b27b3 cbf26de7 M glibc.spec +:000000 100644 0000000 798d496 A glibc-rh2027789.patch +:100644 100644 8d8b27b cbf26de M glibc.spec commit e1b9a6cb31a01f4661ce0e214b13fc8558e75501 Author: Florian Weimer @@ -5920,14 +5964,14 @@ CommitDate: Fri Dec 3 18:58:41 2021 +0100 Resolves: #2020597 Resolves: #2007339 -:100644 100644 aafa7419 40835d25 M glibc-cs-path.patch -:000000 100644 00000000 547da517 A glibc-upstream-2.34-44.patch -:000000 100644 00000000 b2c69d52 A glibc-upstream-2.34-45.patch -:000000 100644 00000000 fa16e481 A glibc-upstream-2.34-46.patch -:000000 100644 00000000 f23193a2 A glibc-upstream-2.34-47.patch -:000000 100644 00000000 31f08dba A glibc-upstream-2.34-48.patch -:000000 100644 00000000 e4cd8272 A glibc-upstream-2.34-49.patch -:100644 100644 0640f34f 8d8b27b3 M glibc.spec +:100644 100644 aafa741 40835d2 M glibc-cs-path.patch +:000000 100644 0000000 547da51 A glibc-upstream-2.34-44.patch +:000000 100644 0000000 b2c69d5 A glibc-upstream-2.34-45.patch +:000000 100644 0000000 fa16e48 A glibc-upstream-2.34-46.patch +:000000 100644 0000000 f23193a A glibc-upstream-2.34-47.patch +:000000 100644 0000000 31f08db A glibc-upstream-2.34-48.patch +:000000 100644 0000000 e4cd827 A glibc-upstream-2.34-49.patch +:100644 100644 0640f34 8d8b27b M glibc.spec commit faf38262bfb8c98798f8891a45bb90f534764d2f Author: Florian Weimer @@ -5939,17 +5983,17 @@ CommitDate: Wed Nov 3 13:06:59 2021 +0100 Resolves: #2012169 -:000000 100644 00000000 1828ac7e A glibc-upstream-2.34-34.patch -:000000 100644 00000000 cdee1afc A glibc-upstream-2.34-35.patch -:000000 100644 00000000 76a58446 A glibc-upstream-2.34-36.patch -:000000 100644 00000000 5a7eea75 A glibc-upstream-2.34-37.patch -:000000 100644 00000000 7cdb50c2 A glibc-upstream-2.34-38.patch -:000000 100644 00000000 9b0b380c A glibc-upstream-2.34-39.patch -:000000 100644 00000000 40655b68 A glibc-upstream-2.34-40.patch -:000000 100644 00000000 770fa6c0 A glibc-upstream-2.34-41.patch -:000000 100644 00000000 51bc4fb2 A glibc-upstream-2.34-42.patch -:000000 100644 00000000 9c5ea977 A glibc-upstream-2.34-43.patch -:100644 100644 ca9a03ab 0640f34f M glibc.spec +:000000 100644 0000000 1828ac7 A glibc-upstream-2.34-34.patch +:000000 100644 0000000 cdee1af A glibc-upstream-2.34-35.patch +:000000 100644 0000000 76a5844 A glibc-upstream-2.34-36.patch +:000000 100644 0000000 5a7eea7 A glibc-upstream-2.34-37.patch +:000000 100644 0000000 7cdb50c A glibc-upstream-2.34-38.patch +:000000 100644 0000000 9b0b380 A glibc-upstream-2.34-39.patch +:000000 100644 0000000 40655b6 A glibc-upstream-2.34-40.patch +:000000 100644 0000000 770fa6c A glibc-upstream-2.34-41.patch +:000000 100644 0000000 51bc4fb A glibc-upstream-2.34-42.patch +:000000 100644 0000000 9c5ea97 A glibc-upstream-2.34-43.patch +:100644 100644 ca9a03a 0640f34 M glibc.spec commit 194c2881ac57b9873a084eb2d989ea23e4d9654d Author: Martin Cermak @@ -5965,7 +6009,7 @@ CommitDate: Tue Oct 5 09:37:25 2021 +0000 The change is documented here: https://wiki.test.redhat.com/BaseOs/Tools/RHELKernelRebuildsInSideTag?action=diff&rev2=10&rev1=9 -:100644 100644 b6a718a4 14d08c0a M gating.yaml +:100644 100644 b6a718a 14d08c0 M gating.yaml commit 1146060914edb400e662dbf2357f71b3b0b17446 Author: Florian Weimer @@ -5977,17 +6021,17 @@ CommitDate: Fri Oct 1 20:15:03 2021 +0200 Related: #2003135 -:100644 000000 528156a2 00000000 D glibc-rh1992702-1.patch -:100644 000000 40fe5562 00000000 D glibc-rh1992702-2.patch -:100644 000000 e9448740 00000000 D glibc-rh1992702-3.patch -:000000 100644 00000000 e166aa2f A glibc-upstream-2.34-27.patch -:000000 100644 00000000 7becfe9a A glibc-upstream-2.34-28.patch -:000000 100644 00000000 2a35ad6f A glibc-upstream-2.34-29.patch -:000000 100644 00000000 7255a987 A glibc-upstream-2.34-30.patch -:000000 100644 00000000 cb048439 A glibc-upstream-2.34-31.patch -:000000 100644 00000000 d5fddc0e A glibc-upstream-2.34-32.patch -:000000 100644 00000000 f7f9ca99 A glibc-upstream-2.34-33.patch -:100644 100644 9937dd85 ca9a03ab M glibc.spec +:100644 000000 528156a 0000000 D glibc-rh1992702-1.patch +:100644 000000 40fe556 0000000 D glibc-rh1992702-2.patch +:100644 000000 e944874 0000000 D glibc-rh1992702-3.patch +:000000 100644 0000000 e166aa2 A glibc-upstream-2.34-27.patch +:000000 100644 0000000 7becfe9 A glibc-upstream-2.34-28.patch +:000000 100644 0000000 2a35ad6 A glibc-upstream-2.34-29.patch +:000000 100644 0000000 7255a98 A glibc-upstream-2.34-30.patch +:000000 100644 0000000 cb04843 A glibc-upstream-2.34-31.patch +:000000 100644 0000000 d5fddc0 A glibc-upstream-2.34-32.patch +:000000 100644 0000000 f7f9ca9 A glibc-upstream-2.34-33.patch +:100644 100644 9937dd8 ca9a03a M glibc.spec commit 026f78f16f9ad6db2cb97a03423d937e52926149 Author: Florian Weimer @@ -5999,13 +6043,13 @@ CommitDate: Thu Sep 23 12:26:08 2021 +0200 Related: #2003135 -:000000 100644 00000000 16ddaef1 A glibc-upstream-2.34-21.patch -:000000 100644 00000000 bdcd19c3 A glibc-upstream-2.34-22.patch -:000000 100644 00000000 67d7d88b A glibc-upstream-2.34-23.patch -:000000 100644 00000000 4c4a4c04 A glibc-upstream-2.34-24.patch -:000000 100644 00000000 8899335a A glibc-upstream-2.34-25.patch -:000000 100644 00000000 43668087 A glibc-upstream-2.34-26.patch -:100644 100644 b3f203cd 9937dd85 M glibc.spec +:000000 100644 0000000 16ddaef A glibc-upstream-2.34-21.patch +:000000 100644 0000000 bdcd19c A glibc-upstream-2.34-22.patch +:000000 100644 0000000 67d7d88 A glibc-upstream-2.34-23.patch +:000000 100644 0000000 4c4a4c0 A glibc-upstream-2.34-24.patch +:000000 100644 0000000 8899335 A glibc-upstream-2.34-25.patch +:000000 100644 0000000 4366808 A glibc-upstream-2.34-26.patch +:100644 100644 b3f203c 9937dd8 M glibc.spec commit a0b7ce8f056ed3fa33b38727a2de538d6739f127 Author: Florian Weimer @@ -6019,7 +6063,7 @@ CommitDate: Thu Sep 16 11:03:04 2021 +0200 Related: #2003135 -:100644 100644 9be35967 b6a718a4 M gating.yaml +:100644 100644 9be3596 b6a718a M gating.yaml commit 4224022c5af9c3f4eb60fc2775cc0391329cc74c Author: Florian Weimer @@ -6031,34 +6075,34 @@ CommitDate: Wed Sep 15 18:38:33 2021 +0200 Resolves: #2003135 -:100644 100644 b6a718a4 9be35967 M gating.yaml -:000000 100644 00000000 3b800647 A glibc-c-utf8-locale-1.patch -:000000 100644 00000000 7064b8e8 A glibc-c-utf8-locale-2.patch -:100644 000000 a4cf357a 00000000 D glibc-c-utf8-locale.patch -:000000 100644 00000000 528156a2 A glibc-rh1992702-1.patch -:000000 100644 00000000 40fe5562 A glibc-rh1992702-2.patch -:000000 100644 00000000 e9448740 A glibc-rh1992702-3.patch -:000000 100644 00000000 c1613180 A glibc-upstream-2.34-1.patch -:000000 100644 00000000 023ea306 A glibc-upstream-2.34-10.patch -:000000 100644 00000000 47849fb7 A glibc-upstream-2.34-11.patch -:000000 100644 00000000 ef0ec20f A glibc-upstream-2.34-12.patch -:000000 100644 00000000 8f0acc67 A glibc-upstream-2.34-13.patch -:000000 100644 00000000 9d9c1c52 A glibc-upstream-2.34-14.patch -:000000 100644 00000000 a2275fbb A glibc-upstream-2.34-15.patch -:000000 100644 00000000 3d8a5689 A glibc-upstream-2.34-16.patch -:000000 100644 00000000 ca37faa3 A glibc-upstream-2.34-17.patch -:000000 100644 00000000 017225ad A glibc-upstream-2.34-18.patch -:000000 100644 00000000 b0f0b9a6 A glibc-upstream-2.34-19.patch -:000000 100644 00000000 fbddab35 A glibc-upstream-2.34-2.patch -:000000 100644 00000000 f4b1aeda A glibc-upstream-2.34-20.patch -:000000 100644 00000000 136cbf2b A glibc-upstream-2.34-3.patch -:000000 100644 00000000 12ce5e62 A glibc-upstream-2.34-4.patch -:000000 100644 00000000 fe8b8539 A glibc-upstream-2.34-5.patch -:000000 100644 00000000 5e6a43dd A glibc-upstream-2.34-6.patch -:000000 100644 00000000 c49b837b A glibc-upstream-2.34-7.patch -:000000 100644 00000000 b08f0ceb A glibc-upstream-2.34-8.patch -:000000 100644 00000000 b22636db A glibc-upstream-2.34-9.patch -:100644 100644 2f31c435 b3f203cd M glibc.spec +:100644 100644 b6a718a 9be3596 M gating.yaml +:000000 100644 0000000 3b80064 A glibc-c-utf8-locale-1.patch +:000000 100644 0000000 7064b8e A glibc-c-utf8-locale-2.patch +:100644 000000 a4cf357 0000000 D glibc-c-utf8-locale.patch +:000000 100644 0000000 528156a A glibc-rh1992702-1.patch +:000000 100644 0000000 40fe556 A glibc-rh1992702-2.patch +:000000 100644 0000000 e944874 A glibc-rh1992702-3.patch +:000000 100644 0000000 c161318 A glibc-upstream-2.34-1.patch +:000000 100644 0000000 023ea30 A glibc-upstream-2.34-10.patch +:000000 100644 0000000 47849fb A glibc-upstream-2.34-11.patch +:000000 100644 0000000 ef0ec20 A glibc-upstream-2.34-12.patch +:000000 100644 0000000 8f0acc6 A glibc-upstream-2.34-13.patch +:000000 100644 0000000 9d9c1c5 A glibc-upstream-2.34-14.patch +:000000 100644 0000000 a2275fb A glibc-upstream-2.34-15.patch +:000000 100644 0000000 3d8a568 A glibc-upstream-2.34-16.patch +:000000 100644 0000000 ca37faa A glibc-upstream-2.34-17.patch +:000000 100644 0000000 017225a A glibc-upstream-2.34-18.patch +:000000 100644 0000000 b0f0b9a A glibc-upstream-2.34-19.patch +:000000 100644 0000000 fbddab3 A glibc-upstream-2.34-2.patch +:000000 100644 0000000 f4b1aed A glibc-upstream-2.34-20.patch +:000000 100644 0000000 136cbf2 A glibc-upstream-2.34-3.patch +:000000 100644 0000000 12ce5e6 A glibc-upstream-2.34-4.patch +:000000 100644 0000000 fe8b853 A glibc-upstream-2.34-5.patch +:000000 100644 0000000 5e6a43d A glibc-upstream-2.34-6.patch +:000000 100644 0000000 c49b837 A glibc-upstream-2.34-7.patch +:000000 100644 0000000 b08f0ce A glibc-upstream-2.34-8.patch +:000000 100644 0000000 b22636d A glibc-upstream-2.34-9.patch +:100644 100644 2f31c43 b3f203c M glibc.spec commit 79534463326e79d3412c7b4d7b4f0ff24c54790a Author: Martin Cermak @@ -6068,7 +6112,7 @@ CommitDate: Tue Aug 17 13:54:48 2021 +0200 CI Gating: Set up kernel rebuild as a mandatory gating test -:100644 100644 9be35967 b6a718a4 M gating.yaml +:100644 100644 9be3596 b6a718a M gating.yaml commit 667512af99353b5bcc7a95a6c46d2bab5b657434 Author: Mohan Boddu @@ -6081,7 +6125,7 @@ CommitDate: Mon Aug 9 20:10:54 2021 +0000 Related: rhbz#1991688 Signed-off-by: Mohan Boddu -:100644 100644 ff5457cc 2f31c435 M glibc.spec +:100644 100644 ff5457c 2f31c43 M glibc.spec commit de873f1d0a235dd91c7dc26b065b8a44561ff10c Author: Florian Weimer @@ -6093,8 +6137,8 @@ CommitDate: Mon Aug 2 17:46:20 2021 +0200 Resolves: #1988950 -:100644 100644 3a627e0f ff5457cc M glibc.spec -:100644 100644 21eb817a e59ed2f3 M sources +:100644 100644 3a627e0 ff5457c M glibc.spec +:100644 100644 21eb817 e59ed2f M sources commit ac0c960904e13f2ca2557471134b33bee7bf6ae8 Author: Florian Weimer @@ -6106,10 +6150,10 @@ CommitDate: Thu Jul 29 18:46:32 2021 +0200 Related: #1983628 -:100644 100644 03d5983a a4cf357a M glibc-c-utf8-locale.patch -:100644 000000 9b90a223 00000000 D glibc-c-utf8-strcmp_collation.patch -:100644 100644 ec22ca46 3a627e0f M glibc.spec -:100644 100644 97bee88b 21eb817a M sources +:100644 100644 03d5983 a4cf357 M glibc-c-utf8-locale.patch +:100644 000000 9b90a22 0000000 D glibc-c-utf8-strcmp_collation.patch +:100644 100644 ec22ca4 3a627e0 M glibc.spec +:100644 100644 97bee88 21eb817 M sources commit 0bc856b55bab5ccf3a781ce6f8bd4aaa1ff1f86c Author: Florian Weimer @@ -6121,10 +6165,10 @@ CommitDate: Mon Jul 26 09:33:11 2021 +0200 Related: #1983628 -:100644 100644 a4cf357a 03d5983a M glibc-c-utf8-locale.patch -:000000 100644 00000000 9b90a223 A glibc-c-utf8-strcmp_collation.patch -:100644 100644 17aed54c ec22ca46 M glibc.spec -:100644 100644 7e6ef9c3 97bee88b M sources +:100644 100644 a4cf357 03d5983 M glibc-c-utf8-locale.patch +:000000 100644 0000000 9b90a22 A glibc-c-utf8-strcmp_collation.patch +:100644 100644 17aed54 ec22ca4 M glibc.spec +:100644 100644 7e6ef9c 97bee88 M sources commit 39f6d21b861925aa0c0a32e8fffba334d717e61c Author: Florian Weimer @@ -6136,8 +6180,8 @@ CommitDate: Sat Jul 24 17:27:29 2021 +0200 Related: #1983628 -:100644 100644 01dc5a26 17aed54c M glibc.spec -:100644 100644 a07b3f7b 7e6ef9c3 M sources +:100644 100644 01dc5a2 17aed54 M glibc.spec +:100644 100644 a07b3f7 7e6ef9c M sources commit e59f39ed10c40348b958b30e850eb76f2b3e0a57 Author: Florian Weimer @@ -6149,7 +6193,7 @@ CommitDate: Sat Jul 24 12:27:13 2021 +0200 Related: #1983628 -:100644 100644 2022d4e2 01dc5a26 M glibc.spec +:100644 100644 2022d4e 01dc5a2 M glibc.spec commit 5cac529b7b3274a54d3176cf470ba0b07245d76a Author: Florian Weimer @@ -6161,7 +6205,7 @@ CommitDate: Fri Jul 23 11:56:25 2021 +0200 Related: #1983628 -:100644 100644 1c1faccd 2022d4e2 M glibc.spec +:100644 100644 1c1facc 2022d4e M glibc.spec commit 452fef592cd691853ecc05f21d1806e2162d1ae0 Author: Florian Weimer @@ -6173,7 +6217,7 @@ CommitDate: Fri Jul 23 11:49:48 2021 +0200 Related: #1983628 -:100644 100644 43c35af6 a07b3f7b M sources +:100644 100644 43c35af a07b3f7 M sources commit 078a8dfb44f674b31033fa5ab32934c1ef92c54c Author: Florian Weimer @@ -6185,8 +6229,8 @@ CommitDate: Wed Jul 21 14:23:13 2021 +0200 Related: #1983628 -:100644 100644 3a865058 1c1faccd M glibc.spec -:100644 100644 5f03c726 43c35af6 M sources +:100644 100644 3a86505 1c1facc M glibc.spec +:100644 100644 5f03c72 43c35af M sources commit 52fdc3efce876950910c22c8c0fd24382e586c61 Author: Florian Weimer @@ -6198,8 +6242,8 @@ CommitDate: Tue Jul 13 16:50:32 2021 +0200 Resolves: #1980039 -:100644 100644 88aff453 3a865058 M glibc.spec -:100644 100644 56ace92f 5f03c726 M sources +:100644 100644 88aff45 3a86505 M glibc.spec +:100644 100644 56ace92 5f03c72 M sources commit 6f82385f43709dfd32b46b16a87a89f6539bbf8b Author: Florian Weimer @@ -6211,8 +6255,8 @@ CommitDate: Thu Jul 8 05:41:00 2021 +0200 Resolves: #1980039 -:100644 100644 a894b21e 88aff453 M glibc.spec -:100644 100644 ebd258df 56ace92f M sources +:100644 100644 a894b21 88aff45 M glibc.spec +:100644 100644 ebd258d 56ace92 M sources commit 35622a8cd474f26deb9206e27d204b1cb3c43012 Author: Florian Weimer @@ -6226,16 +6270,16 @@ CommitDate: Thu Jul 1 08:32:08 2021 +0200 Resolves: #1958224 -:100644 100644 ea34bd3c 9be35967 M gating.yaml -:100644 000000 4b18758d 00000000 D glibc-iconvconfig-corruption.patch -:100644 000000 0fdc8c42 00000000 D glibc-libthread_db-dynsym.patch -:100644 000000 767b6a2b 00000000 D glibc-nosymlink-1.patch -:100644 000000 92c330ba 00000000 D glibc-nosymlink-2.patch -:100644 000000 07d66251 00000000 D glibc-nosymlink-3.patch -:100644 000000 7a292f02 00000000 D glibc-nosymlink-4.patch -:100644 100644 7f0ff386 a894b21e M glibc.spec -:100644 100644 661427b2 ebd258df M sources -:100644 100644 8c42c9d3 6a558df9 M wrap-find-debuginfo.sh +:100644 100644 ea34bd3 9be3596 M gating.yaml +:100644 000000 4b18758 0000000 D glibc-iconvconfig-corruption.patch +:100644 000000 0fdc8c4 0000000 D glibc-libthread_db-dynsym.patch +:100644 000000 767b6a2 0000000 D glibc-nosymlink-1.patch +:100644 000000 92c330b 0000000 D glibc-nosymlink-2.patch +:100644 000000 07d6625 0000000 D glibc-nosymlink-3.patch +:100644 000000 7a292f0 0000000 D glibc-nosymlink-4.patch +:100644 100644 7f0ff38 a894b21 M glibc.spec +:100644 100644 661427b ebd258d M sources +:100644 100644 8c42c9d 6a558df M wrap-find-debuginfo.sh commit fe2bb6712cf4e35ea1af3aab07e92053a0adee31 Author: Florian Weimer @@ -6249,12 +6293,12 @@ CommitDate: Sun Jun 27 21:25:40 2021 +0200 Resolves: #1958224 -:000000 100644 00000000 4b18758d A glibc-iconvconfig-corruption.patch -:100644 100644 76080d46 07d66251 M glibc-nosymlink-3.patch -:000000 100644 00000000 fddfd91f A glibc.attr -:000000 100644 00000000 9fb7f768 A glibc.req.in -:100644 100644 9aaf4297 7f0ff386 M glibc.spec -:100644 100644 f70d44fd 661427b2 M sources +:000000 100644 0000000 4b18758 A glibc-iconvconfig-corruption.patch +:100644 100644 76080d4 07d6625 M glibc-nosymlink-3.patch +:000000 100644 0000000 fddfd91 A glibc.attr +:000000 100644 0000000 9fb7f76 A glibc.req.in +:100644 100644 9aaf429 7f0ff38 M glibc.spec +:100644 100644 f70d44f 661427b M sources commit a4c56122fa1b97d165556a3b2fe82a5f74c8dec8 Author: Florian Weimer @@ -6274,62 +6318,62 @@ CommitDate: Tue Jun 22 20:28:13 2021 +0200 Resolves: #1958224 Resolves: #1966471 -:100644 100644 00fddaf2 2afbfc5c M ChangeLog.old -:100644 000000 808c3964 00000000 D glibc-cpu-check-1.patch -:100644 000000 346f414b 00000000 D glibc-cpu-check-2.patch -:100644 000000 9e0bc882 00000000 D glibc-cpu-check-3.patch -:000000 100644 00000000 0fdc8c42 A glibc-libthread_db-dynsym.patch -:000000 100644 00000000 767b6a2b A glibc-nosymlink-1.patch -:000000 100644 00000000 92c330ba A glibc-nosymlink-2.patch -:000000 100644 00000000 76080d46 A glibc-nosymlink-3.patch -:000000 100644 00000000 7a292f02 A glibc-nosymlink-4.patch -:100644 000000 e909aa19 00000000 D glibc-rh697421.patch -:100644 000000 61529268 00000000 D glibc-rh819430.patch -:100644 000000 eca0f857 00000000 D glibc-upstream-2.33-1.patch -:100644 000000 deb97fe7 00000000 D glibc-upstream-2.33-10.patch -:100644 000000 9d2a6612 00000000 D glibc-upstream-2.33-11.patch -:100644 000000 f249efe6 00000000 D glibc-upstream-2.33-12.patch -:100644 000000 98eca5e1 00000000 D glibc-upstream-2.33-13.patch -:100644 000000 1f7a7cfa 00000000 D glibc-upstream-2.33-14.patch -:100644 000000 a527e023 00000000 D glibc-upstream-2.33-15.patch -:100644 000000 8b50d66b 00000000 D glibc-upstream-2.33-16.patch -:100644 000000 96a29742 00000000 D glibc-upstream-2.33-17.patch -:100644 000000 4318bad9 00000000 D glibc-upstream-2.33-18.patch -:100644 000000 8d225815 00000000 D glibc-upstream-2.33-19.patch -:100644 000000 cab93f38 00000000 D glibc-upstream-2.33-2.patch -:100644 000000 3916b39f 00000000 D glibc-upstream-2.33-20.patch -:100644 000000 456b7589 00000000 D glibc-upstream-2.33-21.patch -:100644 000000 285facbe 00000000 D glibc-upstream-2.33-22.patch -:100644 000000 b0075459 00000000 D glibc-upstream-2.33-23.patch -:100644 000000 1dcf358f 00000000 D glibc-upstream-2.33-24.patch -:100644 000000 da2f43e9 00000000 D glibc-upstream-2.33-25.patch -:100644 000000 2ddd087e 00000000 D glibc-upstream-2.33-26.patch -:100644 000000 315e0eea 00000000 D glibc-upstream-2.33-27.patch -:100644 000000 9f3be1d3 00000000 D glibc-upstream-2.33-28.patch -:100644 000000 d885b104 00000000 D glibc-upstream-2.33-29.patch -:100644 000000 c596a9c7 00000000 D glibc-upstream-2.33-3.patch -:100644 000000 7dbba0c1 00000000 D glibc-upstream-2.33-30.patch -:100644 000000 0e081b07 00000000 D glibc-upstream-2.33-31.patch -:100644 000000 57e83bca 00000000 D glibc-upstream-2.33-32.patch -:100644 000000 25272a6d 00000000 D glibc-upstream-2.33-33.patch -:100644 000000 aded9cdb 00000000 D glibc-upstream-2.33-34.patch -:100644 000000 7a397502 00000000 D glibc-upstream-2.33-35.patch -:100644 000000 2881a46b 00000000 D glibc-upstream-2.33-36.patch -:100644 000000 66760cc9 00000000 D glibc-upstream-2.33-37.patch -:100644 000000 75114b30 00000000 D glibc-upstream-2.33-38.patch -:100644 000000 edea939c 00000000 D glibc-upstream-2.33-39.patch -:100644 000000 602a7a75 00000000 D glibc-upstream-2.33-4.patch -:100644 000000 2652c883 00000000 D glibc-upstream-2.33-40.patch -:100644 000000 e185b3bf 00000000 D glibc-upstream-2.33-41.patch -:100644 000000 6020f1b4 00000000 D glibc-upstream-2.33-5.patch -:100644 000000 29b65b2e 00000000 D glibc-upstream-2.33-6.patch -:100644 000000 990c6eb3 00000000 D glibc-upstream-2.33-7.patch -:100644 000000 51054cb0 00000000 D glibc-upstream-2.33-8.patch -:100644 000000 73fa1d35 00000000 D glibc-upstream-2.33-9.patch -:100644 100644 dc5a5bff 9aaf4297 M glibc.spec -:100644 100644 06d649ea f70d44fd M sources -:100644 000000 10ec35e2 00000000 D template.patch -:100644 100644 5ace7e6d 8c42c9d3 M wrap-find-debuginfo.sh +:100644 100644 00fddaf 2afbfc5 M ChangeLog.old +:100644 000000 808c396 0000000 D glibc-cpu-check-1.patch +:100644 000000 346f414 0000000 D glibc-cpu-check-2.patch +:100644 000000 9e0bc88 0000000 D glibc-cpu-check-3.patch +:000000 100644 0000000 0fdc8c4 A glibc-libthread_db-dynsym.patch +:000000 100644 0000000 767b6a2 A glibc-nosymlink-1.patch +:000000 100644 0000000 92c330b A glibc-nosymlink-2.patch +:000000 100644 0000000 76080d4 A glibc-nosymlink-3.patch +:000000 100644 0000000 7a292f0 A glibc-nosymlink-4.patch +:100644 000000 e909aa1 0000000 D glibc-rh697421.patch +:100644 000000 6152926 0000000 D glibc-rh819430.patch +:100644 000000 eca0f85 0000000 D glibc-upstream-2.33-1.patch +:100644 000000 deb97fe 0000000 D glibc-upstream-2.33-10.patch +:100644 000000 9d2a661 0000000 D glibc-upstream-2.33-11.patch +:100644 000000 f249efe 0000000 D glibc-upstream-2.33-12.patch +:100644 000000 98eca5e 0000000 D glibc-upstream-2.33-13.patch +:100644 000000 1f7a7cf 0000000 D glibc-upstream-2.33-14.patch +:100644 000000 a527e02 0000000 D glibc-upstream-2.33-15.patch +:100644 000000 8b50d66 0000000 D glibc-upstream-2.33-16.patch +:100644 000000 96a2974 0000000 D glibc-upstream-2.33-17.patch +:100644 000000 4318bad 0000000 D glibc-upstream-2.33-18.patch +:100644 000000 8d22581 0000000 D glibc-upstream-2.33-19.patch +:100644 000000 cab93f3 0000000 D glibc-upstream-2.33-2.patch +:100644 000000 3916b39 0000000 D glibc-upstream-2.33-20.patch +:100644 000000 456b758 0000000 D glibc-upstream-2.33-21.patch +:100644 000000 285facb 0000000 D glibc-upstream-2.33-22.patch +:100644 000000 b007545 0000000 D glibc-upstream-2.33-23.patch +:100644 000000 1dcf358 0000000 D glibc-upstream-2.33-24.patch +:100644 000000 da2f43e 0000000 D glibc-upstream-2.33-25.patch +:100644 000000 2ddd087 0000000 D glibc-upstream-2.33-26.patch +:100644 000000 315e0ee 0000000 D glibc-upstream-2.33-27.patch +:100644 000000 9f3be1d 0000000 D glibc-upstream-2.33-28.patch +:100644 000000 d885b10 0000000 D glibc-upstream-2.33-29.patch +:100644 000000 c596a9c 0000000 D glibc-upstream-2.33-3.patch +:100644 000000 7dbba0c 0000000 D glibc-upstream-2.33-30.patch +:100644 000000 0e081b0 0000000 D glibc-upstream-2.33-31.patch +:100644 000000 57e83bc 0000000 D glibc-upstream-2.33-32.patch +:100644 000000 25272a6 0000000 D glibc-upstream-2.33-33.patch +:100644 000000 aded9cd 0000000 D glibc-upstream-2.33-34.patch +:100644 000000 7a39750 0000000 D glibc-upstream-2.33-35.patch +:100644 000000 2881a46 0000000 D glibc-upstream-2.33-36.patch +:100644 000000 66760cc 0000000 D glibc-upstream-2.33-37.patch +:100644 000000 75114b3 0000000 D glibc-upstream-2.33-38.patch +:100644 000000 edea939 0000000 D glibc-upstream-2.33-39.patch +:100644 000000 602a7a7 0000000 D glibc-upstream-2.33-4.patch +:100644 000000 2652c88 0000000 D glibc-upstream-2.33-40.patch +:100644 000000 e185b3b 0000000 D glibc-upstream-2.33-41.patch +:100644 000000 6020f1b 0000000 D glibc-upstream-2.33-5.patch +:100644 000000 29b65b2 0000000 D glibc-upstream-2.33-6.patch +:100644 000000 990c6eb 0000000 D glibc-upstream-2.33-7.patch +:100644 000000 51054cb 0000000 D glibc-upstream-2.33-8.patch +:100644 000000 73fa1d3 0000000 D glibc-upstream-2.33-9.patch +:100644 100644 dc5a5bf 9aaf429 M glibc.spec +:100644 100644 06d649e f70d44f M sources +:100644 000000 10ec35e 0000000 D template.patch +:100644 100644 5ace7e6 8c42c9d M wrap-find-debuginfo.sh commit 9a4e993a560390d44bdf5cf67305aceb7ed5ee43 Author: Martin Cermak @@ -6339,7 +6383,7 @@ CommitDate: Tue Jun 22 13:13:33 2021 +0200 gating.yaml: Set up CI gating -:100644 100644 ac6d3d80 ea34bd3c M gating.yaml +:100644 100644 ac6d3d8 ea34bd3 M gating.yaml commit 307aea32b4fb8807a6b690afd76199aa924eb43c Author: Florian Weimer @@ -6351,8 +6395,8 @@ CommitDate: Tue May 25 19:33:48 2021 +0200 Resolves: #1963901 -:000000 100644 00000000 e185b3bf A glibc-upstream-2.33-41.patch -:100644 100644 adaa1e08 dc5a5bff M glibc.spec +:000000 100644 0000000 e185b3b A glibc-upstream-2.33-41.patch +:100644 100644 adaa1e0 dc5a5bf M glibc.spec commit 4a978d6156000a518bb01df9bdda87114e23da2f Author: Florian Weimer @@ -6364,7 +6408,7 @@ CommitDate: Fri May 21 20:08:55 2021 +0200 Resolves: #1940686 -:100644 100644 46e4c0e3 adaa1e08 M glibc.spec +:100644 100644 46e4c0e adaa1e0 M glibc.spec commit 52f0fdc4a1f960852c388fe8bc5295948e2e7063 Author: Florian Weimer @@ -6378,7 +6422,7 @@ CommitDate: Fri May 21 17:06:23 2021 +0200 Resolves: #1948645 -:100644 100644 4a1ccda8 46e4c0e3 M glibc.spec +:100644 100644 4a1ccda 46e4c0e M glibc.spec commit 83835daadab25ff8cc544e3072f6161fed1957d8 Author: Florian Weimer @@ -6394,34 +6438,34 @@ CommitDate: Fri May 7 13:55:45 2021 +0200 Resolves: #1945472 Resolves: #1915330 -:100644 100644 2afbfc5c 00fddaf2 M ChangeLog.old -:000000 100644 00000000 808c3964 A glibc-cpu-check-1.patch -:000000 100644 00000000 346f414b A glibc-cpu-check-2.patch -:000000 100644 00000000 9e0bc882 A glibc-cpu-check-3.patch -:100644 000000 df5e45a3 00000000 D glibc-rh1945473.patch -:000000 100644 00000000 3916b39f A glibc-upstream-2.33-20.patch -:000000 100644 00000000 456b7589 A glibc-upstream-2.33-21.patch -:000000 100644 00000000 285facbe A glibc-upstream-2.33-22.patch -:000000 100644 00000000 b0075459 A glibc-upstream-2.33-23.patch -:000000 100644 00000000 1dcf358f A glibc-upstream-2.33-24.patch -:000000 100644 00000000 da2f43e9 A glibc-upstream-2.33-25.patch -:000000 100644 00000000 2ddd087e A glibc-upstream-2.33-26.patch -:000000 100644 00000000 315e0eea A glibc-upstream-2.33-27.patch -:000000 100644 00000000 9f3be1d3 A glibc-upstream-2.33-28.patch -:000000 100644 00000000 d885b104 A glibc-upstream-2.33-29.patch -:000000 100644 00000000 7dbba0c1 A glibc-upstream-2.33-30.patch -:000000 100644 00000000 0e081b07 A glibc-upstream-2.33-31.patch -:000000 100644 00000000 57e83bca A glibc-upstream-2.33-32.patch -:000000 100644 00000000 25272a6d A glibc-upstream-2.33-33.patch -:000000 100644 00000000 aded9cdb A glibc-upstream-2.33-34.patch -:000000 100644 00000000 7a397502 A glibc-upstream-2.33-35.patch -:000000 100644 00000000 2881a46b A glibc-upstream-2.33-36.patch -:000000 100644 00000000 66760cc9 A glibc-upstream-2.33-37.patch -:000000 100644 00000000 75114b30 A glibc-upstream-2.33-38.patch -:000000 100644 00000000 edea939c A glibc-upstream-2.33-39.patch -:000000 100644 00000000 2652c883 A glibc-upstream-2.33-40.patch -:100644 100644 e3daa95f 4a1ccda8 M glibc.spec -:000000 100644 00000000 5ace7e6d A wrap-find-debuginfo.sh +:100644 100644 2afbfc5 00fddaf M ChangeLog.old +:000000 100644 0000000 808c396 A glibc-cpu-check-1.patch +:000000 100644 0000000 346f414 A glibc-cpu-check-2.patch +:000000 100644 0000000 9e0bc88 A glibc-cpu-check-3.patch +:100644 000000 df5e45a 0000000 D glibc-rh1945473.patch +:000000 100644 0000000 3916b39 A glibc-upstream-2.33-20.patch +:000000 100644 0000000 456b758 A glibc-upstream-2.33-21.patch +:000000 100644 0000000 285facb A glibc-upstream-2.33-22.patch +:000000 100644 0000000 b007545 A glibc-upstream-2.33-23.patch +:000000 100644 0000000 1dcf358 A glibc-upstream-2.33-24.patch +:000000 100644 0000000 da2f43e A glibc-upstream-2.33-25.patch +:000000 100644 0000000 2ddd087 A glibc-upstream-2.33-26.patch +:000000 100644 0000000 315e0ee A glibc-upstream-2.33-27.patch +:000000 100644 0000000 9f3be1d A glibc-upstream-2.33-28.patch +:000000 100644 0000000 d885b10 A glibc-upstream-2.33-29.patch +:000000 100644 0000000 7dbba0c A glibc-upstream-2.33-30.patch +:000000 100644 0000000 0e081b0 A glibc-upstream-2.33-31.patch +:000000 100644 0000000 57e83bc A glibc-upstream-2.33-32.patch +:000000 100644 0000000 25272a6 A glibc-upstream-2.33-33.patch +:000000 100644 0000000 aded9cd A glibc-upstream-2.33-34.patch +:000000 100644 0000000 7a39750 A glibc-upstream-2.33-35.patch +:000000 100644 0000000 2881a46 A glibc-upstream-2.33-36.patch +:000000 100644 0000000 66760cc A glibc-upstream-2.33-37.patch +:000000 100644 0000000 75114b3 A glibc-upstream-2.33-38.patch +:000000 100644 0000000 edea939 A glibc-upstream-2.33-39.patch +:000000 100644 0000000 2652c88 A glibc-upstream-2.33-40.patch +:100644 100644 e3daa95 4a1ccda M glibc.spec +:000000 100644 0000000 5ace7e6 A wrap-find-debuginfo.sh commit 0d047500d2fa88234b904634e68f55b28b82e87e Author: Mohan Boddu @@ -6433,7 +6477,7 @@ CommitDate: Thu Apr 15 23:47:41 2021 +0000 Signed-off-by: Mohan Boddu -:100644 100644 74608380 e3daa95f M glibc.spec +:100644 100644 7460838 e3daa95 M glibc.spec commit e0681e29326949c6899744156d2623bfccffebd3 Author: Florian Weimer @@ -6446,7 +6490,7 @@ CommitDate: Fri Apr 9 20:10:58 2021 +0200 Related: #1876584 Related: #1876479 -:100644 100644 464db26c 74608380 M glibc.spec +:100644 100644 464db26 7460838 M glibc.spec commit 0d152695fc6d221cf4312bd5e9c194b4d345eaa2 Author: Florian Weimer @@ -6458,8 +6502,8 @@ CommitDate: Fri Apr 9 18:58:30 2021 +0200 Resolves: #1945473 -:000000 100644 00000000 df5e45a3 A glibc-rh1945473.patch -:100644 100644 30059e88 464db26c M glibc.spec +:000000 100644 0000000 df5e45a A glibc-rh1945473.patch +:100644 100644 30059e8 464db26 M glibc.spec commit 15874e786467ccaef9a3583a120d75460efb7caa Author: Florian Weimer @@ -6477,7 +6521,7 @@ CommitDate: Fri Apr 9 17:04:04 2021 +0200 Resolves: #1947895 -:100644 100644 40b605f4 30059e88 M glibc.spec +:100644 100644 40b605f 30059e8 M glibc.spec commit 05cf3d95f685503b2132e8c94038011fc7dfa4ea Author: Florian Weimer @@ -6489,7 +6533,7 @@ CommitDate: Wed Apr 7 19:44:32 2021 +0200 Related: #1889978 -:100644 100644 28893f05 40b605f4 M glibc.spec +:100644 100644 28893f0 40b605f M glibc.spec commit fc331cd52801712e6f81f40ce50fa564cfe84414 Author: Florian Weimer @@ -6501,7 +6545,7 @@ CommitDate: Wed Apr 7 11:11:46 2021 +0200 Resolves: #1889978 -:100644 100644 003abf40 28893f05 M glibc.spec +:100644 100644 003abf4 28893f0 M glibc.spec commit 0bc968985e1fd016ba5fa90622be59ecf8409727 Author: DistroBaker @@ -6517,16 +6561,16 @@ CommitDate: Wed Mar 17 07:50:51 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#df07cd507e60fb1effac0d28d1bb0137235725ee -:000000 100644 00000000 9d2a6612 A glibc-upstream-2.33-11.patch -:000000 100644 00000000 f249efe6 A glibc-upstream-2.33-12.patch -:000000 100644 00000000 98eca5e1 A glibc-upstream-2.33-13.patch -:000000 100644 00000000 1f7a7cfa A glibc-upstream-2.33-14.patch -:000000 100644 00000000 a527e023 A glibc-upstream-2.33-15.patch -:000000 100644 00000000 8b50d66b A glibc-upstream-2.33-16.patch -:000000 100644 00000000 96a29742 A glibc-upstream-2.33-17.patch -:000000 100644 00000000 4318bad9 A glibc-upstream-2.33-18.patch -:000000 100644 00000000 8d225815 A glibc-upstream-2.33-19.patch -:100644 100644 03f9aada 003abf40 M glibc.spec +:000000 100644 0000000 9d2a661 A glibc-upstream-2.33-11.patch +:000000 100644 0000000 f249efe A glibc-upstream-2.33-12.patch +:000000 100644 0000000 98eca5e A glibc-upstream-2.33-13.patch +:000000 100644 0000000 1f7a7cf A glibc-upstream-2.33-14.patch +:000000 100644 0000000 a527e02 A glibc-upstream-2.33-15.patch +:000000 100644 0000000 8b50d66 A glibc-upstream-2.33-16.patch +:000000 100644 0000000 96a2974 A glibc-upstream-2.33-17.patch +:000000 100644 0000000 4318bad A glibc-upstream-2.33-18.patch +:000000 100644 0000000 8d22581 A glibc-upstream-2.33-19.patch +:100644 100644 03f9aad 003abf4 M glibc.spec commit 75c69240a738e03ffde997d043b7c059c26ccc85 Author: DistroBaker @@ -6542,12 +6586,12 @@ CommitDate: Thu Mar 11 19:59:29 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#51d2a6494c93b5cab0efacdbab8f272589214446 -:000000 100644 00000000 ac6d3d80 A gating.yaml -:000000 100644 00000000 deb97fe7 A glibc-upstream-2.33-10.patch -:000000 100644 00000000 990c6eb3 A glibc-upstream-2.33-7.patch -:000000 100644 00000000 51054cb0 A glibc-upstream-2.33-8.patch -:000000 100644 00000000 73fa1d35 A glibc-upstream-2.33-9.patch -:100644 100644 8fb3d7ee 03f9aada M glibc.spec +:000000 100644 0000000 ac6d3d8 A gating.yaml +:000000 100644 0000000 deb97fe A glibc-upstream-2.33-10.patch +:000000 100644 0000000 990c6eb A glibc-upstream-2.33-7.patch +:000000 100644 0000000 51054cb A glibc-upstream-2.33-8.patch +:000000 100644 0000000 73fa1d3 A glibc-upstream-2.33-9.patch +:100644 100644 8fb3d7e 03f9aad M glibc.spec commit c0a7313e92e8969abb1a45e67637c711fc81e763 Author: DistroBaker @@ -6563,14 +6607,14 @@ CommitDate: Fri Feb 19 18:21:03 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#40ad858c64f2a5eb509c81e29d63a1ad65c86256 -:000000 100644 00000000 eca0f857 A glibc-upstream-2.33-1.patch -:000000 100644 00000000 cab93f38 A glibc-upstream-2.33-2.patch -:000000 100644 00000000 c596a9c7 A glibc-upstream-2.33-3.patch -:000000 100644 00000000 602a7a75 A glibc-upstream-2.33-4.patch -:000000 100644 00000000 6020f1b4 A glibc-upstream-2.33-5.patch -:000000 100644 00000000 29b65b2e A glibc-upstream-2.33-6.patch -:100644 100644 e5bbfcca 8fb3d7ee M glibc.spec -:100644 100644 7ca9589e 06d649ea M sources +:000000 100644 0000000 eca0f85 A glibc-upstream-2.33-1.patch +:000000 100644 0000000 cab93f3 A glibc-upstream-2.33-2.patch +:000000 100644 0000000 c596a9c A glibc-upstream-2.33-3.patch +:000000 100644 0000000 602a7a7 A glibc-upstream-2.33-4.patch +:000000 100644 0000000 6020f1b A glibc-upstream-2.33-5.patch +:000000 100644 0000000 29b65b2 A glibc-upstream-2.33-6.patch +:100644 100644 e5bbfcc 8fb3d7e M glibc.spec +:100644 100644 7ca9589 06d649e M sources commit f012b79549960371d416f1bf198fd7968446d6c6 Author: DistroBaker @@ -6586,8 +6630,8 @@ CommitDate: Wed Feb 3 20:50:41 2021 +0100 Source: https://src.fedoraproject.org/rpms/glibc.git#c290b4561137469528de8a9bffb7e3da57b8f20d -:100644 100644 ea30e1f3 e5bbfcca M glibc.spec -:100644 100644 49270018 7ca9589e M sources +:100644 100644 ea30e1f e5bbfcc M glibc.spec +:100644 100644 4927001 7ca9589 M sources commit f1d9044c13d02643fc731a02bcb7a29108c36d43 Author: DistroBaker @@ -6603,7 +6647,7 @@ CommitDate: Thu Jan 14 14:39:45 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#8cd6c9ec483f92e71fb8bc9810fd3b3ca549cb88 -:100644 100644 52f5799d ea30e1f3 M glibc.spec +:100644 100644 52f5799 ea30e1f M glibc.spec commit 1a97e7f0179279bb9032a61b9f4ee1472afbf780 Author: DistroBaker @@ -6619,8 +6663,8 @@ CommitDate: Thu Jan 14 03:01:11 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#b59b2feff0cca1b9f88832152cde32ef41609c39 -:100644 100644 4b63c901 52f5799d M glibc.spec -:100644 100644 28814859 49270018 M sources +:100644 100644 4b63c90 52f5799 M glibc.spec +:100644 100644 2881485 4927001 M sources commit f36ca8d63a2153383dadc33f7ae4260caa32dad2 Author: DistroBaker @@ -6636,11 +6680,11 @@ CommitDate: Fri Jan 8 22:23:56 2021 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#dfda51ee292676a107eca11b9f2ff0f72f5382f0 -:100644 000000 70b7d9da 00000000 D glibc-fedora-__libc_multiple_libcs.patch -:100644 100644 32be6a37 aaf45cc5 M glibc-python3.patch -:100644 100644 8b766f10 61529268 M glibc-rh819430.patch -:100644 100644 d72e5e7a 4b63c901 M glibc.spec -:100644 100644 c99ca59f 28814859 M sources +:100644 000000 70b7d9d 0000000 D glibc-fedora-__libc_multiple_libcs.patch +:100644 100644 32be6a3 aaf45cc M glibc-python3.patch +:100644 100644 8b766f1 6152926 M glibc-rh819430.patch +:100644 100644 d72e5e7 4b63c90 M glibc.spec +:100644 100644 c99ca59 2881485 M sources commit 9b698aaac0f1c1056e511fb562e122c17b21a824 Author: DistroBaker @@ -6656,10 +6700,10 @@ CommitDate: Wed Dec 16 08:14:09 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#d5ff3061a2c54ee0f30bb164d556f875daaea342 -:100644 000000 902e3533 00000000 D glibc-rh1906066.patch -:100644 000000 7637e08f 00000000 D glibc-rh741105.patch -:100644 100644 af60777d d72e5e7a M glibc.spec -:100644 100644 1dd85ba9 c99ca59f M sources +:100644 000000 902e353 0000000 D glibc-rh1906066.patch +:100644 000000 7637e08 0000000 D glibc-rh741105.patch +:100644 100644 af60777 d72e5e7 M glibc.spec +:100644 100644 1dd85ba c99ca59 M sources commit df9ce2ff57e675edea493144401a1e1c9ed0f2b5 Author: DistroBaker @@ -6675,9 +6719,9 @@ CommitDate: Tue Dec 15 10:59:21 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#525dee4c87180db08e1776ad3cb0e66a9b38e81f -:000000 100644 00000000 902e3533 A glibc-rh1906066.patch -:100644 100644 51446ec6 af60777d M glibc.spec -:100644 100644 137c9f59 1dd85ba9 M sources +:000000 100644 0000000 902e353 A glibc-rh1906066.patch +:100644 100644 51446ec af60777 M glibc.spec +:100644 100644 137c9f5 1dd85ba M sources commit 6ce6a082b97d7164023dbd2c2c6c000170f5a139 Author: DistroBaker @@ -6693,10 +6737,10 @@ CommitDate: Fri Dec 4 20:05:15 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#35514a81165c87eba803232593be24c5706e22a0 -:100644 000000 a3374b4b 00000000 D glibc-revert-fxstat-compat.patch -:100644 000000 85b49137 00000000 D glibc-revert-mknod-compat.patch -:100644 100644 5c8b02dc 51446ec6 M glibc.spec -:100644 100644 90646e76 137c9f59 M sources +:100644 000000 a3374b4 0000000 D glibc-revert-fxstat-compat.patch +:100644 000000 85b4913 0000000 D glibc-revert-mknod-compat.patch +:100644 100644 5c8b02d 51446ec M glibc.spec +:100644 100644 90646e7 137c9f5 M sources commit 461195a745ce1bdf34abd90f026593a64b3395e8 Author: DistroBaker @@ -6712,7 +6756,7 @@ CommitDate: Thu Nov 26 19:15:15 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#a3f3b637ae838458ed5781b05913a48050476887 -:100644 100644 3798a8d4 5c8b02dc M glibc.spec +:100644 100644 3798a8d 5c8b02d M glibc.spec commit 28637353c02f929a0508d5dc0c3403714367de1d Author: Troy Dawson @@ -6726,8 +6770,8 @@ CommitDate: Mon Nov 16 13:04:25 2020 -0800 with the following as its source: https://src.fedoraproject.org/rpms/glibc#c626367cc1dea35a90c9065c6af70e8967c23f26 -:100644 000000 c389d125 00000000 D glibc-rhbz1869030-faccessat2-eperm.patch -:100644 100644 617f98f2 3798a8d4 M glibc.spec +:100644 000000 c389d12 0000000 D glibc-rhbz1869030-faccessat2-eperm.patch +:100644 100644 617f98f 3798a8d M glibc.spec commit e30b42e7e1b555a86c903076780b884d27cb9bd8 Author: DistroBaker @@ -6743,8 +6787,8 @@ CommitDate: Tue Nov 10 00:49:48 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#98f35706db9bcb0bd505b3228514cf8ecebe9af2 -:100644 100644 33ffcb02 617f98f2 M glibc.spec -:100644 100644 d50f2b50 90646e76 M sources +:100644 100644 33ffcb0 617f98f M glibc.spec +:100644 100644 d50f2b5 90646e7 M sources commit 9e11e0f379295d30ea03374739b50cb647749e9e Author: DistroBaker @@ -6760,9 +6804,9 @@ CommitDate: Thu Nov 5 01:18:48 2020 +0000 Source: https://src.fedoraproject.org/rpms/glibc.git#2e63496ba68bfc87245c0a475e62fad6e234def6 -:100644 000000 a096726b 00000000 D glibc-revert-ftime-compat.patch -:100644 100644 1b194734 33ffcb02 M glibc.spec -:100644 100644 3d80d913 d50f2b50 M sources +:100644 000000 a096726 0000000 D glibc-revert-ftime-compat.patch +:100644 100644 1b19473 33ffcb0 M glibc.spec +:100644 100644 3d80d91 d50f2b5 M sources commit eb6f429d3f0c2f41aa5bb7f8e5153668aa812553 Author: Troy Dawson @@ -6776,12 +6820,12 @@ CommitDate: Fri Oct 23 08:45:59 2020 -0700 with the following as its source: https://src.fedoraproject.org/rpms/glibc#90ca20fd0234925743db5e1e231b73b4a38749a9 -:100644 100644 fe5adb2d 70b7d9da M glibc-fedora-__libc_multiple_libcs.patch -:000000 100644 00000000 a096726b A glibc-revert-ftime-compat.patch -:000000 100644 00000000 a3374b4b A glibc-revert-fxstat-compat.patch -:000000 100644 00000000 85b49137 A glibc-revert-mknod-compat.patch -:100644 100644 b0ca4a53 1b194734 M glibc.spec -:100644 100644 052b7852 3d80d913 M sources +:100644 100644 fe5adb2 70b7d9d M glibc-fedora-__libc_multiple_libcs.patch +:000000 100644 0000000 a096726 A glibc-revert-ftime-compat.patch +:000000 100644 0000000 a3374b4 A glibc-revert-fxstat-compat.patch +:000000 100644 0000000 85b4913 A glibc-revert-mknod-compat.patch +:100644 100644 b0ca4a5 1b19473 M glibc.spec +:100644 100644 052b785 3d80d91 M sources commit c9106cca32053502c5e6f1367e71941bd0df40e1 Author: Petr Šabata @@ -6795,38 +6839,38 @@ CommitDate: Thu Oct 15 01:45:26 2020 +0200 with the following as its source: https://src.fedoraproject.org/rpms/glibc#d8a810a777f9c7113d15c1dc1ce8bde72ebc688b -:100644 100644 e69de29b 7a730813 M .gitignore -:000000 100644 00000000 2afbfc5c A ChangeLog.old -:000000 100644 00000000 ef528da2 A README.scripts -:000000 100644 00000000 4a31ea0a A STAGE1-glibc -:000000 100644 00000000 c58c5419 A STAGE1-glibc-headers -:000000 100644 00000000 dfe46bdb A bench.mk -:000000 100755 00000000 22ebf90d A gen-quilt-series.sh -:000000 100755 00000000 84e3abad A glibc-bench-compare -:000000 100644 00000000 a4cf357a A glibc-c-utf8-locale.patch -:000000 100644 00000000 aafa7419 A glibc-cs-path.patch -:000000 100644 00000000 c762d024 A glibc-deprecated-selinux-makedb.patch -:000000 100644 00000000 315b6cd9 A glibc-deprecated-selinux-nscd.patch -:000000 100644 00000000 fe5adb2d A glibc-fedora-__libc_multiple_libcs.patch -:000000 100644 00000000 3ae7e27a A glibc-fedora-linux-tcsetattr.patch -:000000 100644 00000000 518253d1 A glibc-fedora-localedata-rh61908.patch -:000000 100644 00000000 515611a9 A glibc-fedora-localedef.patch -:000000 100644 00000000 11c26569 A glibc-fedora-manual-dircategory.patch -:000000 100644 00000000 6f8f764e A glibc-fedora-nscd.patch -:000000 100644 00000000 61f03111 A glibc-fedora-nsswitch.patch -:000000 100644 00000000 03dee9e9 A glibc-nscd-sysconfig.patch -:000000 100644 00000000 32be6a37 A glibc-python3.patch -:000000 100644 00000000 0975e0fa A glibc-rh1070416.patch -:000000 100644 00000000 e909aa19 A glibc-rh697421.patch -:000000 100644 00000000 7637e08f A glibc-rh741105.patch -:000000 100644 00000000 8b766f10 A glibc-rh819430.patch -:000000 100644 00000000 61158912 A glibc-rh827510.patch -:000000 100644 00000000 c389d125 A glibc-rhbz1869030-faccessat2-eperm.patch -:000000 100644 00000000 b0ca4a53 A glibc.spec -:000000 100644 00000000 8a24a785 A nscd.conf -:000000 100644 00000000 cf512deb A parse-SUPPORTED.py -:000000 100644 00000000 052b7852 A sources -:000000 100644 00000000 10ec35e2 A template.patch +:100644 100644 e69de29 7a73081 M .gitignore +:000000 100644 0000000 2afbfc5 A ChangeLog.old +:000000 100644 0000000 ef528da A README.scripts +:000000 100644 0000000 4a31ea0 A STAGE1-glibc +:000000 100644 0000000 c58c541 A STAGE1-glibc-headers +:000000 100644 0000000 dfe46bd A bench.mk +:000000 100755 0000000 22ebf90 A gen-quilt-series.sh +:000000 100755 0000000 84e3aba A glibc-bench-compare +:000000 100644 0000000 a4cf357 A glibc-c-utf8-locale.patch +:000000 100644 0000000 aafa741 A glibc-cs-path.patch +:000000 100644 0000000 c762d02 A glibc-deprecated-selinux-makedb.patch +:000000 100644 0000000 315b6cd A glibc-deprecated-selinux-nscd.patch +:000000 100644 0000000 fe5adb2 A glibc-fedora-__libc_multiple_libcs.patch +:000000 100644 0000000 3ae7e27 A glibc-fedora-linux-tcsetattr.patch +:000000 100644 0000000 518253d A glibc-fedora-localedata-rh61908.patch +:000000 100644 0000000 515611a A glibc-fedora-localedef.patch +:000000 100644 0000000 11c2656 A glibc-fedora-manual-dircategory.patch +:000000 100644 0000000 6f8f764 A glibc-fedora-nscd.patch +:000000 100644 0000000 61f0311 A glibc-fedora-nsswitch.patch +:000000 100644 0000000 03dee9e A glibc-nscd-sysconfig.patch +:000000 100644 0000000 32be6a3 A glibc-python3.patch +:000000 100644 0000000 0975e0f A glibc-rh1070416.patch +:000000 100644 0000000 e909aa1 A glibc-rh697421.patch +:000000 100644 0000000 7637e08 A glibc-rh741105.patch +:000000 100644 0000000 8b766f1 A glibc-rh819430.patch +:000000 100644 0000000 6115891 A glibc-rh827510.patch +:000000 100644 0000000 c389d12 A glibc-rhbz1869030-faccessat2-eperm.patch +:000000 100644 0000000 b0ca4a5 A glibc.spec +:000000 100644 0000000 8a24a78 A nscd.conf +:000000 100644 0000000 cf512de A parse-SUPPORTED.py +:000000 100644 0000000 052b785 A sources +:000000 100644 0000000 10ec35e A template.patch commit 4ffaa022614c35bc63a30476e14be62d2fbf1c6e Author: Release Configuration Management @@ -6836,4 +6880,4 @@ CommitDate: Thu Oct 8 12:33:53 2020 +0000 New branch setup -:000000 100644 00000000 e69de29b A .gitignore +:000000 100644 0000000 e69de29 A .gitignore