c6d234
commit f3aae3f3eb4e4345413dc238e941cdb52f747d16
c6d234
Author: Joseph Myers <joseph@codesourcery.com>
c6d234
Date:   Fri Feb 8 01:12:11 2013 +0000
c6d234
c6d234
    Remove CHECK_1 and CHECK_1_NULL_OK.
c6d234
c6d234
Conflicts:
c6d234
	sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
c6d234
c6d234
Change was already part of glibc-rh977110-2.patch.
c6d234
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c b/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c
c6d234
index 11194f6da7e56429..90d115577bad42ec 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/aarch64/gettimeofday.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 #undef __gettimeofday
c6d234
 
c6d234
 #include <bits/libc-vdso.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Get the current time of day and timezone information,
c6d234
    putting it into *tv and *tz.  If tz is null, *tz is not filled.
c6d234
@@ -32,7 +31,7 @@ __gettimeofday (tv, tz)
c6d234
      struct timeval *tv;
c6d234
      struct timezone *tz;
c6d234
 {
c6d234
-  return INLINE_VSYSCALL (gettimeofday, 2, CHECK_1 (tv), CHECK_1 (tz));
c6d234
+  return INLINE_VSYSCALL (gettimeofday, 2, tv, tz);
c6d234
 }
c6d234
 libc_hidden_def (__gettimeofday)
c6d234
 weak_alias (__gettimeofday, gettimeofday)
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c b/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c
c6d234
index 82c734b9a06081e7..690efb470c784de8 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/alpha/msgctl.c
c6d234
@@ -21,13 +21,12 @@
c6d234
 #include <ipc_priv.h>
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 
c6d234
 int
c6d234
 __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (msgctl, 3, msqid, cmd | __IPC_64, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (msgctl, 3, msqid, cmd | __IPC_64, buf);
c6d234
 }
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c b/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c
c6d234
index fb825a80deb2a9be..009ef651cd2ffdb5 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/alpha/shmctl.c
c6d234
@@ -22,13 +22,12 @@
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
 #include <bits/wordsize.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 
c6d234
 int
c6d234
 __new_shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (shmctl, 3, shmid, cmd | __IPC_64, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (shmctl, 3, shmid, cmd | __IPC_64, buf);
c6d234
 }
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
c6d234
index bb0d53d54cdcf133..403b6d8fd0c9b92f 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
c6d234
@@ -26,7 +26,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* The variable is shared between all wrappers around signal handling
c6d234
    functions which have RT equivalents.  This is the definition.  */
c6d234
@@ -42,8 +41,7 @@ __libc_sigaction (sig, act, oact)
c6d234
 {
c6d234
   /* XXX The size argument hopefully will have to be changed to the
c6d234
      real size of the user-level sigset_t.  */
c6d234
-  return INLINE_SYSCALL (rt_sigaction, 4, sig,
c6d234
-			 CHECK_1_NULL_OK (act), CHECK_1_NULL_OK (oact), _NSIG / 8);
c6d234
+  return INLINE_SYSCALL (rt_sigaction, 4, sig, act, oact, _NSIG / 8);
c6d234
 }
c6d234
 libc_hidden_def (__libc_sigaction)
c6d234
 
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c
c6d234
index 91c6f1ab28774288..327e951808509c31 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/msgctl.c
c6d234
@@ -20,14 +20,12 @@
c6d234
 #include <ipc_priv.h>
c6d234
 #include <sysdep.h>
c6d234
 
c6d234
-#include <bp-checks.h>
c6d234
-
c6d234
 int __msgctl (int msqid, int cmd, struct msqid_ds *buf);
c6d234
 
c6d234
 int
c6d234
 __msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (msgctl, 3, msqid, cmd | __IPC_64, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (msgctl, 3, msqid, cmd | __IPC_64, buf);
c6d234
 }
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c b/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c
c6d234
index da07427c3aa6049d..911de66ccd45610f 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/mips/mips64/shmctl.c
c6d234
@@ -20,14 +20,12 @@
c6d234
 #include <ipc_priv.h>
c6d234
 #include <sysdep.h>
c6d234
 
c6d234
-#include <bp-checks.h>
c6d234
-
c6d234
 int __shmctl (int shmid, int cmd, struct shmid_ds *buf);
c6d234
 
c6d234
 int
c6d234
 __shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (shmctl, 3, shmid, cmd | __IPC_64, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (shmctl, 3, shmid, cmd | __IPC_64, buf);
c6d234
 }
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
diff --git a/ports/sysdeps/unix/sysv/linux/mips/ustat.c b/ports/sysdeps/unix/sysv/linux/mips/ustat.c
c6d234
index aa84b536245bbef3..d070403faa9143c9 100644
c6d234
--- a/ports/sysdeps/unix/sysv/linux/mips/ustat.c
c6d234
+++ b/ports/sysdeps/unix/sysv/linux/mips/ustat.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 int
c6d234
 ustat (dev_t dev, struct ustat *ubuf)
