提交 20bdc2cf 编写于 作者: S Stephen Rothwell 提交者: Rusty Russell

modules: only use mod->param_lock if CONFIG_MODULES

Signed-off-by: NStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: NRusty Russell <rusty@rustcorp.com.au>
上级 cf2fde7b
...@@ -30,7 +30,11 @@ ...@@ -30,7 +30,11 @@
static DEFINE_MUTEX(param_lock); static DEFINE_MUTEX(param_lock);
/* Use the module's mutex, or if built-in use the built-in mutex */ /* Use the module's mutex, or if built-in use the built-in mutex */
#ifdef CONFIG_MODULES
#define KPARAM_MUTEX(mod) ((mod) ? &(mod)->param_lock : &param_lock) #define KPARAM_MUTEX(mod) ((mod) ? &(mod)->param_lock : &param_lock)
#else
#define KPARAM_MUTEX(mod) (&param_lock)
#endif
static inline void check_kparam_locked(struct module *mod) static inline void check_kparam_locked(struct module *mod)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册