This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-243-g5f45f96


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  5f45f96ad09d7f80172b45dca16d6ca2baeea2a8 (commit)
      from  3dfd23eb4bdc7707048b115548e2238dacef064e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=5f45f96ad09d7f80172b45dca16d6ca2baeea2a8

commit 5f45f96ad09d7f80172b45dca16d6ca2baeea2a8
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Mar 26 21:18:28 2018 +0000

    Unify umount function implementations (bug 16552).
    
    Linux kernel architectures have various arrangements for umount
    syscalls.  There is a syscall that takes flags, and an older one that
    does not.  Newer architectures have only the one taking flags, under
    the name umount2 (or under the name umount, in the ia64 case).  Older
    architectures may have both, under the names umount2 and umount (or
    under the names umount and oldumount, in the alpha case).  glibc then
    has several similar implementations of the umount function (no flags)
    in terms of either the __umount2 function, or the corresponding
    syscall, or in terms of the old syscall under either of its names.
    
    This patch simplifies the implementations in glibc by always using the
    __umount2 function to implement the umount function on all systems
    using the Linux kernel.  The linux/generic implementation is moved to
    sysdeps/unix/sysv/linux (without any changes to code or comments) and
    all the other variants are removed.  (This will have the effect of
    causing the new syscall to be used in some cases that previously used
    the old one, but as discussed for previous changes, such a change to
    the underlying syscalls used is OK.)
    
    There remain two variants of how the __umount2 function is
    implemented, either in umount2.S, or, for ia64, in syscalls.list.
    
    Tested with build-many-glibcs.py.
    
    	[BZ #16552]
    	* sysdeps/unix/sysv/linux/generic/umount.c: Move to ....
    	* sysdeps/unix/sysv/linux/umount.c: ... here.
    	* sysdeps/unix/sysv/linux/arm/umount.c: Remove file.
    	* sysdeps/unix/sysv/linux/hppa/umount.c: Likewise.
    	* sysdeps/unix/sysv/linux/ia64/umount.c: Likewise.
    	* sysdeps/unix/sysv/linux/mips/mips64/umount.c: Likewise.
    	* sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Likewise.
    	* sysdeps/unix/sysv/linux/umount.S: Likewise.
    	* sysdeps/unix/sysv/linux/x86_64/umount.c: Likewise.

diff --git a/ChangeLog b/ChangeLog
index b571e4e..111623d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2018-03-26  Joseph Myers  <joseph@codesourcery.com>
+
+	[BZ #16552]
+	* sysdeps/unix/sysv/linux/generic/umount.c: Move to ....
+	* sysdeps/unix/sysv/linux/umount.c: ... here.
+	* sysdeps/unix/sysv/linux/arm/umount.c: Remove file.
+	* sysdeps/unix/sysv/linux/hppa/umount.c: Likewise.
+	* sysdeps/unix/sysv/linux/ia64/umount.c: Likewise.
+	* sysdeps/unix/sysv/linux/mips/mips64/umount.c: Likewise.
+	* sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Likewise.
+	* sysdeps/unix/sysv/linux/umount.S: Likewise.
+	* sysdeps/unix/sysv/linux/x86_64/umount.c: Likewise.
+
 2018-03-26  Andreas Schwab  <schwab@suse.de>
 
 	* elf/elf.h (R_RISCV_BRANCH, R_RISCV_JAL, R_RISCV_CALL)
diff --git a/sysdeps/unix/sysv/linux/arm/umount.c b/sysdeps/unix/sysv/linux/arm/umount.c
deleted file mode 100644
index 87997e0..0000000
--- a/sysdeps/unix/sysv/linux/arm/umount.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by David Huggins-Daines <dhd@debian.org>, 2000.
-
-   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
-   <http://www.gnu.org/licenses/>.  */
-
-/* Since we don't have an oldumount system call, do what the kernel
-   does down here.  */
-
-extern long int __umount2 (const char *name, int flags);
-
-long int
-__umount (const char *name)
-{
-  return __umount2 (name, 0);
-}
-
-weak_alias (__umount, umount);
diff --git a/sysdeps/unix/sysv/linux/hppa/umount.c b/sysdeps/unix/sysv/linux/hppa/umount.c
deleted file mode 100644
index 208fbec..0000000
--- a/sysdeps/unix/sysv/linux/hppa/umount.c
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/unix/sysv/linux/mips/mips64/umount.c>
diff --git a/sysdeps/unix/sysv/linux/ia64/umount.c b/sysdeps/unix/sysv/linux/ia64/umount.c
deleted file mode 100644
index 8cf5a75..0000000
--- a/sysdeps/unix/sysv/linux/ia64/umount.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* umount system call for Linux/ia64.
-   Copyright (C) 2003-2018 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
-   <http://www.gnu.org/licenses/>.  */
-
-#include <sys/mount.h>
-#include <errno.h>
-
-#include <sysdep.h>
-
-/* Unmount a filesystem.  */
-int
-umount (const char *special_file)
-{
-  return INLINE_SYSCALL (umount, 2, special_file, 0);
-}
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/umount.c b/sysdeps/unix/sysv/linux/mips/mips64/umount.c
deleted file mode 100644
index 87997e0..0000000
--- a/sysdeps/unix/sysv/linux/mips/mips64/umount.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by David Huggins-Daines <dhd@debian.org>, 2000.
-
-   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
-   <http://www.gnu.org/licenses/>.  */
-
-/* Since we don't have an oldumount system call, do what the kernel
-   does down here.  */
-
-extern long int __umount2 (const char *name, int flags);
-
-long int
-__umount (const char *name)
-{
-  return __umount2 (name, 0);
-}
-
-weak_alias (__umount, umount);
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c b/sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c
deleted file mode 100644
index e10b40f..0000000
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/unix/sysv/linux/x86_64/umount.c>
diff --git a/sysdeps/unix/sysv/linux/umount.S b/sysdeps/unix/sysv/linux/umount.S
deleted file mode 100644
index e18463e..0000000
--- a/sysdeps/unix/sysv/linux/umount.S
+++ /dev/null
@@ -1,12 +0,0 @@
-/* This hack is necessary since the kernel people are making "strange"
-   changes.  They simply rename old system calls.  */
-
-#include <sysdep.h>
-#ifdef __NR_oldumount
-PSEUDO (__umount, oldumount, 1)
-#else
-PSEUDO (__umount, umount, 1)
-#endif
-	ret
-PSEUDO_END(__umount)
-weak_alias (__umount, umount)
diff --git a/sysdeps/unix/sysv/linux/generic/umount.c b/sysdeps/unix/sysv/linux/umount.c
similarity index 100%
rename from sysdeps/unix/sysv/linux/generic/umount.c
rename to sysdeps/unix/sysv/linux/umount.c
diff --git a/sysdeps/unix/sysv/linux/x86_64/umount.c b/sysdeps/unix/sysv/linux/x86_64/umount.c
deleted file mode 100644
index 9030774..0000000
--- a/sysdeps/unix/sysv/linux/x86_64/umount.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright (C) 2000-2018 Free Software Foundation, Inc.
-   This file is part of the GNU C Library.
-   Contributed by David Huggins-Daines <dhd@debian.org>, 2000.
-
-   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
-   <http://www.gnu.org/licenses/>.  */
-
-/* Since we don't have an oldumount system call, do what the kernel
-   does down here.  */
-
-extern long int __umount2 (const char *name, int flags);
-
-long int
-__umount (const char *name)
-{
-  return __umount2 (name, 0);
-}
-
-weak_alias (__umount, umount);

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                          |   13 ++++++++
 sysdeps/unix/sysv/linux/arm/umount.c               |   30 --------------------
 sysdeps/unix/sysv/linux/hppa/umount.c              |    1 -
 sysdeps/unix/sysv/linux/ia64/umount.c              |   29 -------------------
 sysdeps/unix/sysv/linux/mips/mips64/umount.c       |   30 --------------------
 sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c |    1 -
 sysdeps/unix/sysv/linux/umount.S                   |   12 --------
 sysdeps/unix/sysv/linux/{generic => }/umount.c     |    0
 sysdeps/unix/sysv/linux/x86_64/umount.c            |   30 --------------------
 9 files changed, 13 insertions(+), 133 deletions(-)
 delete mode 100644 sysdeps/unix/sysv/linux/arm/umount.c
 delete mode 100644 sysdeps/unix/sysv/linux/hppa/umount.c
 delete mode 100644 sysdeps/unix/sysv/linux/ia64/umount.c
 delete mode 100644 sysdeps/unix/sysv/linux/mips/mips64/umount.c
 delete mode 100644 sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c
 delete mode 100644 sysdeps/unix/sysv/linux/umount.S
 rename sysdeps/unix/sysv/linux/{generic => }/umount.c (100%)
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/umount.c


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]