Re: [kvm-unit-tests PATCH v6 03/11] lib: Define unlikely()/likely() macros in libcflat.h

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, Apr 11, 2024 at 07:29:36PM +0200, vsntk18@xxxxxxxxx wrote:
> From: Vasant Karasulli <vkarasulli@xxxxxxx>
> 
> So that they can be shared across testcases and lib/.
> Linux's x86 instruction decoder refrences them.
> 
> Signed-off-by: Varad Gautam <varad.gautam@xxxxxxxx>
> Signed-off-by: Vasant Karasulli <vkarasulli@xxxxxxx>
> ---
>  lib/libcflat.h | 3 +++
>  x86/kvmclock.c | 4 ----
>  2 files changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/lib/libcflat.h b/lib/libcflat.h
> index 700f4352..283da08a 100644
> --- a/lib/libcflat.h
> +++ b/lib/libcflat.h
> @@ -167,4 +167,7 @@ extern void setup_vm(void);
>  #define SZ_1G			(1 << 30)
>  #define SZ_2G			(1ul << 31)
> 
> +#define unlikely(x)	__builtin_expect(!!(x), 0)
> +#define likely(x)	__builtin_expect(!!(x), 1)

Please put these in lib/linux/compiler.h

Thanks,
drew

> +
>  #endif
> diff --git a/x86/kvmclock.c b/x86/kvmclock.c
> index f9f21032..487c12af 100644
> --- a/x86/kvmclock.c
> +++ b/x86/kvmclock.c
> @@ -5,10 +5,6 @@
>  #include "kvmclock.h"
>  #include "asm/barrier.h"
> 
> -#define unlikely(x)	__builtin_expect(!!(x), 0)
> -#define likely(x)	__builtin_expect(!!(x), 1)
> -
> -
>  struct pvclock_vcpu_time_info __attribute__((aligned(4))) hv_clock[MAX_CPU];
>  struct pvclock_wall_clock wall_clock;
>  static unsigned char valid_flags = 0;
> --
> 2.34.1
> 




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux