olga / rpms / glibc

Forked from rpms/glibc 5 years ago
Clone

Blame SOURCES/glibc-rh1505492-undef-25.patch

00db10
commit 93a6d0820430bfe3d09695a1376c07abf6d2214f
00db10
Author: Roland McGrath <roland@hack.frob.com>
00db10
Date:   Fri Jun 20 19:50:16 2014 -0700
00db10
00db10
    Clean up stack-coloring macros.
00db10
00db10
Conflicts:
00db10
	sysdeps/x86_64/nptl/Makefile
00db10
00db10
File change was applied to nptl/sysdeps/x86_64/Makefile instead.
00db10
00db10
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c
00db10
index 2c126fd4ae447b25..0fba6ce3474e8b35 100644
00db10
--- a/nptl/allocatestack.c
00db10
+++ b/nptl/allocatestack.c
00db10
@@ -30,6 +30,7 @@
00db10
 #include <list.h>
00db10
 #include <lowlevellock.h>
00db10
 #include <kernel-features.h>
00db10
+#include <stack-aliasing.h>
00db10
 
00db10
 
00db10
 #ifndef NEED_SEPARATE_REGISTER_STACK
00db10
diff --git a/nptl/stack-aliasing.h b/nptl/stack-aliasing.h
00db10
new file mode 100644
00db10
index 0000000000000000..526b54e18f7e0a27
00db10
--- /dev/null
00db10
+++ b/nptl/stack-aliasing.h
00db10
@@ -0,0 +1,29 @@
00db10
+/* Define macros for stack address aliasing issues for NPTL.  Stub version.
00db10
+   Copyright (C) 2014 Free Software Foundation, Inc.
00db10
+   This file is part of the GNU C Library.
00db10
+
00db10
+   The GNU C Library is free software; you can redistribute it and/or
00db10
+   modify it under the terms of the GNU Lesser General Public
00db10
+   License as published by the Free Software Foundation; either
00db10
+   version 2.1 of the License, or (at your option) any later version.
00db10
+
00db10
+   The GNU C Library is distributed in the hope that it will be useful,
00db10
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
00db10
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00db10
+   Lesser General Public License for more details.
00db10
+
00db10
+   You should have received a copy of the GNU Lesser General Public
00db10
+   License along with the GNU C Library; if not, see
00db10
+   <http://www.gnu.org/licenses/>.  */
00db10
+
00db10
+/* This is a number of bytes (less than a page) by which to "color" the
00db10
+   starting stack address of new threads.  This number is multiplied by the
00db10
+   number of threads created so far and then truncated modulo page size,
00db10
+   to get a roughly even distribution of values for different threads.  */
00db10
+#define COLORING_INCREMENT      0
00db10
+
00db10
+/* This is a number of bytes that is an alignment that should be avoided
00db10
+   when choosing the exact size of a new thread's stack.  If the size
00db10
+   chosen is aligned to this, an extra page will be added to render the
00db10
+   size off-aligned.  */
00db10
+#define MULTI_PAGE_ALIASING     0
00db10
diff --git a/nptl/sysdeps/x86_64/Makefile b/nptl/sysdeps/x86_64/Makefile
00db10
index d34dea709b363d2a..e2c47764e6e38c36 100644
00db10
--- a/nptl/sysdeps/x86_64/Makefile
00db10
+++ b/nptl/sysdeps/x86_64/Makefile
00db10
@@ -18,10 +18,3 @@
00db10
 ifeq ($(subdir),csu)
00db10
 gen-as-const-headers += tcb-offsets.sym
00db10
 endif
00db10
-
00db10
-ifeq ($(subdir),nptl)
00db10
-# P4s have problems with 4M aliasing.  We disturb the allocation of stacks
00db10
-# just enough so the subsequent allocations do not use stack address
00db10
-# (mod 4M) == 0.
00db10
-CFLAGS-pthread_create.c += -DMULTI_PAGE_ALIASING=65536
00db10
-endif
00db10
diff --git a/sysdeps/i386/i686/stack-aliasing.h b/sysdeps/i386/i686/stack-aliasing.h
00db10
new file mode 100644
00db10
index 0000000000000000..1e35ceb2061d60f9
00db10
--- /dev/null
00db10
+++ b/sysdeps/i386/i686/stack-aliasing.h
00db10
@@ -0,0 +1,28 @@
00db10
+/* Define macros for stack address aliasing issues for NPTL.  i686 version.
00db10
+   Copyright (C) 2014 Free Software Foundation, Inc.
00db10
+   This file is part of the GNU C Library.
00db10
+
00db10
+   The GNU C Library is free software; you can redistribute it and/or
00db10
+   modify it under the terms of the GNU Lesser General Public
00db10
+   License as published by the Free Software Foundation; either
00db10
+   version 2.1 of the License, or (at your option) any later version.
00db10
+
00db10
+   The GNU C Library is distributed in the hope that it will be useful,
00db10
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
00db10
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00db10
+   Lesser General Public License for more details.
00db10
+
00db10
+   You should have received a copy of the GNU Lesser General Public
00db10
+   License along with the GNU C Library; if not, see
00db10
+   <http://www.gnu.org/licenses/>.  */
00db10
+
00db10
+/* It turns out that stack coloring is in general not good on P4s.  Some
00db10
+   applications will benefit.  We will probably have a configuration option
00db10
+   at some point.  To enable coloring, set this to 128.  */
00db10
+#define COLORING_INCREMENT      0
00db10
+
00db10
+/* What is useful is to avoid the 64k aliasing problem which reliably
00db10
+   happens if all stacks use sizes which are a multiple of 64k.  Tell
00db10
+   the stack allocator to disturb this by allocation one more page if
00db10
+   necessary.  */
00db10
+#define MULTI_PAGE_ALIASING     65536
00db10
diff --git a/sysdeps/x86_64/stack-aliasing.h b/sysdeps/x86_64/stack-aliasing.h
00db10
new file mode 100644
00db10
index 0000000000000000..2efdacb3b4c44c40
00db10
--- /dev/null
00db10
+++ b/sysdeps/x86_64/stack-aliasing.h
00db10
@@ -0,0 +1 @@
00db10
+#include <sysdeps/i386/i686/stack-aliasing.h>