diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2025-12-04 12:25:15 -0500 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2025-12-24 08:02:56 -0500 |
| commit | a2f964c45b355cabdb70ecc48ef3cc8b19afaa80 (patch) | |
| tree | 955dc301fc39517039319051c9e1d878d7ac896e /tools | |
| parent | 4e949e77fa5e335ff32f177fd37d3e469fd396f9 (diff) | |
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>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/virtio/linux/cpumask.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/virtio/linux/cpumask.h b/tools/virtio/linux/cpumask.h index 307da69d6b26..38ffc00e149d 100644 --- a/tools/virtio/linux/cpumask.h +++ b/tools/virtio/linux/cpumask.h @@ -4,4 +4,8 @@ #include <linux/kernel.h> +struct cpumask { + unsigned long bits[1]; +}; + #endif /* _LINUX_CPUMASK_H */ |
