From: Juergen Gross Date: Mon, 27 Nov 2023 10:25:14 +0000 (+0100) Subject: Mini-OS: add EXPORT_SYMBOL() instances to 9pfront.c X-Git-Tag: xen-4.19.0-rc4~20 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b6a5bfc6d89db5c45cd074604449f84f0bfa2324;p=mini-os.git Mini-OS: add EXPORT_SYMBOL() instances to 9pfront.c Add the needed instances of EXPORT_SYMBOL() to 9pfront.c. Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault --- diff --git a/9pfront.c b/9pfront.c index 35c5552..315089b 100644 --- a/9pfront.c +++ b/9pfront.c @@ -1243,6 +1243,7 @@ void *init_9pfront(unsigned int id, const char *mnt) free(msg); return NULL; } +EXPORT_SYMBOL(init_9pfront); void shutdown_9pfront(void *dev) { @@ -1286,6 +1287,7 @@ void shutdown_9pfront(void *dev) printk("9pfsfront shutdown %u failed, %s\n", dev9p->id, reason); free(msg); } +EXPORT_SYMBOL(shutdown_9pfront); static const struct file_ops ops_9pfs = { .name = "9pfs",