|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v3 03/32] Mini-OS: add EXPORT_SYMBOL() instances to kernel.c
Add the needed instances of EXPORT_SYMBOL() to kernel.c.
Signed-off-by: Juergen Gross <jgross@xxxxxxxx>
---
V3:
- new patch
---
kernel.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/kernel.c b/kernel.c
index 1f97d8dd..0b444940 100644
--- a/kernel.c
+++ b/kernel.c
@@ -50,6 +50,9 @@
#include <xen/features.h>
#include <xen/version.h>
+void _start(void);
+EXPORT_SYMBOL(_start);
+
uint8_t xen_features[XENFEAT_NR_SUBMAPS * 32];
char cmdline[MAX_CMDLINE_SIZE];
@@ -181,6 +184,7 @@ void stop_kernel(void)
/* Reset arch details */
arch_fini();
}
+EXPORT_SYMBOL(stop_kernel);
/*
* do_exit: This is called whenever an IRET fails in entry.S.
@@ -199,3 +203,4 @@ void do_exit(void)
HYPERVISOR_sched_op(SCHEDOP_shutdown, &sched_shutdown);
}
}
+EXPORT_SYMBOL(do_exit);
--
2.35.3
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |