diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-05-15 11:32:30 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-05-16 15:47:51 +0200 |
commit | 501bdb5dd61afc714a098cd5ff441bd114584f75 (patch) | |
tree | 70bbd943a166dc4775cd553263bc04b0bd3ff0be /sysdeps/unix/sysv/linux | |
parent | 61d64408a1f42b0340d37ea0c90a9f028ffb1bfd (diff) | |
download | glibc-501bdb5dd61afc714a098cd5ff441bd114584f75.tar glibc-501bdb5dd61afc714a098cd5ff441bd114584f75.tar.gz glibc-501bdb5dd61afc714a098cd5ff441bd114584f75.tar.bz2 glibc-501bdb5dd61afc714a098cd5ff441bd114584f75.zip |
Linux: Remove remnants of the getcpu cache
The getcpu cache was removed from the kernel in Linux 2.6.24. glibc
support from the sched_getcpu implementation was removed in commit
dd26c44403582fdf10d663170f947dfe4b3207a0 ("Consolidate sched_getcpu").
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/pthread_setaffinity.c | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sched_setaffinity.c | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c | 14 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c | 14 |
4 files changed, 0 insertions, 38 deletions
diff --git a/sysdeps/unix/sysv/linux/pthread_setaffinity.c b/sysdeps/unix/sysv/linux/pthread_setaffinity.c index 264d677c29..b0bd90c324 100644 --- a/sysdeps/unix/sysv/linux/pthread_setaffinity.c +++ b/sysdeps/unix/sysv/linux/pthread_setaffinity.c @@ -33,11 +33,6 @@ __pthread_setaffinity_new (pthread_t th, size_t cpusetsize, res = INTERNAL_SYSCALL_CALL (sched_setaffinity, pd->tid, cpusetsize, cpuset); -#ifdef RESET_VGETCPU_CACHE - if (!INTERNAL_SYSCALL_ERROR_P (res)) - RESET_VGETCPU_CACHE (); -#endif - return (INTERNAL_SYSCALL_ERROR_P (res) ? INTERNAL_SYSCALL_ERRNO (res) : 0); diff --git a/sysdeps/unix/sysv/linux/sched_setaffinity.c b/sysdeps/unix/sysv/linux/sched_setaffinity.c index fc2c692783..978291fc3e 100644 --- a/sysdeps/unix/sysv/linux/sched_setaffinity.c +++ b/sysdeps/unix/sysv/linux/sched_setaffinity.c @@ -32,11 +32,6 @@ __sched_setaffinity_new (pid_t pid, size_t cpusetsize, const cpu_set_t *cpuset) { int result = INLINE_SYSCALL (sched_setaffinity, 3, pid, cpusetsize, cpuset); -#ifdef RESET_VGETCPU_CACHE - if (result != -1) - RESET_VGETCPU_CACHE (); -#endif - return result; } libc_hidden_def (__sched_setaffinity_new) diff --git a/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c b/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c deleted file mode 100644 index a7bbe38156..0000000000 --- a/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <tls.h> - -#define RESET_VGETCPU_CACHE() \ - do { \ - asm volatile ("movl %0, %%fs:%P1\n\t" \ - "movl %0, %%fs:%P2" \ - : \ - : "ir" (0), "i" (offsetof (struct pthread, \ - header.vgetcpu_cache[0])), \ - "i" (offsetof (struct pthread, \ - header.vgetcpu_cache[1]))); \ - } while (0) - -#include <sysdeps/unix/sysv/linux/pthread_setaffinity.c> diff --git a/sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c b/sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c deleted file mode 100644 index d1101c56f5..0000000000 --- a/sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <tls.h> - -#define RESET_VGETCPU_CACHE() \ - do { \ - asm volatile ("movl %0, %%fs:%P1\n\t" \ - "movl %0, %%fs:%P2" \ - : \ - : "ir" (0), "i" (offsetof (struct pthread, \ - header.vgetcpu_cache[0])), \ - "i" (offsetof (struct pthread, \ - header.vgetcpu_cache[1]))); \ - } while (0) - -#include "../sched_setaffinity.c" |