c6d234
@@ -32,5 +31,5 @@ ustat (dev_t dev, struct ustat *ubuf)
c6d234
   /* We must convert the value to dev_t type used by the kernel.  */
c6d234
   k_dev = ((major (dev) & 0xff) << 8) | (minor (dev) & 0xff);
c6d234
 
c6d234
-  return INLINE_SYSCALL (ustat, 2, k_dev, CHECK_1 (ubuf));
c6d234
+  return INLINE_SYSCALL (ustat, 2, k_dev, ubuf);
c6d234
 }
c6d234
diff --git a/sysdeps/generic/bp-checks.h b/sysdeps/generic/bp-checks.h
c6d234
index 980f3b68a84df8cf..90a07fc10fde3a84 100644
c6d234
--- a/sysdeps/generic/bp-checks.h
c6d234
+++ b/sysdeps/generic/bp-checks.h
c6d234
@@ -36,18 +36,11 @@
c6d234
 /* Same as CHECK_N, but tolerate ARG == NULL.  */
c6d234
 # define CHECK_N_NULL_OK(ARG, N) _CHECK_N ((ARG), (N), __ptrvalue (ARG))
c6d234
 
c6d234
-/* Check bounds of a pointer seated to a single object.  */
c6d234
-# define CHECK_1(ARG) CHECK_N ((ARG), 1)
c6d234
-/* Same as CHECK_1, but tolerate ARG == NULL.  */
c6d234
-# define CHECK_1_NULL_OK(ARG) CHECK_N_NULL_OK ((ARG), 1)
c6d234
-
c6d234
 #else /* !__BOUNDED_POINTERS__ */
c6d234
 
c6d234
 /* Do nothing if not compiling with -fbounded-pointers.  */
c6d234
 
c6d234
 # define BOUNDS_VIOLATED
c6d234
-# define CHECK_1(ARG) (ARG)
c6d234
-# define CHECK_1_NULL_OK(ARG) (ARG)
c6d234
 # define CHECK_N(ARG, N) (ARG)
c6d234
 # define CHECK_N_NULL_OK(ARG, N) (ARG)
c6d234
 
c6d234
diff --git a/sysdeps/unix/sysv/linux/fxstat.c b/sysdeps/unix/sysv/linux/fxstat.c
c6d234
index e6ec9dee7fc044ea..369ceb818267086c 100644
c6d234
--- a/sysdeps/unix/sysv/linux/fxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/fxstat.c
c6d234
@@ -28,7 +28,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <xstatconv.h>
c6d234
 
c6d234
@@ -37,7 +36,7 @@ int
c6d234
 __fxstat (int vers, int fd, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (fstat, 2, fd, (struct kernel_stat *) buf);
c6d234
 
c6d234
 #ifdef STAT_IS_KERNEL_STAT
c6d234
   errno = EINVAL;
c6d234
diff --git a/sysdeps/unix/sysv/linux/fxstat64.c b/sysdeps/unix/sysv/linux/fxstat64.c
c6d234
index b2ad48bdb76e0b39..ca948c64c247dc22 100644
c6d234
--- a/sysdeps/unix/sysv/linux/fxstat64.c
c6d234
+++ b/sysdeps/unix/sysv/linux/fxstat64.c
c6d234
@@ -23,7 +23,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -33,7 +32,7 @@ int
c6d234
 ___fxstat64 (int vers, int fd, struct stat64 *buf)
c6d234
 {
c6d234
   int result;
c6d234
-  result = INLINE_SYSCALL (fstat64, 2, fd, CHECK_1 (buf));
c6d234
+  result = INLINE_SYSCALL (fstat64, 2, fd, buf);
c6d234
 #if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
c6d234
   if (__builtin_expect (!result, 1) && buf->__st_ino != (__ino_t) buf->st_ino)
c6d234
     buf->st_ino = buf->__st_ino;
c6d234
diff --git a/sysdeps/unix/sysv/linux/fxstatat.c b/sysdeps/unix/sysv/linux/fxstatat.c
c6d234
index de98e667c76f9b3e..127f979adf050b45 100644
c6d234
--- a/sysdeps/unix/sysv/linux/fxstatat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/fxstatat.c
c6d234
@@ -29,7 +29,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
 #include <xstatconv.h>
c6d234
@@ -110,10 +109,10 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
c6d234
     {
c6d234
       if (flag & AT_SYMLINK_NOFOLLOW)
c6d234
 	result = INTERNAL_SYSCALL (lstat, err, 2, file,
c6d234
-				   CHECK_1 ((struct kernel_stat *) st));
c6d234
+				   (struct kernel_stat *) st);
c6d234
       else
c6d234
 	result = INTERNAL_SYSCALL (stat, err, 2, file,
c6d234
-				   CHECK_1 ((struct kernel_stat *) st));
c6d234
+				   (struct kernel_stat *) st);
c6d234
 
c6d234
       if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
c6d234
 	return result;
c6d234
diff --git a/sysdeps/unix/sysv/linux/fxstatat64.c b/sysdeps/unix/sysv/linux/fxstatat64.c
c6d234
index 10488b6c1daa210e..a14fd78c1cbaca19 100644
c6d234
--- a/sysdeps/unix/sysv/linux/fxstatat64.c
c6d234
+++ b/sysdeps/unix/sysv/linux/fxstatat64.c
c6d234
@@ -25,7 +25,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -99,9 +98,9 @@ __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
c6d234
     }
