extable.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mm/extable.c
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/module.h>
  6. #include <asm/uaccess.h>
  7. extern const struct exception_table_entry __start___ex_table[];
  8. extern const struct exception_table_entry __stop___ex_table[];
  9. static inline unsigned long
  10. search_one_table(const struct exception_table_entry *first,
  11.  const struct exception_table_entry *last,
  12.  unsigned long value)
  13. {
  14.         while (first <= last) {
  15. const struct exception_table_entry *mid;
  16. long diff;
  17. mid = (last - first) / 2 + first;
  18. diff = mid->insn - value;
  19.                 if (diff == 0)
  20.                         return mid->fixup;
  21.                 else if (diff < 0)
  22.                         first = mid+1;
  23.                 else
  24.                         last = mid-1;
  25.         }
  26.         return 0;
  27. }
  28. extern spinlock_t modlist_lock;
  29. unsigned long
  30. search_exception_table(unsigned long addr)
  31. {
  32. unsigned long ret;
  33. #ifndef CONFIG_MODULES
  34. /* There is only the kernel to search.  */
  35. ret = search_one_table(__start___ex_table, __stop___ex_table-1, addr);
  36. #else
  37. /* The kernel is the last "module" -- no need to treat it special.  */
  38. unsigned long flags;
  39. struct module *mp;
  40. ret = 0;
  41. spin_lock_irqsave(&modlist_lock, flags);
  42. for (mp = module_list; mp != NULL; mp = mp->next) {
  43. if (mp->ex_table_start == NULL ||
  44.     !(mp->flags & (MOD_RUNNING | MOD_INITIALIZING)))
  45. continue;
  46. ret = search_one_table(mp->ex_table_start,
  47.        mp->ex_table_end - 1, addr);
  48. if (ret)
  49. break;
  50. }
  51. spin_unlock_irqrestore(&modlist_lock, flags);
  52. #endif
  53. return ret;
  54. }