[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [kvm-unit-tests PATCH v6 08/11] libcflat: add IS_ALIGNE
From: |
Auger Eric |
Subject: |
Re: [Qemu-devel] [kvm-unit-tests PATCH v6 08/11] libcflat: add IS_ALIGNED() macro, and page sizes |
Date: |
Wed, 23 Nov 2016 11:38:11 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 |
Hi,
On 14/11/2016 22:08, Andrew Jones wrote:
> From: Peter Xu <address@hidden>
>
> These macros will be useful to do page alignment checks.
>
> Reviewed-by: Andre Przywara <address@hidden>
> Signed-off-by: Peter Xu <address@hidden>
> [drew: also added SZ_64K and changed to shifts]
> Signed-off-by: Andrew Jones <address@hidden>
>
> ---
> v6: change to shifts [Alex]
> ---
> lib/libcflat.h | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/lib/libcflat.h b/lib/libcflat.h
> index 82005f5d014f..244e40a724be 100644
> --- a/lib/libcflat.h
> +++ b/lib/libcflat.h
> @@ -33,6 +33,12 @@
> #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask))
> #define __ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1)
> #define ALIGN(x, a) __ALIGN((x), (a))
> +#define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0)
> +
> +#define SZ_4K (1 << 12)
> +#define SZ_64K (1 << 16)
> +#define SZ_2M (1 << 21)
> +#define SZ_1G (1 << 30)
>
> typedef uint8_t u8;
> typedef int8_t s8;
>
Reviewed-by: Eric Auger <address@hidden>
Eric
- [Qemu-devel] [kvm-unit-tests PATCH v6 00/11] arm/arm64: add gic framework, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 01/11] lib: xstr: allow multiple args, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 02/11] arm64: fix get_"sysreg32" and make MPIDR 64bit, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 05/11] arm/arm64: irq enable/disable, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 03/11] arm/arm64: smp: support more than 8 cpus, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 04/11] arm/arm64: add some delay routines, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 06/11] arm/arm64: add initial gicv2 support, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 08/11] libcflat: add IS_ALIGNED() macro, and page sizes, Andrew Jones, 2016/11/14
- Re: [Qemu-devel] [kvm-unit-tests PATCH v6 08/11] libcflat: add IS_ALIGNED() macro, and page sizes,
Auger Eric <=
- [Qemu-devel] [kvm-unit-tests PATCH v6 07/11] arm/arm64: gicv2: add an IPI test, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 09/11] arm/arm64: add initial gicv3 support, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 10/11] arm/arm64: gicv3: add an IPI test, Andrew Jones, 2016/11/14
- [Qemu-devel] [kvm-unit-tests PATCH v6 11/11] arm/arm64: gic: don't just use zero, Andrew Jones, 2016/11/14