c6d234
 
c6d234
   if (flag & AT_SYMLINK_NOFOLLOW)
c6d234
-    result = INTERNAL_SYSCALL (lstat64, err, 2, file, CHECK_1 (st));
c6d234
+    result = INTERNAL_SYSCALL (lstat64, err, 2, file, st);
c6d234
   else
c6d234
-    result = INTERNAL_SYSCALL (stat64, err, 2, file, CHECK_1 (st));
c6d234
+    result = INTERNAL_SYSCALL (stat64, err, 2, file, st);
c6d234
   if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
c6d234
     {
c6d234
 # if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/fxstat.c b/sysdeps/unix/sysv/linux/i386/fxstat.c
c6d234
index a1a950ee7aff64f9..323039927e1687a3 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/fxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/fxstat.c
c6d234
@@ -27,7 +27,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -40,7 +39,7 @@ __fxstat (int vers, int fd, struct stat *buf)
c6d234
   int result;
c6d234
 
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (fstat, 2, fd, (struct kernel_stat *) buf);
c6d234
 
c6d234
   {
c6d234
     struct stat64 buf64;
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/fxstatat.c b/sysdeps/unix/sysv/linux/i386/fxstatat.c
c6d234
index 010f637155d35d76..ad3a386864f8b04b 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/fxstatat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/fxstatat.c
c6d234
@@ -29,7 +29,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -103,10 +102,10 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
c6d234
     {
c6d234
       if (flag & AT_SYMLINK_NOFOLLOW)
c6d234
 	result = INTERNAL_SYSCALL (lstat, err, 2, file,
c6d234
-				   CHECK_1 ((struct kernel_stat *) st));
c6d234
+				   (struct kernel_stat *) st);
c6d234
       else
c6d234
 	result = INTERNAL_SYSCALL (stat, err, 2, file,
c6d234
-				   CHECK_1 ((struct kernel_stat *) st));
c6d234
+				   (struct kernel_stat *) st);
c6d234
       goto out;
c6d234
     }
c6d234
 
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/getresgid.c b/sysdeps/unix/sysv/linux/i386/getresgid.c
c6d234
index d9ce513b1d80387d..46a3cccacb520602 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/getresgid.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/getresgid.c
c6d234
@@ -23,15 +23,13 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Consider moving to syscalls.list.  */
c6d234
 
c6d234
 int
c6d234
 __getresgid (gid_t *rgid, gid_t *egid, gid_t *sgid)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (getresgid32, 3, CHECK_1 (rgid),
c6d234
-			 CHECK_1 (egid), CHECK_1 (sgid));
c6d234
+  return INLINE_SYSCALL (getresgid32, 3, rgid, egid, sgid);
c6d234
 }
c6d234
 libc_hidden_def (__getresgid)
c6d234
 weak_alias (__getresgid, getresgid)
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/getresuid.c b/sysdeps/unix/sysv/linux/i386/getresuid.c
c6d234
index f9c3180fb1eb846e..42e68384da26b5db 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/getresuid.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/getresuid.c
c6d234
@@ -23,15 +23,13 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Consider moving to syscalls.list.  */
c6d234
 
c6d234
 int
c6d234
 __getresuid (uid_t *ruid, uid_t *euid, uid_t *suid)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (getresuid32, 3, CHECK_1 (ruid),
c6d234
-			 CHECK_1 (euid), CHECK_1 (suid));
c6d234
+  return INLINE_SYSCALL (getresuid32, 3, ruid, euid, suid);
c6d234
 }
c6d234
 libc_hidden_def (__getresuid)
c6d234
 weak_alias (__getresuid, getresuid)
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/lxstat.c b/sysdeps/unix/sysv/linux/i386/lxstat.c
c6d234
index 9be5ff0f0e382c7e..97b237404f8c8822 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/lxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/lxstat.c
c6d234
@@ -27,7 +27,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -41,7 +40,7 @@ __lxstat (int vers, const char *name, struct stat *buf)
c6d234
   int result;
