Staging: hv: coding style cleanup of include/HvVpApi.h
Coding style fixes for include/HvVpApi.h All of the include/Hv*.h files should be merged eventually... Cc: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -209,14 +209,14 @@ typedef struct _HV_PORT_INFO
|
|||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
HV_SYNIC_SINT_INDEX TargetSint;
|
HV_SYNIC_SINT_INDEX TargetSint;
|
||||||
HV_VP_INDEX TargetVp;
|
u32 TargetVp;
|
||||||
u64 RsvdZ;
|
u64 RsvdZ;
|
||||||
} MessagePortInfo;
|
} MessagePortInfo;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
HV_SYNIC_SINT_INDEX TargetSint;
|
HV_SYNIC_SINT_INDEX TargetSint;
|
||||||
HV_VP_INDEX TargetVp;
|
u32 TargetVp;
|
||||||
u16 BaseFlagNumber;
|
u16 BaseFlagNumber;
|
||||||
u16 FlagCount;
|
u16 FlagCount;
|
||||||
u32 RsvdZ;
|
u32 RsvdZ;
|
||||||
|
@@ -20,32 +20,26 @@
|
|||||||
* Hank Janssen <hjanssen@microsoft.com>
|
* Hank Janssen <hjanssen@microsoft.com>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#ifndef __HVVPAPI_H
|
||||||
|
#define __HVVPAPI_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent
|
||||||
|
* is set by CPUID(HvCpuIdFunctionVersionAndFeatures).
|
||||||
|
*/
|
||||||
|
enum hv_cpuid_function {
|
||||||
|
HvCpuIdFunctionVersionAndFeatures = 0x00000001,
|
||||||
|
HvCpuIdFunctionHvVendorAndMaxFunction = 0x40000000,
|
||||||
|
HvCpuIdFunctionHvInterface = 0x40000001,
|
||||||
|
|
||||||
#pragma once
|
/*
|
||||||
|
* The remaining functions depend on the value of
|
||||||
|
* HvCpuIdFunctionInterface
|
||||||
|
*/
|
||||||
|
HvCpuIdFunctionMsHvVersion = 0x40000002,
|
||||||
|
HvCpuIdFunctionMsHvFeatures = 0x40000003,
|
||||||
|
HvCpuIdFunctionMsHvEnlightenmentInformation = 0x40000004,
|
||||||
|
HvCpuIdFunctionMsHvImplementationLimits = 0x40000005,
|
||||||
|
};
|
||||||
|
|
||||||
/* Virtual Processor Indices */
|
#endif
|
||||||
|
|
||||||
typedef u32 HV_VP_INDEX, *PHV_VP_INDEX;
|
|
||||||
|
|
||||||
|
|
||||||
/* The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent */
|
|
||||||
/* is set by CPUID(HvCpuIdFunctionVersionAndFeatures). */
|
|
||||||
/* ========================================================================== */
|
|
||||||
|
|
||||||
|
|
||||||
typedef enum _HV_CPUID_FUNCTION
|
|
||||||
{
|
|
||||||
HvCpuIdFunctionVersionAndFeatures = 0x00000001,
|
|
||||||
HvCpuIdFunctionHvVendorAndMaxFunction = 0x40000000,
|
|
||||||
HvCpuIdFunctionHvInterface = 0x40000001,
|
|
||||||
|
|
||||||
|
|
||||||
/* The remaining functions depend on the value of HvCpuIdFunctionInterface */
|
|
||||||
|
|
||||||
HvCpuIdFunctionMsHvVersion = 0x40000002,
|
|
||||||
HvCpuIdFunctionMsHvFeatures = 0x40000003,
|
|
||||||
HvCpuIdFunctionMsHvEnlightenmentInformation = 0x40000004,
|
|
||||||
HvCpuIdFunctionMsHvImplementationLimits = 0x40000005
|
|
||||||
|
|
||||||
} HV_CPUID_FUNCTION, *PHV_CPUID_FUNCTION;
|
|
||||||
|
Reference in New Issue
Block a user