git: b37a180f0191 - main - xen: remove declaration of evtchn_device_upcall()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Nov 2023 13:38:36 UTC
The branch main has been updated by royger: URL: https://cgit.FreeBSD.org/src/commit/?id=b37a180f019161c8b3cb67423adf0a330828d380 commit b37a180f019161c8b3cb67423adf0a330828d380 Author: Elliott Mitchell <ehem+freebsd@m5p.com> AuthorDate: 2021-06-22 04:27:55 +0000 Commit: Roger Pau Monné <royger@FreeBSD.org> CommitDate: 2023-11-28 12:25:35 +0000 xen: remove declaration of evtchn_device_upcall() This function was removed at 5779d8ad577. Long past time to remove the declaration to ensure people aren't confused. Differential Revision: https://reviews.freebsd.org/D30865 Reviewed by: royger --- sys/xen/evtchn/evtchnvar.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys/xen/evtchn/evtchnvar.h b/sys/xen/evtchn/evtchnvar.h index 1d285abf0c47..10eed8434ebe 100644 --- a/sys/xen/evtchn/evtchnvar.h +++ b/sys/xen/evtchn/evtchnvar.h @@ -36,9 +36,6 @@ #include <xen/hypervisor.h> #include <contrib/xen/event_channel.h> -/** Submit a port notification for delivery to a userland evtchn consumer */ -void evtchn_device_upcall(evtchn_port_t port); - /* Macros for accessing event channel values */ #define EVTCHN_PTR(type, port) \ (HYPERVISOR_shared_info->evtchn_##type + ((port) / __LONG_BIT))