qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] linux-user: fixes for sched_ syscalls
@ 2021-12-11  2:27 Tonis Tiigi
  2021-12-11  2:27 ` [PATCH 1/2] linux-user: add sched_getattr support Tonis Tiigi
  2021-12-11  2:27 ` [PATCH 2/2] linux-user: call set/getscheduler set/getparam directly Tonis Tiigi
  0 siblings, 2 replies; 5+ messages in thread
From: Tonis Tiigi @ 2021-12-11  2:27 UTC (permalink / raw)
  To: qemu-devel, Laurent Vivier; +Cc: Tonis Tiigi

This patchset improves support for sched_* syscalls under user emulation. The first commit adds support for sched_g/setattr that was previously not implemented. There is no equivalent for these syscalls in libc, so I needed to redefine the struct from kernel. It can't be included directly because of conflict with libc sched headers.

The second commit fixes sched_g/setscheduler and sched_g/setparam, when QEMU is built with musl. Musl does not implement these due to conflict between what these functions should do in syscalls and libc https://git.musl-libc.org/cgit/musl/commit/?id=1e21e78bf7a5c24c217446d8760be7b7188711c2 . I've changed it to call syscall directly what should always be the expected behavior for the user.

Via https://github.com/tonistiigi/binfmt/pull/70 with additional tests.

Tonis Tiigi (2):
  linux-user: add sched_getattr support
  linux-user: call set/getscheduler set/getparam directly

 linux-user/syscall.c      | 71 ++++++++++++++++++++++++++++++++++++---
 linux-user/syscall_defs.h | 15 +++++++++
 2 files changed, 82 insertions(+), 4 deletions(-)

-- 
2.30.1 (Apple Git-130)



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

end of thread, other threads:[~2021-12-19 17:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-11  2:27 [PATCH 0/2] linux-user: fixes for sched_ syscalls Tonis Tiigi
2021-12-11  2:27 ` [PATCH 1/2] linux-user: add sched_getattr support Tonis Tiigi
2021-12-19 17:09   ` Laurent Vivier
2021-12-11  2:27 ` [PATCH 2/2] linux-user: call set/getscheduler set/getparam directly Tonis Tiigi
2021-12-19 17:19   ` Laurent Vivier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).