瀏覽代碼

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>
Paul Bolle 12 年之前
父節點
當前提交
608c380c30
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/uapi/linux/virtio_balloon.h

+ 2 - 2
include/uapi/linux/virtio_balloon.h

@@ -52,8 +52,8 @@ struct virtio_balloon_config
 #define VIRTIO_BALLOON_S_NR       6
 
 struct virtio_balloon_stat {
-	u16 tag;
-	u64 val;
+	__u16 tag;
+	__u64 val;
 } __attribute__((packed));
 
 #endif /* _LINUX_VIRTIO_BALLOON_H */