X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os-linux.h;h=549694a468081b31208486dbf4605191dd054fa5;hp=657a679e23486e0e8e319d3cc10dd8f8a7c635f4;hb=7756b0d046ef74c32df134c8b716237cc5e16bad;hpb=b6959b55efa7f464dbb7e7f2021dd67d297219bd diff --git a/os-linux.h b/os-linux.h index 657a679e..549694a4 100644 --- a/os-linux.h +++ b/os-linux.h @@ -81,27 +81,30 @@ static inline int vmsplice(int fd, const struct iovec *iov, #define SPLICE_DEF_SIZE (64*1024) #ifdef FIO_HAVE_SYSLET + +struct syslet_uatom; +struct async_head_user; + /* * syslet stuff */ -static inline long async_register(void *uah, unsigned int len) -{ - return syscall(__NR_async_register, uah, len); -} - -static inline void *async_exec(void *data) +static inline struct syslet_uatom * +async_exec(struct syslet_uatom *atom, struct async_head_user *ahu) { - return (void *) syscall(__NR_async_exec, data); + return (void *) syscall(__NR_async_exec, atom, ahu); } -static inline long async_wait(unsigned long min_events) +static inline long +async_wait(unsigned long min_wait_events, unsigned long user_ring_idx, + struct async_head_user *ahu) { - return syscall(__NR_async_wait, min_events); + return syscall(__NR_async_wait, min_wait_events, + user_ring_idx, ahu); } -static inline long async_unregister(void *uah, unsigned int len) +static inline long async_thread(void *event, struct async_head_user *ahu) { - return syscall(__NR_async_unregister, uah, len); + return syscall(__NR_async_thread, event, ahu); } static inline long umem_add(unsigned long *uptr, unsigned long inc)