diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2003-04-01 04:42:30 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2003-04-01 04:42:30 -0800 |
| commit | c17794bb23576b30c6ccc3112ba06ea1cd766b6d (patch) | |
| tree | 6442e1567450a6b2ca14dc97f0ce1e37a50d468d /kernel/extable.c | |
| parent | 265300c6b158ec0bb725bbf6401c742576e56059 (diff) | |
[PATCH] Extable list removal
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.
Diffstat (limited to 'kernel/extable.c')
| -rw-r--r-- | kernel/extable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/extable.c b/kernel/extable.c index 817f06916622..5363e7f6f9e4 100644 --- a/kernel/extable.c +++ b/kernel/extable.c @@ -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[]; |
