This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch azanella/bz18231 in repository glibc.
discards 73d25c7e25 sysvipc: Set ipc_perm mode as mode_t (BZ#18231) discards f9ed05bf70 sh: Split BE/LE abilist discards d5cdf7d72f microblaze: Split BE/LE abilist discards 0a9e2c4f1a arm: Split BE/LE abilist discards 6c2d232a8e Update sysvipc kernel-features.h files for Linux 5.1 discards ea248d4f1d ipc: Refactor sysvipc internal definitions adds c7e4b684e7 locale/C-translit.h.in: Cyrillic -> ASCII transliteration [B [...] adds dcf36bcad3 Add NEWS entry about the new AArch64 IFUNC resolver call ABI adds 95da14dac0 test-container: Avoid copying unintended system libraries adds 35e038c1d2 test-container: Install with $(all-subdirs) [BZ #24794] adds 7854ebf8ed Linux: Use in-tree copy of SO_ constants for !__USE_MISC [BZ [...] adds 82c664ed75 build-many-glibcs.py: Use Linux 5.2 by default adds 7e681561a3 x86-64: Compile branred.c with -mprefer-vector-width=128 [BZ [...] adds 50ce3eae5b gconv: Check reference count in __gconv_release_cache [BZ #24677] adds 354e4c1add test-container: Install with $(sorted-subdirs) [BZ #24794] adds b8b3d5a14e Linux: Move getdents64 to <dirent.h> adds 8a814e20d4 nptl: Use uintptr_t for address diagnostic in nptl/tst-pthre [...] adds c86b8e7579 Restore r31 setting in powerpc32 swapcontext. new 9f2f2807d1 ipc: Refactor sysvipc internal definitions new 0b04bc2077 Update sysvipc kernel-features.h files for Linux 5.1 new 753ab92308 arm: Split BE/LE abilist new 39b517a4f5 microblaze: Split BE/LE abilist new 1f88ad55f2 sh: Split BE/LE abilist new 02dc8be8db sysvipc: Set ipc_perm mode as mode_t (BZ#18231)
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (73d25c7e25) \ N -- N -- N refs/heads/azanella/bz18231 (02dc8be8db)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 91 +++++++++++ Makeconfig | 6 +- Makefile | 7 +- NEWS | 4 + bits/dirent_ext.h | 21 +++ conform/data/sys/ipc.h-data | 3 +- dirent/Makefile | 2 +- dirent/dirent.h | 2 + iconv/gconv_cache.c | 9 +- locale/C-translit.h.in | 169 ++++++++++++++++++++ manual/filesys.texi | 2 +- nptl/tst-pthread-getattr.c | 17 +- scripts/build-many-glibcs.py | 2 +- sysdeps/arm/preconfigure | 157 ++++++++++++++++-- sysdeps/arm/preconfigure.ac | 14 +- sysdeps/microblaze/preconfigure | 158 ++++++++++++++++++- sysdeps/microblaze/preconfigure.ac | 11 ++ sysdeps/sh/preconfigure | 175 +++++++++++++++++++-- sysdeps/sh/preconfigure.ac | 18 +++ sysdeps/unix/sysv/linux/Makefile | 14 +- .../unix/sysv/linux/alpha/bits/socket-constants.h | 38 +++++ .../sysv/linux/bits/{unistd_ext.h => dirent_ext.h} | 25 +-- sysdeps/unix/sysv/linux/bits/socket-constants.h | 38 +++++ sysdeps/unix/sysv/linux/bits/socket.h | 98 +----------- sysdeps/unix/sysv/linux/bits/unistd_ext.h | 6 - .../unix/sysv/linux/hppa/bits/socket-constants.h | 38 +++++ sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist | 3 + sysdeps/unix/sysv/linux/m68k/kernel-features.h | 1 + sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist | 3 + .../unix/sysv/linux/mips/bits/socket-constants.h | 38 +++++ .../sysv/linux/powerpc/bits/socket-constants.h | 38 +++++ .../linux/powerpc/powerpc32/swapcontext-common.S | 3 + .../unix/sysv/linux/sparc/bits/socket-constants.h | 38 +++++ sysdeps/unix/sysv/linux/tst-socket-consts.py | 65 ++++++++ sysdeps/x86_64/configure | 22 +++ sysdeps/x86_64/configure.ac | 9 ++ sysdeps/x86_64/fpu/Makefile | 12 ++ 37 files changed, 1177 insertions(+), 180 deletions(-) create mode 100644 bits/dirent_ext.h create mode 100644 sysdeps/microblaze/preconfigure.ac create mode 100644 sysdeps/sh/preconfigure.ac create mode 100644 sysdeps/unix/sysv/linux/alpha/bits/socket-constants.h copy sysdeps/unix/sysv/linux/bits/{unistd_ext.h => dirent_ext.h} (54%) create mode 100644 sysdeps/unix/sysv/linux/bits/socket-constants.h create mode 100644 sysdeps/unix/sysv/linux/hppa/bits/socket-constants.h create mode 100644 sysdeps/unix/sysv/linux/mips/bits/socket-constants.h create mode 100644 sysdeps/unix/sysv/linux/powerpc/bits/socket-constants.h create mode 100644 sysdeps/unix/sysv/linux/sparc/bits/socket-constants.h create mode 100644 sysdeps/unix/sysv/linux/tst-socket-consts.py