This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch azanella/bz23960-dirent in repository glibc.
discards 8587ae4a67 dirent: Deprecate getdirentries discards 425419e224 linux: Use getdents64 on readdir64 compat implementation discards 8c0d87c3c1 linux: Add __old_readdir64_unlocked discards dd8e18462f linux: Add __readdir64_unlocked discards 14b6fc4829 linux: Set internal DIR filepos as off64_t [BZ #23960, BZ #24050] discards 60341f8c19 linux: Use getdents64 on non-LFS readdir new b18673fbcf linux: Use getdents64 on non-LFS readdir new 9a0e9771e0 linux: Set internal DIR filepos as off64_t (BZ #23960, BZ #24050) new 92761a1450 linux: Add __readdir64_unlocked new 81aaf8e16e linux: Add __old_readdir64_unlocked new 4404fe3a81 linux: Use getdents64 on readdir64 compat implementation
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 (8587ae4a67) \ N -- N -- N refs/heads/azanella/bz23960-dirent (4404fe3a81)
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 5 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: NEWS | 3 - dirent/Makefile | 2 +- dirent/dirent.h | 14 +-- dirent/tst-scandir.c | 6 +- dirent/tst-seekdir.c | 8 ++ dirent/tst-seekdir2.c | 158 ---------------------------- include/dirent.h | 2 +- sysdeps/unix/sysv/linux/Makefile | 5 +- sysdeps/unix/sysv/linux/alpha/bits/dirent.h | 3 + sysdeps/unix/sysv/linux/bits/dirent.h | 4 + sysdeps/unix/sysv/linux/closedir.c | 8 +- sysdeps/unix/sysv/linux/dirstream.h | 17 ++- sysdeps/unix/sysv/linux/opendir.c | 36 +------ sysdeps/unix/sysv/linux/readdir.c | 51 ++++----- sysdeps/unix/sysv/linux/readdir64.c | 34 ++---- sysdeps/unix/sysv/linux/seekdir.c | 15 ++- sysdeps/unix/sysv/linux/telldir.c | 56 +++++----- sysdeps/unix/sysv/linux/telldir.h | 27 ++--- sysdeps/unix/sysv/linux/tst-opendir-nolfs.c | 146 +++++++++++++++++++++++++ 19 files changed, 269 insertions(+), 326 deletions(-) delete mode 100644 dirent/tst-seekdir2.c create mode 100644 sysdeps/unix/sysv/linux/tst-opendir-nolfs.c