Module: xenomai-3 Branch: stable-3.0.x Commit: ec65be24018d958f6a9febf628d82a9bf7932010 URL: http://git.xenomai.org/?p=xenomai-3.git;a=commit;h=ec65be24018d958f6a9febf628d82a9bf7932010
Author: Philippe Gerum <[email protected]> Date: Tue Mar 1 08:08:02 2016 +0100 cobalt/heap: export *vmalloc helpers --- kernel/cobalt/heap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/cobalt/heap.c b/kernel/cobalt/heap.c index 2fcb6ba..ce4ef54 100644 --- a/kernel/cobalt/heap.c +++ b/kernel/cobalt/heap.c @@ -677,10 +677,12 @@ void *xnheap_vmalloc(size_t size) */ return __vmalloc(size, GFP_KERNEL, PAGE_KERNEL); } +EXPORT_SYMBOL_GPL(xnheap_vmalloc); void xnheap_vfree(void *p) { vfree(p); } +EXPORT_SYMBOL_GPL(xnheap_vfree); /** @} */ _______________________________________________ Xenomai-git mailing list [email protected] https://xenomai.org/mailman/listinfo/xenomai-git
