aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/module.h')
-rw-r--r--include/linux/module.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h
index 6914fcad4673..680db9e2ac36 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -359,7 +359,9 @@ struct module
359 359
360#ifdef CONFIG_MODULE_UNLOAD 360#ifdef CONFIG_MODULE_UNLOAD
361 /* What modules depend on me? */ 361 /* What modules depend on me? */
362 struct list_head modules_which_use_me; 362 struct list_head source_list;
363 /* What modules do I depend on? */
364 struct list_head target_list;
363 365
364 /* Who is waiting for us to be unloaded */ 366 /* Who is waiting for us to be unloaded */
365 struct task_struct *waiter; 367 struct task_struct *waiter;