diff mbox series

Move MREMAP_* to bits/mman-shared.h

Message ID alpine.DEB.2.21.1810011922090.14173@digraph.polyomino.org.uk
State New
Headers show
Series Move MREMAP_* to bits/mman-shared.h | expand

Commit Message

Joseph Myers Oct. 1, 2018, 7:22 p.m. UTC
The MREMAP_* flags are identical between bits/mman-linux.h and the
hppa bits/mman.h; thus, they should be in bits/mman-shared.h instead
to avoid unnecessary duplication.  This patch moves them there.

Tested for x86_64, and with build-many-glibcs.py.

2018-10-01  Joseph Myers  <joseph@codesourcery.com>

	* sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
	(MREMAP_MAYMOVE): Do not define here.
	[__USE_GNU] (MREMAP_FIXED): Likewise.
	* sysdeps/unix/sysv/linux/bits/mman-shared.h [__USE_GNU]
	(MREMAP_MAYMOVE): Define here instead.
	[__USE_GNU] (MREMAP_FIXED): Likewise.
	* sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_GNU]
	(MREMAP_MAYMOVE): Remove.
	[__USE_GNU] (MREMAP_FIXED): Likewise.

Comments

Adhemerval Zanella Oct. 1, 2018, 7:43 p.m. UTC | #1
On 01/10/2018 16:22, Joseph Myers wrote:
> The MREMAP_* flags are identical between bits/mman-linux.h and the
> hppa bits/mman.h; thus, they should be in bits/mman-shared.h instead
> to avoid unnecessary duplication.  This patch moves them there.
> 
> Tested for x86_64, and with build-many-glibcs.py.
> 
> 2018-10-01  Joseph Myers  <joseph@codesourcery.com>
> 
> 	* sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
> 	(MREMAP_MAYMOVE): Do not define here.
> 	[__USE_GNU] (MREMAP_FIXED): Likewise.
> 	* sysdeps/unix/sysv/linux/bits/mman-shared.h [__USE_GNU]
> 	(MREMAP_MAYMOVE): Define here instead.
> 	[__USE_GNU] (MREMAP_FIXED): Likewise.
> 	* sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_GNU]
> 	(MREMAP_MAYMOVE): Remove.
> 	[__USE_GNU] (MREMAP_FIXED): Likewise.

LGTM, thanks.

> 
> diff --git a/sysdeps/unix/sysv/linux/bits/mman-linux.h b/sysdeps/unix/sysv/linux/bits/mman-linux.h
> index 70edeb6d60..09b118bb70 100644
> --- a/sysdeps/unix/sysv/linux/bits/mman-linux.h
> +++ b/sysdeps/unix/sysv/linux/bits/mman-linux.h
> @@ -67,12 +67,6 @@
>  #define MS_SYNC		4		/* Synchronous memory sync.  */
>  #define MS_INVALIDATE	2		/* Invalidate the caches.  */
>  
> -/* Flags for `mremap'.  */
> -#ifdef __USE_GNU
> -# define MREMAP_MAYMOVE	1
> -# define MREMAP_FIXED	2
> -#endif
> -
>  /* Advice to `madvise'.  */
>  #ifdef __USE_MISC
>  # define MADV_NORMAL	  0	/* No further special treatment.  */
> diff --git a/sysdeps/unix/sysv/linux/bits/mman-shared.h b/sysdeps/unix/sysv/linux/bits/mman-shared.h
> index d15ba95c9d..54823e3724 100644
> --- a/sysdeps/unix/sysv/linux/bits/mman-shared.h
> +++ b/sysdeps/unix/sysv/linux/bits/mman-shared.h
> @@ -21,6 +21,10 @@
>  #endif
>  
>  #ifdef __USE_GNU
> +/* Flags for mremap.  */
> +# define MREMAP_MAYMOVE	1
> +# define MREMAP_FIXED	2
> +
>  /* Flags for memfd_create.  */
>  # ifndef MFD_CLOEXEC
>  #  define MFD_CLOEXEC 1U
> diff --git a/sysdeps/unix/sysv/linux/hppa/bits/mman.h b/sysdeps/unix/sysv/linux/hppa/bits/mman.h
> index 1c7d3708e6..fd07a65868 100644
> --- a/sysdeps/unix/sysv/linux/hppa/bits/mman.h
> +++ b/sysdeps/unix/sysv/linux/hppa/bits/mman.h
> @@ -76,12 +76,6 @@
>  #define MCL_FUTURE	2		/* Lock all future mappings */
>  #define MCL_ONFAULT	4		/* Lock all pages that are faulted in */
>  
> -/* Flags for `mremap'.  */
> -#ifdef __USE_GNU
> -# define MREMAP_MAYMOVE 1
> -# define MREMAP_FIXED	2
> -#endif
> -
>  /* Advice to "madvise"  */
>  #ifdef __USE_MISC
>  # define MADV_NORMAL	  0	/* No further special treatment */
>
diff mbox series

Patch

diff --git a/sysdeps/unix/sysv/linux/bits/mman-linux.h b/sysdeps/unix/sysv/linux/bits/mman-linux.h
index 70edeb6d60..09b118bb70 100644
--- a/sysdeps/unix/sysv/linux/bits/mman-linux.h
+++ b/sysdeps/unix/sysv/linux/bits/mman-linux.h
@@ -67,12 +67,6 @@ 
 #define MS_SYNC		4		/* Synchronous memory sync.  */
 #define MS_INVALIDATE	2		/* Invalidate the caches.  */
 
-/* Flags for `mremap'.  */
-#ifdef __USE_GNU
-# define MREMAP_MAYMOVE	1
-# define MREMAP_FIXED	2
-#endif
-
 /* Advice to `madvise'.  */
 #ifdef __USE_MISC
 # define MADV_NORMAL	  0	/* No further special treatment.  */
diff --git a/sysdeps/unix/sysv/linux/bits/mman-shared.h b/sysdeps/unix/sysv/linux/bits/mman-shared.h
index d15ba95c9d..54823e3724 100644
--- a/sysdeps/unix/sysv/linux/bits/mman-shared.h
+++ b/sysdeps/unix/sysv/linux/bits/mman-shared.h
@@ -21,6 +21,10 @@ 
 #endif
 
 #ifdef __USE_GNU
+/* Flags for mremap.  */
+# define MREMAP_MAYMOVE	1
+# define MREMAP_FIXED	2
+
 /* Flags for memfd_create.  */
 # ifndef MFD_CLOEXEC
 #  define MFD_CLOEXEC 1U
diff --git a/sysdeps/unix/sysv/linux/hppa/bits/mman.h b/sysdeps/unix/sysv/linux/hppa/bits/mman.h
index 1c7d3708e6..fd07a65868 100644
--- a/sysdeps/unix/sysv/linux/hppa/bits/mman.h
+++ b/sysdeps/unix/sysv/linux/hppa/bits/mman.h
@@ -76,12 +76,6 @@ 
 #define MCL_FUTURE	2		/* Lock all future mappings */
 #define MCL_ONFAULT	4		/* Lock all pages that are faulted in */
 
-/* Flags for `mremap'.  */
-#ifdef __USE_GNU
-# define MREMAP_MAYMOVE 1
-# define MREMAP_FIXED	2
-#endif
-
 /* Advice to "madvise"  */
 #ifdef __USE_MISC
 # define MADV_NORMAL	  0	/* No further special treatment */