diff --git a/meson.build b/meson.build index 1c64547628..30609f8515 100644 --- a/meson.build +++ b/meson.build @@ -501,6 +501,8 @@ foreach ident : [ #include '''], ['pivot_root', '''#include #include '''], # no known header declares pivot_root + ['ioprio_get', '''#include '''], # no known header declares ioprio_get + ['ioprio_set', '''#include '''], # no known header declares ioprio_set ['name_to_handle_at', '''#include #include #include '''], diff --git a/src/basic/missing_syscall.h b/src/basic/missing_syscall.h index 9e3a165857..57dae77b53 100644 --- a/src/basic/missing_syscall.h +++ b/src/basic/missing_syscall.h @@ -41,6 +41,26 @@ static inline int missing_pivot_root(const char *new_root, const char *put_old) /* ======================================================================= */ +#if !HAVE_IOPRIO_GET +static inline int missing_ioprio_get(int which, int who) { + return syscall(__NR_ioprio_get, which, who); +} + +# define ioprio_get missing_ioprio_get +#endif + +/* ======================================================================= */ + +#if !HAVE_IOPRIO_SET +static inline int missing_ioprio_set(int which, int who, int ioprio) { + return syscall(__NR_ioprio_set, which, who, ioprio); +} + +# define ioprio_set missing_ioprio_set +#endif + +/* ======================================================================= */ + #if !HAVE_MEMFD_CREATE static inline int missing_memfd_create(const char *name, unsigned int flags) { # ifdef __NR_memfd_create