From: Juergen Gross Date: Thu, 29 Feb 2024 07:01:03 +0000 (+0100) Subject: Mini-OS: add symbol exports for xenstore stubdom X-Git-Tag: xen-4.19.0-rc4~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b6a5b4d72b88e5c4faed01f5a44505de022860fc;p=mini-os.git Mini-OS: add symbol exports for xenstore stubdom Xenstore stubdom needs some more symbols exported. Reported-by: Andrew Cooper Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault --- diff --git a/xenbus.c b/xenbus.c index eb9af05..686428a 100644 --- a/xenbus.c +++ b/xenbus.c @@ -45,6 +45,7 @@ #endif struct xenstore_domain_interface *xenstore_buf; +EXPORT_SYMBOL(xenstore_buf); static DECLARE_WAIT_QUEUE_HEAD(xb_waitq); DECLARE_WAIT_QUEUE_HEAD(xenbus_watch_queue); static __DECLARE_SEMAPHORE_GENERIC(xb_write_sem, 1); @@ -70,6 +71,7 @@ static struct xenbus_req_info req_info[NR_REQS]; static char *errmsg(struct xsd_sockmsg *rep); uint32_t xenbus_evtchn; +EXPORT_SYMBOL(xenbus_evtchn); #ifdef CONFIG_PARAVIRT void get_xenbus(void *p)