Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Jan 2023 19:28:36 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 861c6ae8f009 - stable/13 - vmm: fix "set but not used" warnings
Message-ID:  <202301261928.30QJSaYY078692@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=861c6ae8f009094c2ecf1138fa2f78d85bccdba4

commit 861c6ae8f009094c2ecf1138fa2f78d85bccdba4
Author:     Robert Wing <rew@FreeBSD.org>
AuthorDate: 2022-02-28 23:55:37 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-01-26 19:26:14 +0000

    vmm: fix "set but not used" warnings
    
    (cherry picked from commit 39d87a023567f633c6990ac7fcc3a20691a1efd6)
---
 sys/amd64/vmm/intel/vmcs.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/amd64/vmm/intel/vmcs.h b/sys/amd64/vmm/intel/vmcs.h
index 8aa7b1e8fc08..5c5214c65609 100644
--- a/sys/amd64/vmm/intel/vmcs.h
+++ b/sys/amd64/vmm/intel/vmcs.h
@@ -76,7 +76,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 +87,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));



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301261928.30QJSaYY078692>