From e5499c8dcbb29c405e551d39856b48b6aa3e91af Mon Sep 17 00:00:00 2001 From: dzwdz Date: Sun, 12 Sep 2021 16:30:04 +0200 Subject: make the inline functions static otherwise this doesn't compile with -O0 --- src/kernel/mem/virt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/mem') diff --git a/src/kernel/mem/virt.h b/src/kernel/mem/virt.h index 78d0cb3..54454e9 100644 --- a/src/kernel/mem/virt.h +++ b/src/kernel/mem/virt.h @@ -29,12 +29,12 @@ bool virt_cpy( struct pagedir *src_pages, const void __user *src, size_t length); -inline bool virt_cpy_to(struct pagedir *dest_pages, // physical -> virtual +static inline bool virt_cpy_to(struct pagedir *dest_pages, // physical -> virtual void __user *dest, const void *src, size_t length) { return virt_cpy(dest_pages, dest, NULL, (userptr_t)src, length); } -inline bool virt_cpy_from(struct pagedir *src_pages, // virtual -> physical +static inline bool virt_cpy_from(struct pagedir *src_pages, // virtual -> physical void *dest, const void __user *src, size_t length) { return virt_cpy(NULL, (userptr_t)dest, src_pages, src, length); } -- cgit v1.2.3