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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Kernel exception handling table support.  Derived from arch/i386/mm/extable.c.
  3.  *
  4.  * Copyright (C) 2000 Hewlett-Packard Co
  5.  * Copyright (C) 2000 John Marvin (jsm@fc.hp.com)
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/module.h>
  9. #include <linux/mm.h>
  10. #include <linux/ptrace.h>
  11. #include <asm/uaccess.h>
  12. extern const struct exception_table_entry __start___ex_table[];
  13. extern const struct exception_table_entry __stop___ex_table[];
  14. static inline const struct exception_table_entry *
  15. search_one_table (const struct exception_table_entry *first,
  16.   const struct exception_table_entry *last,
  17.   unsigned long addr)
  18. {
  19. /* Abort early if the search value is out of range.  */
  20. if ((addr < first->addr) || (addr > last->addr))
  21. return 0;
  22.         while (first <= last) {
  23. const struct exception_table_entry *mid;
  24. long diff;
  25. mid = first + ((last - first)/2);
  26. diff = mid->addr - addr;
  27.                 if (diff == 0)
  28.                         return mid;
  29.                 else if (diff < 0)
  30.                         first = mid+1;
  31.                 else
  32.                         last = mid-1;
  33.         }
  34.         return 0;
  35. }
  36. const struct exception_table_entry *
  37. search_exception_table (unsigned long addr)
  38. {
  39. #ifndef CONFIG_MODULE
  40. /* There is only the kernel to search.  */
  41. return search_one_table(__start___ex_table, 
  42.                                 __stop___ex_table - 1, 
  43.                                 addr);
  44. #else
  45. struct exception_table_entry *ret;
  46. /* The kernel is the last "module" -- no need to treat it special. */
  47. struct module *mp;
  48. for (mp = module_list; mp ; mp = mp->next) {
  49. if (!mp->ex_table_start)
  50. continue;
  51. ret = search_one_table(mp->ex_table_start, mp->ex_table_end - 1,
  52.        addr);
  53. if (ret)
  54. return ret;
  55. }
  56. return 0;
  57. #endif
  58. }