c6d234
 
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (lstat, 2, name, CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (lstat, 2, name, (struct kernel_stat *) buf);
c6d234
 
c6d234
   {
c6d234
     struct stat64 buf64;
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/msgctl.c b/sysdeps/unix/sysv/linux/i386/msgctl.c
c6d234
index 2125ae192c12af99..7d009801b16fbdba 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/msgctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/msgctl.c
c6d234
@@ -23,7 +23,6 @@
c6d234
 #include <sysdep.h>
c6d234
 #include <string.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
 
c6d234
@@ -56,8 +55,7 @@ int
c6d234
 attribute_compat_text_section
c6d234
 __old_msgctl (int msqid, int cmd, struct __old_msqid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
c6d234
-			 msqid, cmd, 0, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, buf);
c6d234
 }
c6d234
 compat_symbol (libc, __old_msgctl, msgctl, GLIBC_2_0);
c6d234
 #endif
c6d234
@@ -66,7 +64,7 @@ int
c6d234
 __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
 {
c6d234
   return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
c6d234
-			 msqid, cmd | __IPC_64, 0, CHECK_1 (buf));
c6d234
+			 msqid, cmd | __IPC_64, 0, buf);
c6d234
 }
c6d234
 
c6d234
 versioned_symbol (libc, __new_msgctl, msgctl, GLIBC_2_2);
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/setrlimit.c b/sysdeps/unix/sysv/linux/i386/setrlimit.c
c6d234
index 7683b858f7c9bb05..7d0840ded5fe3c70 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/setrlimit.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/setrlimit.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
 #include <shlib-compat.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 extern int __new_setrlimit (enum __rlimit_resource resource,
c6d234
 			    const struct rlimit *__unboundedrlimits);
c6d234
@@ -32,7 +31,7 @@ extern int __new_setrlimit (enum __rlimit_resource resource,
c6d234
 int
c6d234
 __new_setrlimit (enum __rlimit_resource resource, const struct rlimit *rlimits)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (setrlimit, 2, resource, CHECK_1 (rlimits));
c6d234
+  return INLINE_SYSCALL (setrlimit, 2, resource, rlimits);
c6d234
 }
c6d234
 
c6d234
 weak_alias (__new_setrlimit, __setrlimit);
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/shmctl.c b/sysdeps/unix/sysv/linux/i386/shmctl.c
c6d234
index dd2167d9a78d524f..a1f4feb3fe1c815c 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/shmctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/shmctl.c
c6d234
@@ -24,7 +24,6 @@
c6d234
 #include <string.h>
c6d234
 #include <sys/syscall.h>
c6d234
 #include <bits/wordsize.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <shlib-compat.h>
c6d234
 
c6d234
@@ -63,8 +62,7 @@ int
c6d234
 attribute_compat_text_section
c6d234
 __old_shmctl (int shmid, int cmd, struct __old_shmid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl,
c6d234
-			 shmid, cmd, 0, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0, buf);
c6d234
 }
c6d234
 compat_symbol (libc, __old_shmctl, shmctl, GLIBC_2_0);
c6d234
 #endif
c6d234
@@ -73,7 +71,7 @@ int
c6d234
 __new_shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
 {
c6d234
   return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl,
c6d234
-			 shmid, cmd | __IPC_64, 0, CHECK_1 (buf));
c6d234
+			 shmid, cmd | __IPC_64, 0, buf);
c6d234
 }
c6d234
 
c6d234
 versioned_symbol (libc, __new_shmctl, shmctl, GLIBC_2_2);
c6d234
diff --git a/sysdeps/unix/sysv/linux/i386/xstat.c b/sysdeps/unix/sysv/linux/i386/xstat.c
c6d234
index e44599c85a836419..f063ac98d849ed7b 100644
c6d234
--- a/sysdeps/unix/sysv/linux/i386/xstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/i386/xstat.c
c6d234
@@ -27,7 +27,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -41,7 +40,7 @@ __xstat (int vers, const char *name, struct stat *buf)
c6d234
   int result;
