diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-04-01 19:29:17 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-04-02 02:12:58 -0400 |
commit | 608c380c304ce017dfddbceff988ffd0a36636d9 (patch) | |
tree | 9c348bad9d7625323f3fd335aee10f77a7667bf9 /include/uapi/linux | |
parent | a8c7687bf21603af6246e55cc58f98e42241bd01 (diff) |
virtio: do not export "u16" and "u64" to userspace
virtio_balloon.h exports "u16" and "u64" to userspace. Use "__u16" and
"__u64" instead.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r-- | include/uapi/linux/virtio_balloon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/virtio_balloon.h b/include/uapi/linux/virtio_balloon.h index 652dc8bea921..5e26f61b5df5 100644 --- a/include/uapi/linux/virtio_balloon.h +++ b/include/uapi/linux/virtio_balloon.h | |||
@@ -52,8 +52,8 @@ struct virtio_balloon_config | |||
52 | #define VIRTIO_BALLOON_S_NR 6 | 52 | #define VIRTIO_BALLOON_S_NR 6 |
53 | 53 | ||
54 | struct virtio_balloon_stat { | 54 | struct virtio_balloon_stat { |
55 | u16 tag; | 55 | __u16 tag; |
56 | u64 val; | 56 | __u64 val; |
57 | } __attribute__((packed)); | 57 | } __attribute__((packed)); |
58 | 58 | ||
59 | #endif /* _LINUX_VIRTIO_BALLOON_H */ | 59 | #endif /* _LINUX_VIRTIO_BALLOON_H */ |