mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
modules: only use mod->param_lock if CONFIG_MODULES
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
cf2fde7b39
commit
20bdc2cfdb
@ -30,7 +30,11 @@
|
||||
static DEFINE_MUTEX(param_lock);
|
||||
|
||||
/* 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 : ¶m_lock)
|
||||
#else
|
||||
#define KPARAM_MUTEX(mod) (¶m_lock)
|
||||
#endif
|
||||
|
||||
static inline void check_kparam_locked(struct module *mod)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user