c6d234
 
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (stat, 2, name, CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (stat, 2, name, (struct kernel_stat *) buf);
c6d234
 
c6d234
   {
c6d234
     struct stat64 buf64;
c6d234
diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c
c6d234
index 62b4650d8f771854..15f93b09ec1661f1 100644
c6d234
--- a/sysdeps/unix/sysv/linux/lxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/lxstat.c
c6d234
@@ -27,7 +27,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <xstatconv.h>
c6d234
 
c6d234
@@ -36,8 +35,7 @@ int
c6d234
 __lxstat (int vers, const char *name, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (lstat, 2, name,
c6d234
-			   CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (lstat, 2, name, (struct kernel_stat *) buf);
c6d234
 
c6d234
 #ifdef STAT_IS_KERNEL_STAT
c6d234
   errno = EINVAL;
c6d234
diff --git a/sysdeps/unix/sysv/linux/lxstat64.c b/sysdeps/unix/sysv/linux/lxstat64.c
c6d234
index d5d9f93f782d0221..c4420904f936ec93 100644
c6d234
--- a/sysdeps/unix/sysv/linux/lxstat64.c
c6d234
+++ b/sysdeps/unix/sysv/linux/lxstat64.c
c6d234
@@ -23,7 +23,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -32,7 +31,7 @@ int
c6d234
 ___lxstat64 (int vers, const char *name, struct stat64 *buf)
c6d234
 {
c6d234
   int result;
c6d234
-  result = INLINE_SYSCALL (lstat64, 2, name, CHECK_1 (buf));
c6d234
+  result = INLINE_SYSCALL (lstat64, 2, name, buf);
c6d234
 #if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
c6d234
   if (__builtin_expect (!result, 1) && buf->__st_ino != (__ino_t) buf->st_ino)
c6d234
     buf->st_ino = buf->__st_ino;
c6d234
diff --git a/sysdeps/unix/sysv/linux/msgctl.c b/sysdeps/unix/sysv/linux/msgctl.c
c6d234
index 7819f3fbf76af81f..00285a7103d70cea 100644
c6d234
--- a/sysdeps/unix/sysv/linux/msgctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/msgctl.c
c6d234
@@ -25,7 +25,6 @@
c6d234
 #include <string.h>
c6d234
 #include <sys/syscall.h>
c6d234
 #include <shlib-compat.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -58,7 +57,7 @@ int
c6d234
 attribute_compat_text_section
c6d234
 __old_msgctl (int msqid, int cmd, struct __old_msqid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, buf);
c6d234
 }
c6d234
 compat_symbol (libc, __old_msgctl, msgctl, GLIBC_2_0);
c6d234
 #endif
c6d234
@@ -68,7 +67,7 @@ __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
 {
c6d234
 #if __ASSUME_IPC64 > 0
c6d234
   return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
c6d234
-			 msqid, cmd | __IPC_64, 0, CHECK_1 (buf));
c6d234
+			 msqid, cmd | __IPC_64, 0, buf);
c6d234
 #else
c6d234
   switch (cmd) {
c6d234
     case MSG_STAT:
c6d234
@@ -77,7 +76,7 @@ __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
       break;
c6d234
     default:
c6d234
       return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
c6d234
-			     msqid, cmd, 0, CHECK_1 (buf));
c6d234
+			     msqid, cmd, 0, buf);
c6d234
   }
c6d234
 
c6d234
   {
c6d234
@@ -87,7 +86,7 @@ __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
c6d234
     /* Unfortunately there is no way how to find out for sure whether
c6d234
        we should use old or new msgctl.  */
c6d234
     result = INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
c6d234
-			     msqid, cmd | __IPC_64, 0, CHECK_1 (buf));
c6d234
+			     msqid, cmd | __IPC_64, 0, buf);
c6d234
     if (result != -1 || errno != EINVAL)
c6d234
       return result;
c6d234
 
c6d234
diff --git a/sysdeps/unix/sysv/linux/ptrace.c b/sysdeps/unix/sysv/linux/ptrace.c
c6d234
index c18590d1cf27e88d..a75e5ba0a8ab6b53 100644
c6d234
--- a/sysdeps/unix/sysv/linux/ptrace.c
c6d234
+++ b/sysdeps/unix/sysv/linux/ptrace.c
c6d234
@@ -24,7 +24,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 long int
c6d234
 ptrace (enum __ptrace_request request, ...)
c6d234
@@ -43,77 +42,6 @@ ptrace (enum __ptrace_request request, ...)
c6d234
   if (request > 0 && request < 4)
c6d234
     data = &ret;
c6d234
 
c6d234
-#if __BOUNDED_POINTERS__
c6d234
-  switch (request)
c6d234
-    {
c6d234
-    case PTRACE_PEEKTEXT:
c6d234
-    case PTRACE_PEEKDATA:
c6d234
-    case PTRACE_PEEKUSER:
c6d234
-    case PTRACE_POKETEXT:
c6d234
-    case PTRACE_POKEDATA:
c6d234
-    case PTRACE_POKEUSER:
c6d234
-      (void) CHECK_1 ((int *) addr);
c6d234
-      (void) CHECK_1 ((int *) data);
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_GETREGS:
c6d234
-    case PTRACE_SETREGS:
c6d234
-#ifdef __i386__
c6d234
-      (void) CHECK_1 ((struct user_regs_struct *) data);
c6d234
-#else
c6d234
-      /* We don't know the size of data, so the best we can do is ensure
c6d234
-	 that `data' is valid for at least one word.  */
c6d234
-      (void) CHECK_1 ((int *) data);
c6d234
-#endif
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_GETFPREGS:
c6d234
-    case PTRACE_SETFPREGS:
c6d234
-#ifdef __i386__
c6d234
-      (void) CHECK_1 ((struct user_fpregs_struct *) data);
c6d234
-#else
c6d234
-      /* We don't know the size of data, so the best we can do is ensure
c6d234
-	 that `data' is valid for at least one word.  */
c6d234
-      (void) CHECK_1 ((int *) data);
c6d234
-#endif
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_GETFPXREGS:
c6d234
-    case PTRACE_SETFPXREGS:
c6d234
-#ifdef __i386__
c6d234
-      (void) CHECK_1 ((struct user_fpxregs_struct *) data);
c6d234
-#else
c6d234
-      /* We don't know the size of data, so the best we can do is ensure
c6d234
-	 that `data' is valid for at least one word.  */
c6d234
-      (void) CHECK_1 ((int *) data);
c6d234
-#endif
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_GETSIGINFO:
c6d234
-    case PTRACE_SETSIGINFO:
c6d234
-      (void) CHECK_1 ((siginfo_t *) data);
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_GETEVENTMSG:
c6d234
-      (void) CHECK_1 ((unsigned long *) data);
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_SETOPTIONS:
c6d234
-      (void) CHECK_1 ((long *) data);
c6d234
-      break;
c6d234
-
c6d234
-    case PTRACE_TRACEME:
c6d234
-    case PTRACE_CONT:
c6d234
-    case PTRACE_KILL:
c6d234
-    case PTRACE_SINGLESTEP:
c6d234
-    case PTRACE_ATTACH:
c6d234
-    case PTRACE_DETACH:
c6d234
-    case PTRACE_SYSCALL:
c6d234
-      /* Neither `data' nor `addr' needs any checks.  */
c6d234
-      break;
c6d234
-    };
c6d234
-#endif
c6d234
-
c6d234
   res = INLINE_SYSCALL (ptrace, 4, request, pid,
c6d234
 			__ptrvalue (addr), __ptrvalue (data));
