]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
tools/virtio: add struct cpumask to cpumask.h
authorMichael S. Tsirkin <mst@redhat.com>
Thu, 4 Dec 2025 17:25:15 +0000 (12:25 -0500)
committerMichael S. Tsirkin <mst@redhat.com>
Wed, 24 Dec 2025 13:02:56 +0000 (08:02 -0500)
Add struct cpumask stub used by virtio_config.h.

Created using Cursor CLI.

Message-ID: <eacf56399ba220513ebcd610f4a5115dc768db80.1764873799.git.mst@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
tools/virtio/linux/cpumask.h

index 307da69d6b26c0228ecdcf48aa59f6f4748854b8..38ffc00e149d3867a3a592e817fc15516e1c7b81 100644 (file)
@@ -4,4 +4,8 @@
 
 #include <linux/kernel.h>
 
+struct cpumask {
+       unsigned long bits[1];
+};
+
 #endif /* _LINUX_CPUMASK_H */