Message ID | 1480974406-29345-2-git-send-email-eric.auger@redhat.com |
---|---|
State | New |
Headers | show |
diff --git a/lib/libcflat.h b/lib/libcflat.h index bdcc561..880810a 100644 --- a/lib/libcflat.h +++ b/lib/libcflat.h @@ -35,7 +35,10 @@ #define ALIGN(x, a) __ALIGN((x), (a)) #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) +#define SZ_256 (1 << 8) #define SZ_4K (1 << 12) +#define SZ_8K (1 << 13) +#define SZ_16K (1 << 14) #define SZ_64K (1 << 16) #define SZ_2M (1 << 21) #define SZ_1G (1 << 30)
Introduce additional SZ_256, SZ_8K, SZ_16K macros that will be used by ITS tests. Signed-off-by: Eric Auger <eric.auger@redhat.com> --- lib/libcflat.h | 3 +++ 1 file changed, 3 insertions(+)