]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] Extable list removal
authorRusty Russell <rusty@rustcorp.com.au>
Tue, 1 Apr 2003 12:42:30 +0000 (04:42 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Tue, 1 Apr 2003 12:42:30 +0000 (04:42 -0800)
This removes the extable list, and the struct exception_table, in
favour of just iterating through the modules.  Now all iteration is
within kernel/module.c, this is a fairly trivial cleanup.

include/linux/module.h
kernel/extable.c
kernel/module.c

index a7c673ea41a72303dc0cd4916850f3116273d4aa..8aef11352270b519401a687b74520c9b156ecf3e 100644 (file)
@@ -18,7 +18,6 @@
 #include <linux/stringify.h>
 
 #include <asm/module.h>
-#include <asm/uaccess.h> /* For struct exception_table_entry */
 
 /* Not Yet Implemented */
 #define MODULE_AUTHOR(name)
@@ -51,6 +50,8 @@ extern int init_module(void);
 extern void cleanup_module(void);
 
 /* Archs provide a method of finding the correct exception table. */
+struct exception_table_entry;
+
 const struct exception_table_entry *
 search_extable(const struct exception_table_entry *first,
               const struct exception_table_entry *last,
@@ -114,15 +115,6 @@ extern const struct gtype##_id __mod_##gtype##_table               \
 /* Given an address, look for it in the exception tables */
 const struct exception_table_entry *search_exception_tables(unsigned long add);
 
-struct exception_table
-{
-       struct list_head list;
-
-       unsigned int num_entries;
-       const struct exception_table_entry *entry;
-};
-
-
 #ifdef CONFIG_MODULES
 
 /* Get/put a kernel symbol (calls must be symmetric) */
@@ -197,8 +189,9 @@ struct module
        unsigned int num_gpl_syms;
        const unsigned long *gpl_crcs;
 
-       /* Exception tables */
-       struct exception_table extable;
+       /* Exception table */
+       unsigned int num_exentries;
+       const struct exception_table_entry *extable;
 
        /* Startup function. */
        int (*init)(void);
index 817f069166226536c133364987fa647d085c70cb..5363e7f6f9e4aa8be6e67ff8db29d0a1f62ec3c5 100644 (file)
@@ -16,6 +16,7 @@
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
 #include <linux/module.h>
+#include <asm/uaccess.h>
 
 extern const struct exception_table_entry __start___ex_table[];
 extern const struct exception_table_entry __stop___ex_table[];
index 065e49805334d9afc5e9b6e6caa44da858ca5d8e..163e5c00e74c8c1224d756e63856fd274971d6f2 100644 (file)
 #define symbol_is(literal, string)                             \
        (strcmp(MODULE_SYMBOL_PREFIX literal, (string)) == 0)
 
-/* Protects extables and symbols lists */
+/* Protects module list */
 static spinlock_t modlist_lock = SPIN_LOCK_UNLOCKED;
 
 /* List of modules, protected by module_mutex AND modlist_lock */
 static DECLARE_MUTEX(module_mutex);
 static LIST_HEAD(modules);
-static LIST_HEAD(extables);
 
 /* We require a truly strong try_module_get() */
 static inline int strong_try_module_get(struct module *mod)
@@ -883,7 +882,6 @@ static void free_module(struct module *mod)
        /* Delete from various lists */
        spin_lock_irq(&modlist_lock);
        list_del(&mod->list);
-       list_del(&mod->extable.list);
        spin_unlock_irq(&modlist_lock);
 
        /* Module unload stuff */
@@ -1268,14 +1266,9 @@ static struct module *load_module(void *umod,
        }
 #endif
 
-       /* Set up exception table */
-       if (exindex) {
-               /* FIXME: Sort exception table. */
-               mod->extable.num_entries = (sechdrs[exindex].sh_size
-                                           / sizeof(struct
-                                                    exception_table_entry));
-               mod->extable.entry = (void *)sechdrs[exindex].sh_addr;
-       }
+       /* Set up exception table */
+       mod->num_exentries = sechdrs[exindex].sh_size / sizeof(*mod->extable);
+       mod->extable = (void *)sechdrs[exindex].sh_addr;
 
        /* Now do relocations. */
        for (i = 1; i < hdr->e_shnum; i++) {
@@ -1374,7 +1367,6 @@ sys_init_module(void *umod,
        /* Now sew it into the lists.  They won't access us, since
            strong_try_module_get() will fail. */
        spin_lock_irq(&modlist_lock);
-       list_add(&mod->extable.list, &extables);
        list_add(&mod->list, &modules);
        spin_unlock_irq(&modlist_lock);
 
@@ -1539,14 +1531,16 @@ const struct exception_table_entry *search_module_extables(unsigned long addr)
 {
        unsigned long flags;
        const struct exception_table_entry *e = NULL;
-       struct exception_table *i;
+       struct module *mod;
 
        spin_lock_irqsave(&modlist_lock, flags);
-       list_for_each_entry(i, &extables, list) {
-               if (i->num_entries == 0)
+       list_for_each_entry(mod, &modules, list) {
+               if (mod->num_exentries == 0)
                        continue;
                                
-               e = search_extable(i->entry, i->entry+i->num_entries-1, addr);
+               e = search_extable(mod->extable,
+                                  mod->extable + mod->num_exentries - 1,
+                                  addr);
                if (e)
                        break;
        }