mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
19 lines
293 B
C
19 lines
293 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#ifndef __ACRN_HSM_DRV_H
|
||
|
#define __ACRN_HSM_DRV_H
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
#define ACRN_INVALID_VMID (0xffffU)
|
||
|
|
||
|
/**
|
||
|
* struct acrn_vm - Properties of ACRN User VM.
|
||
|
* @vmid: User VM ID
|
||
|
*/
|
||
|
struct acrn_vm {
|
||
|
u16 vmid;
|
||
|
};
|
||
|
|
||
|
#endif /* __ACRN_HSM_DRV_H */
|