c6d234
   if (res >= 0 && request > 0 && request < 4)
c6d234
diff --git a/sysdeps/unix/sysv/linux/s390/gettimeofday.c b/sysdeps/unix/sysv/linux/s390/gettimeofday.c
c6d234
index efbf1e8110f71cdb..d897e1a6b68c069a 100644
c6d234
--- a/sysdeps/unix/sysv/linux/s390/gettimeofday.c
c6d234
+++ b/sysdeps/unix/sysv/linux/s390/gettimeofday.c
c6d234
@@ -16,7 +16,6 @@
c6d234
    <http://www.gnu.org/licenses/>.  */
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
-#include <bp-checks.h>
c6d234
 #include <stddef.h>
c6d234
 #include <sys/time.h>
c6d234
 #include <time.h>
c6d234
@@ -33,7 +32,7 @@ __gettimeofday (tv, tz)
c6d234
      struct timeval *tv;
c6d234
      struct timezone *tz;
c6d234
 {
c6d234
-  return INLINE_VSYSCALL (gettimeofday, 2, CHECK_1 (tv), CHECK_1 (tz));
c6d234
+  return INLINE_VSYSCALL (gettimeofday, 2, tv, tz);
c6d234
 }
c6d234
 libc_hidden_def (__gettimeofday)
c6d234
 weak_alias (__gettimeofday, gettimeofday)
c6d234
diff --git a/sysdeps/unix/sysv/linux/shmctl.c b/sysdeps/unix/sysv/linux/shmctl.c
c6d234
index dbc965e29ca9c701..3fb6b0c0f203db08 100644
c6d234
--- a/sysdeps/unix/sysv/linux/shmctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/shmctl.c
c6d234
@@ -26,7 +26,6 @@
c6d234
 #include <sys/syscall.h>
c6d234
 #include <bits/wordsize.h>
c6d234
 #include <shlib-compat.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -65,8 +64,7 @@ int
c6d234
 attribute_compat_text_section
c6d234
 __old_shmctl (int shmid, int cmd, struct __old_shmid_ds *buf)
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid,
c6d234
-			 cmd, 0, CHECK_1_NULL_OK (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0, buf);
c6d234
 }
c6d234
 compat_symbol (libc, __old_shmctl, shmctl, GLIBC_2_0);
c6d234
 #endif
c6d234
@@ -76,7 +74,7 @@ __new_shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
 {
c6d234
 #if __ASSUME_IPC64 > 0
c6d234
   return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd | __IPC_64, 0,
c6d234
-			 CHECK_1 (buf));
c6d234
+			 buf);
c6d234
 #else
c6d234
   switch (cmd) {
c6d234
     case SHM_STAT:
c6d234
@@ -87,8 +85,7 @@ __new_shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
 #endif
c6d234
       break;
c6d234
     default:
c6d234
-      return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0,
c6d234
-			     CHECK_1 (buf));
c6d234
+      return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0, buf);
c6d234
   }
c6d234
 
c6d234
   {
c6d234
@@ -102,7 +99,7 @@ __new_shmctl (int shmid, int cmd, struct shmid_ds *buf)
c6d234
     /* Unfortunately there is no way how to find out for sure whether
c6d234
        we should use old or new shmctl.  */
c6d234
     result = INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd | __IPC_64, 0,
c6d234
-			     CHECK_1 (buf));
c6d234
+			     buf);
c6d234
     if (result != -1 || errno != EINVAL)
c6d234
       return result;
c6d234
 
