All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] LTP tip busted for x86_64 + glibc !
@ 2017-02-15 17:54 Vineet Gupta
  0 siblings, 0 replies; only message in thread
From: Vineet Gupta @ 2017-02-15 17:54 UTC (permalink / raw)
  To: ltp

It seems I need the following fixups

------->
diff --git a/testcases/kernel/syscalls/preadv/preadv.h
b/testcases/kernel/syscalls/preadv/preadv.h
index f3ac30db3e02..8c48d3a7c05b 100644
--- a/testcases/kernel/syscalls/preadv/preadv.h
+++ b/testcases/kernel/syscalls/preadv/preadv.h
@@ -22,7 +22,7 @@
 #include "linux_syscall_numbers.h"
 
 #if !defined(HAVE_PREADV)
-int preadv(int fd, const struct iovec *iov, int iovcnt, off_t offset)
+ssize_t preadv(int fd, const struct iovec *iov, int iovcnt, off_t offset)
 {
        return tst_syscall(__NR_preadv, fd, iov, iovcnt, offset);
 }
diff --git a/testcases/kernel/syscalls/pwritev/pwritev.h
b/testcases/kernel/syscalls/pwritev/pwritev.h
index 4970036efec1..9a2a3a8b0c6f 100644
--- a/testcases/kernel/syscalls/pwritev/pwritev.h
+++ b/testcases/kernel/syscalls/pwritev/pwritev.h
@@ -22,7 +22,7 @@
 #include "linux_syscall_numbers.h"
 
 #if !defined(HAVE_PWRITEV)
-int pwritev(int fd, const struct iovec *iov, int iovcnt, off_t offset)
+ssize_t pwritev(int fd, const struct iovec *iov, int iovcnt, off_t offset)
 {
        return tst_syscall(__NR_pwritev, fd, iov, iovcnt, offset);


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-15 17:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-15 17:54 [LTP] LTP tip busted for x86_64 + glibc ! Vineet Gupta

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.