diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2020-04-06 19:17:55 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2020-04-17 13:05:29 +0300 |
commit | 6bd6b282d0be1c662a0312e7c6beb91f16c508a2 (patch) | |
tree | 25d5ddc4cf8834f489ba573d4b46ed6f856ea897 /tools/virtio/linux | |
parent | 3302363a27fb38a3581921a74aff855f4dcbfe0a (diff) | |
download | linux-6bd6b282d0be1c662a0312e7c6beb91f16c508a2.tar.xz |
tools/virtio: define aligned attribute
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tools/virtio/linux')
-rw-r--r-- | tools/virtio/linux/compiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/virtio/linux/compiler.h b/tools/virtio/linux/compiler.h index 903dc9c4bd11..2c51bccb97bb 100644 --- a/tools/virtio/linux/compiler.h +++ b/tools/virtio/linux/compiler.h @@ -7,4 +7,5 @@ #define READ_ONCE(var) (*((volatile typeof(var) *)(&(var)))) +#define __aligned(x) __attribute((__aligned__(x))) #endif |