mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
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>
12 lines
192 B
C
12 lines
192 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_CPUMASK_H
|
|
#define _LINUX_CPUMASK_H
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
struct cpumask {
|
|
unsigned long bits[1];
|
|
};
|
|
|
|
#endif /* _LINUX_CPUMASK_H */
|