This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr21265/2.26 in repository glibc.
discards 5d9b05d1ad x86-64: Use fxsave/xsave/xsavec in _dl_runtime_resolve [BZ #21265] discards aca8619adb x86: Add x86_64 to x86-64 HWCAP [BZ #22093] adds 2e78ea7a20 sysconf: Fix missing definition of UIO_MAXIOV on Linux [BZ #22321] adds c96d7a646b i386: Hide __old_glob64 [BZ #18822] adds 305f4f057d posix: Sync glob with gnulib [BZ #1062] adds a76376df7c CVE-2017-15670: glob: Fix one-byte overflow [BZ #22320] adds 6182b3708b glob: Add new test tst-glob-tilde new b2c78ae69e x86: Add x86_64 to x86-64 HWCAP [BZ #22093] new 4a30c87b87 x86-64: Use fxsave/xsave/xsavec in _dl_runtime_resolve [BZ #21265]
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 (5d9b05d1ad) \ N -- N -- N refs/heads/hjl/pr21265/2.26 (4a30c87b87)
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 2 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 | 111 +++ NEWS | 8 + posix/Makefile | 13 +- posix/flexmember.h | 45 ++ posix/glob.c | 776 ++++++++++----------- posix/glob64.c | 6 - posix/glob_internal.h | 57 ++ posix/glob_pattern_p.c | 33 + posix/globfree.c | 41 ++ posix/globfree64.c | 31 + posix/tst-glob-tilde.c | 136 ++++ sysdeps/gnu/glob64.c | 3 - sysdeps/gnu/globfree64.c | 10 + sysdeps/posix/sysconf.c | 1 + sysdeps/unix/sysv/linux/Makefile | 10 +- sysdeps/unix/sysv/linux/alpha/glob.c | 4 - .../unix/sysv/linux/alpha/{glob.c => globfree.c} | 20 +- sysdeps/unix/sysv/linux/i386/glob64.c | 36 +- .../unix/sysv/linux/mips/mips64/n64/globfree64.c | 1 + sysdeps/unix/sysv/linux/oldglob.c | 42 ++ sysdeps/unix/sysv/linux/tst-sysconf-iov_max-uapi.c | 27 + sysdeps/unix/sysv/linux/tst-sysconf-iov_max.c | 40 ++ sysdeps/unix/sysv/linux/wordsize-64/globfree64.c | 2 + sysdeps/unix/sysv/linux/x86_64/x32/globfree.c | 1 + sysdeps/wordsize-64/glob.c | 2 - sysdeps/wordsize-64/{glob.c => globfree.c} | 5 +- sysdeps/wordsize-64/globfree64.c | 1 + 27 files changed, 980 insertions(+), 482 deletions(-) create mode 100644 posix/flexmember.h create mode 100644 posix/glob_internal.h create mode 100644 posix/glob_pattern_p.c create mode 100644 posix/globfree.c create mode 100644 posix/globfree64.c create mode 100644 posix/tst-glob-tilde.c create mode 100644 sysdeps/gnu/globfree64.c copy sysdeps/unix/sysv/linux/alpha/{glob.c => globfree.c} (65%) create mode 100644 sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c create mode 100644 sysdeps/unix/sysv/linux/oldglob.c create mode 100644 sysdeps/unix/sysv/linux/tst-sysconf-iov_max-uapi.c create mode 100644 sysdeps/unix/sysv/linux/tst-sysconf-iov_max.c create mode 100644 sysdeps/unix/sysv/linux/wordsize-64/globfree64.c create mode 100644 sysdeps/unix/sysv/linux/x86_64/x32/globfree.c copy sysdeps/wordsize-64/{glob.c => globfree.c} (57%) create mode 100644 sysdeps/wordsize-64/globfree64.c