summaryrefslogtreecommitdiff
path: root/tools/include/uapi
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2026-04-02 10:08:03 +0300
committerTakashi Iwai <tiwai@suse.de>2026-04-02 10:08:03 +0300
commitb477ab8893c3e6b4be3074358db830687de7bfff (patch)
tree44d132561eb33087ec533affa648ac0cfaffe326 /tools/include/uapi
parenta0dafdbd1049a8ea661a1a471be1b840bd8aed13 (diff)
parente74c38ef6f170179c0029b5744d6a14dfd543108 (diff)
downloadlinux-b477ab8893c3e6b4be3074358db830687de7bfff.tar.xz
Merge tag 'asoc-fix-v7.0-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v7.0 Another smallish batch of fixes and quirks, these days it's AMD that is getting all the DMI entries added. We've got one core fix for a missing list initialisation with auxiliary devices, otherwise it's all fairly small things.
Diffstat (limited to 'tools/include/uapi')
-rw-r--r--tools/include/uapi/linux/kvm.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/include/uapi/linux/kvm.h b/tools/include/uapi/linux/kvm.h
index 65500f5db379..80364d4dbebb 100644
--- a/tools/include/uapi/linux/kvm.h
+++ b/tools/include/uapi/linux/kvm.h
@@ -14,6 +14,10 @@
#include <linux/ioctl.h>
#include <asm/kvm.h>
+#ifdef __KERNEL__
+#include <linux/kvm_types.h>
+#endif
+
#define KVM_API_VERSION 12
/*
@@ -1601,7 +1605,11 @@ struct kvm_stats_desc {
__u16 size;
__u32 offset;
__u32 bucket_size;
+#ifdef __KERNEL__
+ char name[KVM_STATS_NAME_SIZE];
+#else
char name[];
+#endif
};
#define KVM_GET_STATS_FD _IO(KVMIO, 0xce)