c6d234
diff --git a/sysdeps/unix/sysv/linux/sigtimedwait.c b/sysdeps/unix/sysv/linux/sigtimedwait.c
c6d234
index 34834c0cb1f9e362..1cf24d0e47330b8a 100644
c6d234
--- a/sysdeps/unix/sysv/linux/sigtimedwait.c
c6d234
+++ b/sysdeps/unix/sysv/linux/sigtimedwait.c
c6d234
@@ -21,7 +21,6 @@
c6d234
 
c6d234
 #include <sysdep-cancel.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #ifdef __NR_rt_sigtimedwait
c6d234
 
c6d234
@@ -52,7 +51,7 @@ do_sigtimedwait (const sigset_t *set, siginfo_t *info,
c6d234
     /* XXX The size argument hopefully will have to be changed to the
c6d234
        real size of the user-level sigset_t.  */
c6d234
   int result = INLINE_SYSCALL (rt_sigtimedwait, 4, set,
c6d234
-			       CHECK_1 (info), timeout, _NSIG / 8);
c6d234
+			       info, timeout, _NSIG / 8);
c6d234
 
c6d234
   /* The kernel generates a SI_TKILL code in si_code in case tkill is
c6d234
      used.  tkill is transparently used in raise().  Since having
c6d234
diff --git a/sysdeps/unix/sysv/linux/sigwaitinfo.c b/sysdeps/unix/sysv/linux/sigwaitinfo.c
c6d234
index f70386a31bce66bd..0e38dff1be6cc21a 100644
c6d234
--- a/sysdeps/unix/sysv/linux/sigwaitinfo.c
c6d234
+++ b/sysdeps/unix/sysv/linux/sigwaitinfo.c
c6d234
@@ -23,7 +23,6 @@
c6d234
 
c6d234
 #include <sysdep-cancel.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #ifdef __NR_rt_sigtimedwait
c6d234
 
c6d234
@@ -53,7 +52,7 @@ do_sigwaitinfo (const sigset_t *set, siginfo_t *info)
c6d234
   /* XXX The size argument hopefully will have to be changed to the
c6d234
      real size of the user-level sigset_t.  */
c6d234
   int result = INLINE_SYSCALL (rt_sigtimedwait, 4, set,
c6d234
-			       CHECK_1 (info), NULL, _NSIG / 8);
c6d234
+			       info, NULL, _NSIG / 8);
c6d234
 
c6d234
   /* The kernel generates a SI_TKILL code in si_code in case tkill is
c6d234
      used.  tkill is transparently used in raise().  Since having
c6d234
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c b/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c
c6d234
index 98e06e3d0e7d0f46..3655426350652a7d 100644
c6d234
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Allows to control internal state and destruction of message queue
c6d234
    objects.  */
c6d234
@@ -33,5 +32,5 @@ msgctl (msqid, cmd, buf)
c6d234
      int cmd;
c6d234
      struct msqid_ds *buf;
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, buf);
c6d234
 }
c6d234
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c b/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c
c6d234
index eb3b4f3bab2a22a7..89f755a984044fa7 100644
c6d234
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c
c6d234
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Provide operations to control over shared memory segments.  */
c6d234
 
c6d234
@@ -32,5 +31,5 @@ shmctl (shmid, cmd, buf)
c6d234
      int cmd;
c6d234
      struct shmid_ds *buf;
c6d234
 {
c6d234
-  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0, CHECK_1 (buf));
c6d234
+  return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, shmid, cmd, 0, buf);
c6d234
 }
c6d234
diff --git a/sysdeps/unix/sysv/linux/ustat.c b/sysdeps/unix/sysv/linux/ustat.c
c6d234
index 70d6e89ba8f6cadf..007ae35997d9c3d6 100644
c6d234
--- a/sysdeps/unix/sysv/linux/ustat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/ustat.c
c6d234
@@ -22,7 +22,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 int
c6d234
 ustat (dev_t dev, struct ustat *ubuf)
c6d234
@@ -37,5 +36,5 @@ ustat (dev_t dev, struct ustat *ubuf)
c6d234
       return -1;
c6d234
     }
c6d234
 
c6d234
-  return INLINE_SYSCALL (ustat, 2, (unsigned int) k_dev, CHECK_1 (ubuf));
c6d234
+  return INLINE_SYSCALL (ustat, 2, (unsigned int) k_dev, ubuf);
c6d234
 }
c6d234
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c
c6d234
index e6366c9edbe31bcc..401db59272eb91cb 100644
c6d234
--- a/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/wordsize-64/fxstat.c
c6d234
@@ -27,14 +27,13 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Get information about the file FD in BUF.  */
c6d234
 int
c6d234
 __fxstat (int vers, int fd, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL || vers == _STAT_VER_LINUX)
c6d234
-    return INLINE_SYSCALL (fstat, 2, fd, CHECK_1 (buf));
c6d234
+    return INLINE_SYSCALL (fstat, 2, fd, buf);
c6d234
 
c6d234
   __set_errno (EINVAL);
c6d234
   return -1;
