Commit 30fb98ec authored by David Matlack's avatar David Matlack Committed by Alex Williamson
Browse files

tools include: Add definitions for __aligned_{l,b}e64



Add definitions for the missing __aligned_le64 and __aligned_be64 to
tools/include/linux/types.h. The former is needed by <linux/iommufd.h>
for builds where tools/include/ is on the include path ahead of
usr/include/.

Signed-off-by: default avatarDavid Matlack <dmatlack@google.com>
Link: https://lore.kernel.org/r/20251219233818.1965306-2-dmatlack@google.com


Signed-off-by: default avatarAlex Williamson <alex@shazbot.org>
parent 1e915050
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -88,6 +88,14 @@ typedef struct {
# define __aligned_u64 __u64 __attribute__((aligned(8)))
#endif

#ifndef __aligned_be64
# define __aligned_be64 __be64 __attribute__((aligned(8)))
#endif

#ifndef __aligned_le64
# define __aligned_le64 __le64 __attribute__((aligned(8)))
#endif

struct list_head {
	struct list_head *next, *prev;
};