[MINI-OS PATCH 19/19] events: export bind_evtchn()

Juergen Gross posted 19 patches 4 months ago
There is a newer version of this series
[MINI-OS PATCH 19/19] events: export bind_evtchn()
Posted by Juergen Gross 4 months ago
Export the bind_evtchn() function, as it will be needed for
reactivating events after kexec().

Signed-off-by: Juergen Gross <jgross@suse.com>
---
 events.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/events.c b/events.c
index 9f3dbf05..a9c1ccac 100644
--- a/events.c
+++ b/events.c
@@ -98,6 +98,7 @@ evtchn_port_t bind_evtchn(evtchn_port_t port, evtchn_handler_t handler,
 
 	return port;
 }
+EXPORT_SYMBOL(bind_evtchn);
 
 void unbind_evtchn(evtchn_port_t port )
 {
-- 
2.43.0
Re: [MINI-OS PATCH 19/19] events: export bind_evtchn()
Posted by Jason Andryuk 3 months, 2 weeks ago
On 2025-07-02 04:12, Juergen Gross wrote:
> Export the bind_evtchn() function, as it will be needed for
> reactivating events after kexec().
> 
> Signed-off-by: Juergen Gross <jgross@suse.com>

Reviewed-by: Jason Andryuk <jason.andryuk@amd.com>