From 88ffb39dc664bfec391c4d927f8c2145141bb7f0 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Mon, 20 Aug 2018 18:23:28 +0200 Subject: __readlink_chk: Assume HAVE_INLINED_SYSCALLS HAVE_INLINED_SYSCALLS is always defined on Linux. Switch to INLINE_SYSCALL_CALL as well. --- ChangeLog | 5 +++++ sysdeps/unix/sysv/linux/generic/readlink_chk.c | 8 +------- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7893962115..3807de147b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-08-20 Florian Weimer + + * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove + HAVE_INLINED_SYSCALLS conditionals. Use INLINE_SYSCALL_CALL. + 2018-08-20 Joseph Myers * sysdeps/unix/sysv/linux/sys/signalfd.h (struct diff --git a/sysdeps/unix/sysv/linux/generic/readlink_chk.c b/sysdeps/unix/sysv/linux/generic/readlink_chk.c index 9240408a6b..52d1f5b522 100644 --- a/sysdeps/unix/sysv/linux/generic/readlink_chk.c +++ b/sysdeps/unix/sysv/linux/generic/readlink_chk.c @@ -19,10 +19,8 @@ #include #include #include -#ifdef HAVE_INLINED_SYSCALLS # include # include -#endif ssize_t @@ -31,9 +29,5 @@ __readlink_chk (const char *path, void *buf, size_t len, size_t buflen) if (len > buflen) __chk_fail (); -#ifdef HAVE_INLINED_SYSCALLS - return INLINE_SYSCALL (readlinkat, 4, AT_FDCWD, path, buf, len); -#else - return __readlink (path, buf, len); -#endif + return INLINE_SYSCALL_CALL (readlinkat, AT_FDCWD, path, buf, len); } -- cgit v1.2.1