summaryrefslogtreecommitdiff
path: root/kernel/exec_domain.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2002-11-10 17:08:07 -0800
committerAndy Grover <agrover@groveronline.com>2002-11-10 17:08:07 -0800
commitaa65be3f456be1ac4359f7fffeb7b4ae3c149419 (patch)
tree7deb9cf5ee0103545138396b83bc260092ab8240 /kernel/exec_domain.c
parent850b830c9639af788e2917aed3aea8d8bb9da1a1 (diff)
[PATCH] In-kernel Module Loader
This is an implementation of the in-kernel module loader extending the try_inc_mod_count() primitive and making its use compulsory. This has the benifit of simplicity, and similarity to the existing scheme. To reduce the cost of the constant increments and decrements, reference counters are lockless and per-cpu. Eliminated (coming in following patches): o Modversions o Module parameters o kallsyms o EXPORT_SYMBOL_GPL and MODULE_LICENCE checks o DEVICE_TABLE support. New features: o Typesafe symbol_get/symbol_put o Single "insert this module" syscall interface allows trivial userspace. o Raceless loading and unloading You will need the trivial replacement module utilities from: http://ozlabs.org/~rusty/module-init-tools-0.6.tar.gz
Diffstat (limited to 'kernel/exec_domain.c')
-rw-r--r--kernel/exec_domain.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/exec_domain.c b/kernel/exec_domain.c
index a62818a2188b..546cba8766c1 100644
--- a/kernel/exec_domain.c
+++ b/kernel/exec_domain.c
@@ -211,7 +211,12 @@ get_exec_domain_list(char *page)
for (ep = exec_domains; ep && len < PAGE_SIZE - 80; ep = ep->next)
len += sprintf(page + len, "%d-%d\t%-16s\t[%s]\n",
ep->pers_low, ep->pers_high, ep->name,
- ep->module ? ep->module->name : "kernel");
+#ifdef CONFIG_MODULES
+ ep->module ? ep->module->name : "kernel"
+#else
+ "kernel"
+#endif
+ );
read_unlock(&exec_domains_lock);
return (len);
}