// pcivirt.h
typedef struct _SRIOV_MITIGATED_RANGES_OUTPUT {
ULONG64 BasePageNumber;
ULONG PageCount;
BOOLEAN InterceptReads;
BOOLEAN InterceptWrites;
} SRIOV_MITIGATED_RANGES_OUTPUT, SRIOV_MITIGATED_RANGES_OUTPUT;
View the official Windows Driver Kit DDI referenceNo description available.
This structure is the output buffer received by the IOCTL_SRIOV_QUERY_MITIGATED_RANGES request to get the specific ranges on which intercepts must be placed.
BasePageNumberThe base address of the allocated region of pages.
PageCountTotal number of pages.
InterceptReadsA boolean that indicates the reads intercept bit.
InterceptWritesA boolean that indicates the write intercept bit.
typedef struct _SRIOV_MITIGATED_RANGES_OUTPUT {
ULONG64 BasePageNumber;
ULONG PageCount;
BOOLEAN InterceptReads;
BOOLEAN InterceptWrites;
} SRIOV_MITIGATED_RANGES_OUTPUT, SRIOV_MITIGATED_RANGES_OUTPUT;