git: d786f1706ed4 - stable/13 - vmm: Remove stale comment for vm_rendezvous.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Thu, 26 Jan 2023 22:12:19 UTC
The branch stable/13 has been updated by jhb:

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

commit d786f1706ed4c4642a6f517377f0af37693ee027
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-11-30 21:06:46 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-01-26 22:07:12 +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
    
    (cherry picked from commit 1f6db5d6b5de5e0cafcdb141a988120b0faea049)
---
 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 18223c45b70c..15f946d4f120 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