All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] linux-user/syscall.c: fix build without RLIMIT_RTTIME
@ 2022-05-14 14:34 Fabrice Fontaine
  2022-05-23  7:15 ` Laurent Vivier
  0 siblings, 1 reply; 2+ messages in thread
From: Fabrice Fontaine @ 2022-05-14 14:34 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: qemu-devel, Fabrice Fontaine

RLIMIT_RTTIME is not provided by uclibc-ng or by musl prior to version
1.2.0 and
https://github.com/bminor/musl/commit/2507e7f5312e79620f6337935d0a6c9045ccba09
resulting in the following build failure since
https://git.qemu.org/?p=qemu.git;a=commit;h=244fd08323088db73590ff2317dfe86f810b51d7:

../linux-user/syscall.c: In function 'target_to_host_resource':
../linux-user/syscall.c:1057:16: error: 'RLIMIT_RTTIME' undeclared (first use in this function); did you mean 'RLIMIT_NOFILE'?
 1057 |         return RLIMIT_RTTIME;
      |                ^~~~~~~~~~~~~
      |                RLIMIT_NOFILE

Fixes:
 - http://autobuild.buildroot.org/results/22d3b584b704613d030e1ea9e6b709b713e4cc26

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 linux-user/syscall.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index dd0d92ba4e..6df78bedf5 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -1024,6 +1024,10 @@ static inline abi_ulong host_to_target_rlim(rlim_t rlim)
 }
 #endif
 
+#ifndef RLIMIT_RTTIME
+#define RLIMIT_RTTIME 15
+#endif
+
 static inline int target_to_host_resource(int code)
 {
     switch (code) {
-- 
2.35.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] linux-user/syscall.c: fix build without RLIMIT_RTTIME
  2022-05-14 14:34 [PATCH] linux-user/syscall.c: fix build without RLIMIT_RTTIME Fabrice Fontaine
@ 2022-05-23  7:15 ` Laurent Vivier
  0 siblings, 0 replies; 2+ messages in thread
From: Laurent Vivier @ 2022-05-23  7:15 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: qemu-devel

Le 14/05/2022 à 16:34, Fabrice Fontaine a écrit :
> RLIMIT_RTTIME is not provided by uclibc-ng or by musl prior to version
> 1.2.0 and
> https://github.com/bminor/musl/commit/2507e7f5312e79620f6337935d0a6c9045ccba09
> resulting in the following build failure since
> https://git.qemu.org/?p=qemu.git;a=commit;h=244fd08323088db73590ff2317dfe86f810b51d7:
> 
> ../linux-user/syscall.c: In function 'target_to_host_resource':
> ../linux-user/syscall.c:1057:16: error: 'RLIMIT_RTTIME' undeclared (first use in this function); did you mean 'RLIMIT_NOFILE'?
>   1057 |         return RLIMIT_RTTIME;
>        |                ^~~~~~~~~~~~~
>        |                RLIMIT_NOFILE
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/22d3b584b704613d030e1ea9e6b709b713e4cc26
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>   linux-user/syscall.c | 4 ++++
>   1 file changed, 4 insertions(+)

Generally we prefer to fix this kind of problem with:

+#ifdef RLIMIT_RTTIME
      case TARGET_RLIMIT_RTTIME:
          return RLIMIT_RTTIME;
+#endif

Thanks,
Laurent


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-05-23  7:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-14 14:34 [PATCH] linux-user/syscall.c: fix build without RLIMIT_RTTIME Fabrice Fontaine
2022-05-23  7:15 ` Laurent Vivier

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.