X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=arch%2Farch-x86.h;h=c1c866eab429e3ac0d5304559ab40024b893ee3f;hb=b3ce355dc217876b762d43dff663bbb45e5da653;hp=2e803cbe5ba13c96e2f377516dca6def34bc013f;hpb=f57d6f943806727b70d3d15230dcac09b22fab1a;p=fio.git diff --git a/arch/arch-x86.h b/arch/arch-x86.h index 2e803cbe..c1c866ea 100644 --- a/arch/arch-x86.h +++ b/arch/arch-x86.h @@ -1,33 +1,30 @@ #ifndef ARCH_X86_H #define ARCH_X86_H -#define ARCH (arch_i386) - -#ifndef __NR_ioprio_set -#define __NR_ioprio_set 289 -#define __NR_ioprio_get 290 +#ifndef __NR_sys_io_uring_setup +#define __NR_sys_io_uring_setup 387 #endif - -#ifndef __NR_fadvise64 -#define __NR_fadvise64 250 +#ifndef __NR_sys_io_uring_enter +#define __NR_sys_io_uring_enter 388 #endif - -#ifndef __NR_sys_splice -#define __NR_sys_splice 313 -#define __NR_sys_tee 315 -#define __NR_sys_vmsplice 316 +#ifndef __NR_sys_io_uring_register +#define __NR_sys_io_uring_register 389 #endif -#ifndef __NR_async_exec -#define __NR_async_exec 325 -#define __NR_async_wait 326 -#define __NR_umem_add 327 -#define __NR_async_thread 328 -#endif +static inline void do_cpuid(unsigned int *eax, unsigned int *ebx, + unsigned int *ecx, unsigned int *edx) +{ + asm volatile("xchgl %%ebx, %1\ncpuid\nxchgl %%ebx, %1" + : "=a" (*eax), "=r" (*ebx), "=c" (*ecx), "=d" (*edx) + : "0" (*eax) + : "memory"); +} -#define FIO_HUGE_PAGE 4194304 +#include "arch-x86-common.h" /* IWYU pragma: export */ -#define FIO_HAVE_SYSLET +#define FIO_ARCH (arch_x86) + +#define FIO_HUGE_PAGE 4194304 #define nop __asm__ __volatile__("rep;nop": : :"memory") #define read_barrier() __asm__ __volatile__("": : :"memory") @@ -41,7 +38,7 @@ static inline unsigned long arch_ffz(unsigned long bitmask) static inline unsigned long long get_cpu_clock(void) { - unsigned long ret; + unsigned long long ret; __asm__ __volatile__("rdtsc" : "=A" (ret)); return ret; @@ -49,5 +46,6 @@ static inline unsigned long long get_cpu_clock(void) #define ARCH_HAVE_FFZ #define ARCH_HAVE_CPU_CLOCK +#define ARCH_HAVE_IOURING #endif