[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20190415181833.101222-1-trong@android.com>
Date: Mon, 15 Apr 2019 11:18:33 -0700
From: Tri Vo <trong@...roid.com>
To: jeyu@...nel.org
Cc: ndesaulniers@...gle.com, ghackmann@...roid.com, linux-mm@...ck.org,
kbuild-all@...org, rdunlap@...radead.org, lkp@...el.com,
linux-kernel@...r.kernel.org, pgynther@...gle.com,
willy@...radead.org, oberpar@...ux.ibm.com,
akpm@...ux-foundation.org, Tri Vo <trong@...roid.com>
Subject: [PATCH v2] module: add stubs for within_module functions
Provide stubs for within_module_core(), within_module_init(), and
within_module() to prevent build errors when !CONFIG_MODULES.
v2:
- Generalized commit message, as per Jessica.
- Stubs for within_module_core() and within_module_init(), as per Nick.
Suggested-by: Matthew Wilcox <willy@...radead.org>
Reported-by: Randy Dunlap <rdunlap@...radead.org>
Reported-by: kbuild test robot <lkp@...el.com>
Link: https://marc.info/?l=linux-mm&m=155384681109231&w=2
Signed-off-by: Tri Vo <trong@...roid.com>
---
include/linux/module.h | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/include/linux/module.h b/include/linux/module.h
index 5bf5dcd91009..35d83765bfbd 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -709,6 +709,23 @@ static inline bool is_module_text_address(unsigned long addr)
return false;
}
+static inline bool within_module_core(unsigned long addr,
+ const struct module *mod)
+{
+ return false;
+}
+
+static inline bool within_module_init(unsigned long addr,
+ const struct module *mod)
+{
+ return false;
+}
+
+static inline bool within_module(unsigned long addr, const struct module *mod)
+{
+ return false;
+}
+
/* Get/put a kernel symbol (calls should be symmetric) */
#define symbol_get(x) ({ extern typeof(x) x __attribute__((weak)); &(x); })
#define symbol_put(x) do { } while (0)
--
2.21.0.392.gf8f6787159e-goog
Powered by blists - more mailing lists