Message ID | 1500301787-25312-1-git-send-email-adhemerval.zanella@linaro.org |
---|---|
State | Accepted |
Commit | 852d63120783fae5bf85a067320dc4ba1ed59f11 |
Headers | show |
On 2017-07-17, at 10:29 AM, Adhemerval Zanella wrote: > Checked on x86_64-linux-gnu and the tst-preadwritev{64}v2 on > hppa-linux-gnu (although due the installed kernel on my testing system > the pwritev{64}v2 with an invalid flag still fails due a known kernel > issue [1]). > > [BZ #21780] > * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of > EOPNOTSUPP. > * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise. > * sysdeps/posix/pwritev2.c (pwritev2): Likewise. > * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise. > * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise. > * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise. > * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise. > * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise. Fixes the st-preadwritev{64}v2 test failures on hppa. Dave -- John David Anglin dave.anglin@bell.net
On 18/07/2017 08:40, John David Anglin wrote: > On 2017-07-17, at 10:29 AM, Adhemerval Zanella wrote: > >> Checked on x86_64-linux-gnu and the tst-preadwritev{64}v2 on >> hppa-linux-gnu (although due the installed kernel on my testing system >> the pwritev{64}v2 with an invalid flag still fails due a known kernel >> issue [1]). >> >> [BZ #21780] >> * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of >> EOPNOTSUPP. >> * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise. >> * sysdeps/posix/pwritev2.c (pwritev2): Likewise. >> * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise. >> * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise. >> * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise. >> * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise. >> * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise. > > Fixes the st-preadwritev{64}v2 test failures on hppa. Is it ok to push on freeze?
On 18/07/2017 16:02, Adhemerval Zanella wrote: > > > On 18/07/2017 08:40, John David Anglin wrote: >> On 2017-07-17, at 10:29 AM, Adhemerval Zanella wrote: >> >>> Checked on x86_64-linux-gnu and the tst-preadwritev{64}v2 on >>> hppa-linux-gnu (although due the installed kernel on my testing system >>> the pwritev{64}v2 with an invalid flag still fails due a known kernel >>> issue [1]). >>> >>> [BZ #21780] >>> * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of >>> EOPNOTSUPP. >>> * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise. >>> * sysdeps/posix/pwritev2.c (pwritev2): Likewise. >>> * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise. >>> * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise. >>> * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise. >>> * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise. >>> * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise. >> >> Fixes the st-preadwritev{64}v2 test failures on hppa. > > Is it ok to push on freeze? > If no one opposes it I will commit it shortly.
diff --git a/sysdeps/posix/preadv2.c b/sysdeps/posix/preadv2.c index 2a7cf11..d27f702 100644 --- a/sysdeps/posix/preadv2.c +++ b/sysdeps/posix/preadv2.c @@ -28,7 +28,7 @@ preadv2 (int fd, const struct iovec *vector, int count, OFF_T offset, { if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } diff --git a/sysdeps/posix/preadv64v2.c b/sysdeps/posix/preadv64v2.c index e084f3f..ce7cb40 100644 --- a/sysdeps/posix/preadv64v2.c +++ b/sysdeps/posix/preadv64v2.c @@ -25,7 +25,7 @@ preadv64v2 (int fd, const struct iovec *vector, int count, OFF_T offset, { if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } diff --git a/sysdeps/posix/pwritev2.c b/sysdeps/posix/pwritev2.c index 5b7650c..7ec8cbc 100644 --- a/sysdeps/posix/pwritev2.c +++ b/sysdeps/posix/pwritev2.c @@ -28,7 +28,7 @@ pwritev2 (int fd, const struct iovec *vector, int count, OFF_T offset, { if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } diff --git a/sysdeps/posix/pwritev64v2.c b/sysdeps/posix/pwritev64v2.c index 0f2f9ef..be98aee 100644 --- a/sysdeps/posix/pwritev64v2.c +++ b/sysdeps/posix/pwritev64v2.c @@ -26,7 +26,7 @@ pwritev64v2 (int fd, const struct iovec *vector, int count, OFF_T offset, { if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } diff --git a/sysdeps/unix/sysv/linux/preadv2.c b/sysdeps/unix/sysv/linux/preadv2.c index 11fe85e..137e2dd 100644 --- a/sysdeps/unix/sysv/linux/preadv2.c +++ b/sysdeps/unix/sysv/linux/preadv2.c @@ -32,7 +32,7 @@ preadv2 (int fd, const struct iovec *vector, int count, off_t offset, # ifdef __NR_preadv2 ssize_t result = SYSCALL_CANCEL (preadv2, fd, vector, count, LO_HI_LONG (offset), flags); - if (result >= 0 || errno != ENOSYS) + if (result >= 0) return result; # endif /* Trying to emulate the preadv2 syscall flags is troublesome: @@ -46,7 +46,7 @@ preadv2 (int fd, const struct iovec *vector, int count, off_t offset, if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } return preadv (fd, vector, count, offset); diff --git a/sysdeps/unix/sysv/linux/preadv64v2.c b/sysdeps/unix/sysv/linux/preadv64v2.c index 9d7f8c9..8f41325 100644 --- a/sysdeps/unix/sysv/linux/preadv64v2.c +++ b/sysdeps/unix/sysv/linux/preadv64v2.c @@ -30,7 +30,7 @@ preadv64v2 (int fd, const struct iovec *vector, int count, off64_t offset, #ifdef __NR_preadv64v2 ssize_t result = SYSCALL_CANCEL (preadv64v2, fd, vector, count, LO_HI_LONG (offset), flags); - if (result >= 0 || errno != ENOSYS) + if (result >= 0) return result; #endif /* Trying to emulate the preadv2 syscall flags is troublesome: @@ -44,7 +44,7 @@ preadv64v2 (int fd, const struct iovec *vector, int count, off64_t offset, if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } return preadv64 (fd, vector, count, offset); diff --git a/sysdeps/unix/sysv/linux/pwritev2.c b/sysdeps/unix/sysv/linux/pwritev2.c index 72f0471..8e5032f 100644 --- a/sysdeps/unix/sysv/linux/pwritev2.c +++ b/sysdeps/unix/sysv/linux/pwritev2.c @@ -28,7 +28,7 @@ pwritev2 (int fd, const struct iovec *vector, int count, off_t offset, # ifdef __NR_pwritev2 ssize_t result = SYSCALL_CANCEL (pwritev2, fd, vector, count, LO_HI_LONG (offset), flags); - if (result >= 0 || errno != ENOSYS) + if (result >= 0) return result; # endif /* Trying to emulate the pwritev2 syscall flags is troublesome: @@ -42,7 +42,7 @@ pwritev2 (int fd, const struct iovec *vector, int count, off_t offset, if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } return pwritev (fd, vector, count, offset); diff --git a/sysdeps/unix/sysv/linux/pwritev64v2.c b/sysdeps/unix/sysv/linux/pwritev64v2.c index def9a0b..d2800c6 100644 --- a/sysdeps/unix/sysv/linux/pwritev64v2.c +++ b/sysdeps/unix/sysv/linux/pwritev64v2.c @@ -30,7 +30,7 @@ pwritev64v2 (int fd, const struct iovec *vector, int count, off64_t offset, #ifdef __NR_pwritev64v2 ssize_t result = SYSCALL_CANCEL (pwritev64v2, fd, vector, count, LO_HI_LONG (offset), flags); - if (result >= 0 || errno != ENOSYS) + if (result >= 0) return result; #endif /* Trying to emulate the pwritev2 syscall flags is troublesome: @@ -44,7 +44,7 @@ pwritev64v2 (int fd, const struct iovec *vector, int count, off64_t offset, if (flags != 0) { - __set_errno (EOPNOTSUPP); + __set_errno (ENOTSUP); return -1; } return pwritev64 (fd, vector, count, offset);