Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools/virtio: add struct cpumask to cpumask.h

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>

+4
+4
tools/virtio/linux/cpumask.h
··· 4 4 5 5 #include <linux/kernel.h> 6 6 7 + struct cpumask { 8 + unsigned long bits[1]; 9 + }; 10 + 7 11 #endif /* _LINUX_CPUMASK_H */