2 * linux/arch/alpha/mm/extable.c
5 #include <linux/module.h>
6 #include <linux/sort.h>
7 #include <asm/uaccess.h>
9 static inline unsigned long ex_to_addr(const struct exception_table_entry *x)
11 return (unsigned long)&x->insn + x->insn;
14 static void swap_ex(void *a, void *b, int size)
16 struct exception_table_entry *ex_a = a, *ex_b = b;
17 unsigned long addr_a = ex_to_addr(ex_a), addr_b = ex_to_addr(ex_b);
18 unsigned int t = ex_a->fixup.unit;
20 ex_a->fixup.unit = ex_b->fixup.unit;
22 ex_a->insn = (int)(addr_b - (unsigned long)&ex_a->insn);
23 ex_b->insn = (int)(addr_a - (unsigned long)&ex_b->insn);
27 * The exception table needs to be sorted so that the binary
28 * search that we use to find entries in it works properly.
29 * This is used both for the kernel exception table and for
30 * the exception tables of modules that get loaded.
32 static int cmp_ex(const void *a, const void *b)
34 const struct exception_table_entry *x = a, *y = b;
37 if (ex_to_addr(x) > ex_to_addr(y))
39 if (ex_to_addr(x) < ex_to_addr(y))
44 void sort_extable(struct exception_table_entry *start,
45 struct exception_table_entry *finish)
47 sort(start, finish - start, sizeof(struct exception_table_entry),
53 * Any entry referring to the module init will be at the beginning or
56 void trim_init_extable(struct module *m)
58 /*trim the beginning*/
59 while (m->num_exentries &&
60 within_module_init(ex_to_addr(&m->extable[0]), m)) {
65 while (m->num_exentries &&
66 within_module_init(ex_to_addr(&m->extable[m->num_exentries-1]),
70 #endif /* CONFIG_MODULES */
72 const struct exception_table_entry *
73 search_extable(const struct exception_table_entry *first,
74 const struct exception_table_entry *last,
77 while (first <= last) {
78 const struct exception_table_entry *mid;
79 unsigned long mid_value;
81 mid = (last - first) / 2 + first;
82 mid_value = ex_to_addr(mid);
83 if (mid_value == value)
85 else if (mid_value < value)