0003-runsv-Use-64-prefix-syscall-if-we-have-to.patch 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. From 8c7419649d6e6fda8fa7d0e863084c78ac728628 Mon Sep 17 00:00:00 2001
  2. From: Alistair Francis <alistair.francis@wdc.com>
  3. Date: Wed, 28 Aug 2019 10:54:15 -0700
  4. Subject: [PATCH 3/3] runsv: Use 64 prefix syscall if we have to
  5. Some 32-bit architectures no longer have the 32-bit time_t syscalls.
  6. Instead they have suffixed syscalls that returns a 64-bit time_t. If
  7. the architecture doesn't have the non-suffixed syscall and is using a
  8. 64-bit time_t let's use the suffixed syscall instead.
  9. This fixes build issues when building for RISC-V 32-bit with 5.1+ kernel
  10. headers.
  11. If an architecture only supports the suffixed syscalls, but is still
  12. using a 32-bit time_t report a compilation error. This avoids us have to
  13. deal with converting between 64-bit and 32-bit values. There are
  14. currently no architectures where this is the case.
  15. Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
  16. Upstream-Status: Submitted
  17. ---
  18. runit/runsv.c | 7 +++++++
  19. 1 file changed, 7 insertions(+)
  20. diff --git a/runit/runsv.c b/runit/runsv.c
  21. index ccc762d78..737909b0e 100644
  22. --- a/runit/runsv.c
  23. +++ b/runit/runsv.c
  24. @@ -55,7 +55,14 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. * typically requiring -lrt. We just skip all this mess */
  26. static void gettimeofday_ns(struct timespec *ts)
  27. {
  28. +#if defined(__NR_clock_gettime)
  29. syscall(__NR_clock_gettime, CLOCK_REALTIME, ts);
  30. +#elif __TIMESIZE == 64
  31. + syscall(__NR_clock_gettime64, CLOCK_REALTIME, ts);
  32. +#else
  33. +# error "We currently don't support architectures without " \
  34. + "the __NR_clock_gettime syscall and 32-bit time_t"
  35. +#endif
  36. }
  37. #else
  38. static void gettimeofday_ns(struct timespec *ts)
  39. --
  40. 2.22.0