c6d234
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c b/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c
c6d234
index 3891e858af998003..f9289f4526e47fc6 100644
c6d234
--- a/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c
c6d234
@@ -29,7 +29,6 @@
c6d234
 #include <sysdep.h>
c6d234
 #include <kernel-features.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 
c6d234
 /* Get information about the file NAME relative to FD in ST.  */
c6d234
@@ -95,9 +94,9 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
c6d234
   INTERNAL_SYSCALL_DECL (err);
c6d234
 
c6d234
   if (flag & AT_SYMLINK_NOFOLLOW)
c6d234
-    res = INTERNAL_SYSCALL (lstat, err, 2, file, CHECK_1 (st));
c6d234
+    res = INTERNAL_SYSCALL (lstat, err, 2, file, st);
c6d234
   else
c6d234
-    res = INTERNAL_SYSCALL (stat, err, 2, file, CHECK_1 (st));
c6d234
+    res = INTERNAL_SYSCALL (stat, err, 2, file, st);
c6d234
 
c6d234
   if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (res, err), 0))
c6d234
     {
c6d234
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
c6d234
index f44778e787e5ad80..6830d567b5727875 100644
c6d234
--- a/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/wordsize-64/lxstat.c
c6d234
@@ -27,14 +27,13 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Get information about the file FD in BUF.  */
c6d234
 int
c6d234
 __lxstat (int vers, const char *name, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL || vers == _STAT_VER_LINUX)
c6d234
-    return INLINE_SYSCALL (lstat, 2, name, CHECK_1 (buf));
c6d234
+    return INLINE_SYSCALL (lstat, 2, name, buf);
c6d234
 
c6d234
   __set_errno (EINVAL);
c6d234
   return -1;
c6d234
diff --git a/sysdeps/unix/sysv/linux/wordsize-64/xstat.c b/sysdeps/unix/sysv/linux/wordsize-64/xstat.c
c6d234
index b4ab7b8fe9ebf2a8..3bee7a3fc88cd03a 100644
c6d234
--- a/sysdeps/unix/sysv/linux/wordsize-64/xstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/wordsize-64/xstat.c
c6d234
@@ -27,14 +27,13 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 /* Get information about the file NAME in BUF.  */
c6d234
 int
c6d234
 __xstat (int vers, const char *name, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL || vers == _STAT_VER_LINUX)
c6d234
-    return INLINE_SYSCALL (stat, 2, name, CHECK_1 (buf));
c6d234
+    return INLINE_SYSCALL (stat, 2, name, buf);
c6d234
 
c6d234
   __set_errno (EINVAL);
c6d234
   return -1;
c6d234
diff --git a/sysdeps/unix/sysv/linux/xstat.c b/sysdeps/unix/sysv/linux/xstat.c
c6d234
index 179ea9e30123fb81..a3c0c1ca42424830 100644
c6d234
--- a/sysdeps/unix/sysv/linux/xstat.c
c6d234
+++ b/sysdeps/unix/sysv/linux/xstat.c
c6d234
@@ -27,7 +27,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <xstatconv.h>
c6d234
 
c6d234
@@ -36,8 +35,7 @@ int
c6d234
 __xstat (int vers, const char *name, struct stat *buf)
c6d234
 {
c6d234
   if (vers == _STAT_VER_KERNEL)
c6d234
-    return INLINE_SYSCALL (stat, 2, name,
c6d234
-			   CHECK_1 ((struct kernel_stat *) buf));
c6d234
+    return INLINE_SYSCALL (stat, 2, name, (struct kernel_stat *) buf);
c6d234
 
c6d234
 #ifdef STAT_IS_KERNEL_STAT
c6d234
   errno = EINVAL;
c6d234
diff --git a/sysdeps/unix/sysv/linux/xstat64.c b/sysdeps/unix/sysv/linux/xstat64.c
c6d234
index 89976a68e9d86699..5c31a919828d311b 100644
c6d234
--- a/sysdeps/unix/sysv/linux/xstat64.c
c6d234
+++ b/sysdeps/unix/sysv/linux/xstat64.c
c6d234
@@ -23,7 +23,6 @@
c6d234
 
c6d234
 #include <sysdep.h>
c6d234
 #include <sys/syscall.h>
c6d234
-#include <bp-checks.h>
c6d234
 
c6d234
 #include <kernel-features.h>
c6d234
 
c6d234
@@ -33,7 +32,7 @@ int
c6d234
 ___xstat64 (int vers, const char *name, struct stat64 *buf)
c6d234
 {
c6d234
   int result;
c6d234
-  result = INLINE_SYSCALL (stat64, 2, name, CHECK_1 (buf));
c6d234
+  result = INLINE_SYSCALL (stat64, 2, name, buf);
c6d234
 #if defined _HAVE_STAT64___ST_INO && __ASSUME_ST_INO_64_BIT == 0
c6d234
   if (__builtin_expect (!result, 1) && buf->__st_ino != (__ino_t) buf->st_ino)
c6d234
     buf->st_ino = buf->__st_ino;