aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/vmm/intel/vmcs.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/amd64/vmm/intel/vmcs.h')
-rw-r--r--sys/amd64/vmm/intel/vmcs.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/amd64/vmm/intel/vmcs.h b/sys/amd64/vmm/intel/vmcs.h
index 8aa7b1e8fc08..f247370fc60f 100644
--- a/sys/amd64/vmm/intel/vmcs.h
+++ b/sys/amd64/vmm/intel/vmcs.h
@@ -1,5 +1,5 @@
/*-
- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
+ * SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2011 NetApp, Inc.
* All rights reserved.
@@ -24,8 +24,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef _VMCS_H_
@@ -76,7 +74,7 @@ int vmcs_snapshot_any(struct vmcs *vmcs, int running, int ident,
static __inline uint64_t
vmcs_read(uint32_t encoding)
{
- int error;
+ int error __diagused;
uint64_t val;
error = vmread(encoding, &val);
@@ -87,7 +85,7 @@ vmcs_read(uint32_t encoding)
static __inline void
vmcs_write(uint32_t encoding, uint64_t val)
{
- int error;
+ int error __diagused;
error = vmwrite(encoding, val);
KASSERT(error == 0, ("vmcs_write(%u) error %d", encoding, error));