git: 1f6db5d6b5de - main - vmm: Remove stale comment for vm_rendezvous.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 30 Nov 2022 21:07:05 UTC
The branch main has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=1f6db5d6b5de5e0cafcdb141a988120b0faea049
commit 1f6db5d6b5de5e0cafcdb141a988120b0faea049
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-11-30 21:06:46 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2022-11-30 21:06:46 +0000
vmm: Remove stale comment for vm_rendezvous.
Support for rendezvous outside of a vcpu context (vcpuid of -1) was
removed in commit 949f0f47a4e7, and the vm, vcpuid argument pair was
replaced by a single struct vcpu pointer in commit d8be3d523dd5.
Reported by: andrew
---
sys/amd64/include/vmm.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/sys/amd64/include/vmm.h b/sys/amd64/include/vmm.h
index 16423288a657..67730cc22980 100644
--- a/sys/amd64/include/vmm.h
+++ b/sys/amd64/include/vmm.h
@@ -313,9 +313,6 @@ int vm_restore_time(struct vm *vm);
* The rendezvous 'func(arg)' is not allowed to do anything that will
* cause the thread to be put to sleep.
*
- * If the rendezvous is being initiated from a vcpu context then the
- * 'vcpuid' must refer to that vcpu, otherwise it should be set to -1.
- *
* The caller cannot hold any locks when initiating the rendezvous.
*
* The implementation of this API may cause vcpus other than those specified