免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 9746 | 回复: 17
打印 上一主题 下一主题

为什么对 kmalloc 分配的内存做 ioremap 会导致崩溃? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-01-27 16:24 |只看该作者 |倒序浏览
我们知道 kmalloc 分配的内存可以用一个宏 __virt_to_phys 来取得对应的物理内存。我发现,如果对这块物理内存再做 ioremap 并且读写 ioremap 之后的内存,内核就会崩溃。请问各位这可能是什么原因?谢谢。

详见附件中的代码,我的测试平台是 arm 平台。 testmem.rar (871 Bytes, 下载次数: 87)

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
2 [报告]
发表于 2011-01-27 17:09 |只看该作者
本帖最后由 amarant 于 2011-01-27 17:14 编辑

__virt_to_phys(pdstbuff)  这个函数只对非高端内存有用吧。你检查下返回的地址是不是不在直接可以映射的范围了?

论坛徽章:
0
3 [报告]
发表于 2011-01-27 23:29 |只看该作者
回复 1# tassard


    kmalloc()分配的内存块已经被映射过了,你再来一个ioremap()不出问题才怪哩

论坛徽章:
0
4 [报告]
发表于 2011-01-27 23:38 |只看该作者
回复  tassard


    kmalloc()分配的内存块已经被映射过了,你再来一个ioremap()不出问题才怪哩
garyv 发表于 2011-01-27 23:29



    还有一点,就是我看你代码里面的全局变量size好像一直为0,代码看上去像是一个驱动模块,但是你又用到了main的argv???

    总之,代码很奇特。。。

论坛徽章:
7
丑牛
日期:2013-10-18 14:43:21技术图书徽章
日期:2013-11-03 09:58:03辰龙
日期:2014-01-15 22:57:50午马
日期:2014-09-15 07:04:39丑牛
日期:2014-10-16 14:25:222015年亚洲杯之伊朗
日期:2015-03-16 10:24:352015亚冠之城南
日期:2015-05-31 09:52:32
5 [报告]
发表于 2011-01-28 00:04 |只看该作者
ls说的对.你ioremap了0个字节.总之写代码还是严谨点好...

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
6 [报告]
发表于 2011-01-28 09:49 |只看该作者
回复 1# tassard


    你好,我测试了一下是可以的。下面是我的代码:
  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/module.h>
  4. #include <linux/io.h>
  5. #include <linux/mm.h>
  6. #include <linux/slab.h>

  7. static int __init test_init(void)
  8. {
  9.         char * buf = NULL;
  10.         void __iomem * map;
  11.         struct page * page;

  12.         printk("\n\n--test begin--\n");
  13.         buf = kmalloc( GFP_KERNEL, 4);
  14.         if (!buf) {
  15.                 printk( "ERR: no memory.\n" );
  16.                 return -1;
  17.         }

  18.         page = virt_to_page(buf);

  19.         printk("========================\n");
  20.         printk(" page_count(page): %d\n", (int) page_count(page));
  21.         printk("virt addr of buf : 0x%p.\n", buf);
  22.         printk("phys addr of buf:  0x%x.\n", (int) __pa(buf));
  23.         printk("high addr of mem : 0x%x.\n", 1024*1024*896);
  24.         printk("========================\n");

  25.         if ((unsigned long)buf > __va(1024*1024*896)){
  26.                 printk("High mem.\n");
  27.                 kfree(buf);
  28.                 return 0;
  29.         }

  30.         map = ioremap((int)__pa(buf), 4);
  31.         if (!map){
  32.                 printk(" ERR: ioremap faild.\n");
  33.                 kfree(buf);
  34.                 return -1;
  35.         }

  36.         printk(" page_count(page): %d\n", (int) page_count(page));
  37.         kfree(buf);

  38.         return 0;
  39. }

  40. static void __exit test_exit(void)
  41. {
  42.     //do nothing now
  43. }

  44. module_init(test_init);
  45. module_exit(test_exit);

  46. MODULE_LICENSE("GPL");
复制代码
makefile:
  1. obj-m := test.o  
  2. KERNELDIR ?= /lib/modules/$(shell uname -r)/build
  3. PWD := $(shell pwd)


  4. default:
  5.         $(MAKE) -C ${KERNELDIR} M=$(PWD) modules
  6.         sudo insmod test.ko
  7.         sudo rmmod test.ko
  8.         dmesg

  9. clean:
  10.         @rm -f *.mod.* Module.* *.ko *.o *.order
复制代码

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
7 [报告]
发表于 2011-01-28 09:50 |只看该作者
回复 3# garyv


    你好,为什么对kmalloc分配的物理内存不能进行ioremap,能详细讲一下吗?

论坛徽章:
0
8 [报告]
发表于 2011-01-28 11:19 |只看该作者
回复 6# amarant

谢谢你的帮助。

我测试了下你的代码,如果仅仅映射4字节内存,是没有问题的。但是映射的内存多了就会崩溃。
比如:我映射了10240字节,然后对这块内存做 memset,之后就崩溃。
  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/module.h>
  4. #include <linux/io.h>
  5. #include <linux/mm.h>
  6. #include <linux/slab.h>

  7. static int __init test_init(void)
  8. {
  9.     char * buf = NULL;
  10.     void __iomem * map;
  11.     struct page * page;

  12.     /////////////
  13.     //mychange
  14.     /////////////
  15.     printk("\n\n--test begin--\n");
  16.     buf = kmalloc( GFP_KERNEL, 10240);
  17.     if (!buf) {
  18.         printk( "ERR: no memory.\n" );
  19.         return -1;
  20.     }

  21.     page = virt_to_page(buf);

  22.     printk("========================\n");
  23.     printk(" page_count(page): %d\n", (int) page_count(page));
  24.     printk("virt addr of buf : 0x%p.\n", buf);
  25.     printk("phys addr of buf:  0x%x.\n", (int) __pa(buf));
  26.     printk("high addr of mem : 0x%x.\n", 1024*1024*896);
  27.     printk("========================\n");

  28.     if ((unsigned long)buf > __va(1024*1024*896)){
  29.         printk("High mem.\n");
  30.         kfree(buf);
  31.         return 0;
  32.     }

  33.     /////////////
  34.     //mychange
  35.     /////////////
  36.     map = ioremap((int)__pa(buf), 10240);
  37.     if (!map){
  38.         printk(" ERR: ioremap faild.\n");
  39.         kfree(buf);
  40.         return -1;
  41.     }

  42.     /////////////
  43.     //mychange
  44.     /////////////
  45.     memset( map, 0, 10240 );

  46.     printk(" page_count(page): %d\n", (int) page_count(page));
  47.     kfree(buf);

  48.     return 0;
  49. }

  50. static void __exit test_exit(void)
  51. {
  52.     //do nothing now
  53. }

  54. module_init(test_init);
  55. module_exit(test_exit);

  56. MODULE_LICENSE("GPL");
复制代码
下面是崩溃的log:
  1. Unable to handle kernel NULL pointer dereference at virtual address 00000000
  2. pgd = c0004000
  3. [00000000] *pgd=00000000
  4. Internal error: Oops: 817 [#1]
  5. last sysfs file:
  6. Modules linked in: testmem
  7. CPU: 0    Not tainted  (2.6.32.9[map100-dev] #84)
  8. PC is at free_block+0x70/0x144
  9. LR is at drain_array+0x9c/0xc8
  10. pc : [<c01d6bcc>]    lr : [<c01d6d3c>]    psr: 00000093
  11. sp : c7825f38  ip : 00000000  fp : 00000000
  12. r10: 00000000  r9 : 00000000  r8 : 00000000
  13. r7 : 00000000  r6 : 00000002  r5 : c7805c10  r4 : c7800240
  14. r3 : c78021a0  r2 : c54183a0  r1 : c5418020  r0 : 00000000
  15. Flags: nzcv  IRQs off  FIQs on  Mode SVC_32  ISA ARM  Segment kernel
  16. Control: 0005317f  Table: 079a4000  DAC: 00000017

  17. PC: 0xc01d6b4c:
  18. 6b4c  e1a01004 e8bd4070 eaffffd5 c01d7038 e92d4ff7 e1a04000 e1a05001 e1a06002
  19. 6b6c  e58d3004 e3a07000 ea000042 e7952107 e59f110c e2823101 e5911000 e1a03623
  20. 6b8c  e7910283 e0813283 e3100902 1593300c e5931000 e3110080 1a000002 e59f00e4
  21. 6bac  e3a01f85 ebfe6952 e593101c e59d0004 e591c004 e0843100 e5910000 e593304c
  22. 6bcc  e58c0000 e580c004 e59f00bc e591a00c e5810000 e59f00b4 e06aa002 e5810004
  23. 6bec  e5940014 e089809a e5910014 e0812109 e582001c e5912010 e5819014 e2422001
  24. 6c0c  e5812010 e5932018 e1a0a008 e2822001 e5832018 e5910010 e1a0b009 e3500000
  25. 6c2c  1a00000e e593001c e1520000 9a000005 e594001c e0602002 e5832018 e1a00004

  26. LR: 0xc01d6cbc:
  27. 6cbc  e594200c e2731001 33a01000 e3520000 03a01000 e3510000 13a03000 1584300c
  28. 6cdc  18bd80f8 e10f2000 e3822080 e121f002 e5946000 e3560000 0a000017 e3530000
  29. 6cfc  11a05006 1a000004 e5940004 e3a01005 e2800004 eb02a633 e1a05000 e1550006
  30. 6d1c  82865001 81a050a5 e2846010 e1a00007 e1a01006 e1a02005 e59d3018 ebffff87
  31. 6d3c  e5942000 e1a00006 e0652002 e5842000 e0861105 e1a02102 eb02a7bd e10f3000
  32. 6d5c  e3c33080 e121f003 e8bd80f8 e92d41f0 e1a04001 e1a05000 e1a08002 e2817010
  33. 6d7c  e3a06000 ea00001a e10f3000 e3833080 e121f003 e5941014 e1510007 1a000003
  34. 6d9c  e10f3000 e3c33080 e121f003 ea000015 e5912004 e5913000 e59f0050 e5823000

  35. SP: 0xc7825eb8:
  36. 5eb8  00000001 00000000 00000000 00000000 c543414b c543404a c5434884 c5434920
  37. 5ed8  c5434950 ffffffff c7825f24 00000002 00000000 c016da0c 00000000 c5418020
  38. 5ef8  c54183a0 c78021a0 c7800240 c7805c10 00000002 00000000 00000000 00000000
  39. 5f18  00000000 00000000 00000000 c7825f38 c01d6d3c c01d6bcc 00000093 ffffffff
  40. 5f38  c7800240 00000000 00000002 c7805c00 00000002 c7805c10 c7800240 00000000
  41. 5f58  00000000 00000000 00000000 c01d6d3c 00000000 c7800240 c78021a0 00000000
  42. 5f78  c0519d40 c01d6e4c 00000000 c78018c0 60000013 c78018c0 c7824000 c78018c8
  43. 5f98  c01d6e14 c0196c98 c7815360 00000000 c7815360 c0199ed4 c7825fb0 c7825fb0

  44. R1: 0xc5417fa0:
  45. 7fa0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  46. 7fc0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  47. 7fe0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  48. 8000  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  49. 8020  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  50. 8040  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  51. 8060  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  52. 8080  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

  53. R2: 0xc5418320:
  54. 8320  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  55. 8340  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  56. 8360  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  57. 8380  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  58. 83a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  59. 83c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  60. 83e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  61. 8400  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

  62. R3: 0xc7802120:
  63. 2120  c541b000 c541b000 c5426020 c7813000 c7802130 c7802130 0000000b 000000a0
  64. 2140  00000001 00000000 00000000 ffff96f0 00000000 f10ff00f f01ff00f b207f00f
  65. 2160  c7802160 c7802160 c5411040 c7803000 c7802170 c7802170 00000000 00000096
  66. 2180  00000000 00000000 00000000 ffff96f0 00000001 740ff00f f00ff00f f00df00f
  67. 21a0  c78021a0 c78021a0 c5418020 c7833000 c78021b0 c78021b0 00000000 0000008c
  68. 21c0  00000002 00000000 00000000 ffff97b8 00000000 f10bf00f e00ff00f f047f00f
  69. 21e0  c5417020 c5417020 c78b9000 c7804000 c78021f0 c78021f0 00000004 00000087
  70. 2200  00000002 00000000 00000000 ffff9880 00000000 740ef00f e00ff00f f01df00f

  71. R4: 0xc78001c0:
  72. 01c0  c04aacc4 c7800164 c7800224 c7802120 00000000 00000000 00000000 00000000
  73. 01e0  c7805a00 0000003c 00000078 00000000 00000080 02000000 00042000 0000001e
  74. 0200  00000000 00000000 00000003 00000020 00000000 000000a0 00000000 00000000
  75. 0220  c04aacd9 c78001c4 c7800284 c7802160 00000000 00000000 00000000 00000000
  76. 0240  c7805c00 0000003c 00000078 00000000 000000c0 01555556 00042000 00000014
  77. 0260  00000000 00000000 00000004 00000020 00000000 00000080 00000000 00000000
  78. 0280  c04aacf0 c7800224 c78002e4 c78021a0 00000000 00000000 00000000 00000000
  79. 02a0  c7805e00 0000003c 00000078 00000000 00000100 01000000 00042000 0000000f

  80. R5: 0xc7805b90:
  81. 5b90  7700ff00 ff00ff00 ff00ff00 eb00ff00 df00ff00 ff00ff00 df00ff00 ff00ff00
  82. 5bb0  ff00ff00 ff00ff00 ff00ff00 ff00ff00 f702ff00 f500ff00 ff54ff00 ef00ff00
  83. 5bd0  7500ff00 fd00ff00 fe00ff00 ab00ff00 ff00ff00 fd00ff00 ff00ff00 ff00ff00
  84. 5bf0  ff00ff00 ff00ff00 ff00ff00 ff00ff00 00000004 00000078 0000003c 00000000
  85. 5c10  c54183a0 c54182e0 c5418220 c5418160 c54180a0 c5418460 c5418520 c54185e0
  86. 5c30  c54186a0 c5418760 c5418820 c54188e0 c54189a0 c5418a60 c5418b20 c5418be0
  87. 5c50  c5418ca0 c5418d60 c5418e20 c5418ee0 c785d0a0 c785d160 af00ff00 ff50ff00
  88. 5c70  ff00ff00 7700ff00 bf10ff00 ff00ff00 ff02ff00 ff00ff00 ff00ff00 ff41ff00
  89. Process events/0 (pid: 4, stack limit = 0xc7824270)
  90. Stack: (0xc7825f38 to 0xc7826000)
  91. 5f20:                                                       c7800240 00000000
  92. 5f40: 00000002 c7805c00 00000002 c7805c10 c7800240 00000000 00000000 00000000
  93. 5f60: 00000000 c01d6d3c 00000000 c7800240 c78021a0 00000000 c0519d40 c01d6e4c
  94. 5f80: 00000000 c78018c0 60000013 c78018c0 c7824000 c78018c8 c01d6e14 c0196c98
  95. 5fa0: c7815360 00000000 c7815360 c0199ed4 c7825fb0 c7825fb0 c0196b38 c781ff60
  96. 5fc0: c7825fd4 c0196b38 c78018c0 c0199b28 00000000 00000000 c7825fd8 c7825fd8
  97. 5fe0: 00000000 00000000 00000000 00000000 00000000 c016e84c ff00ff00 fe00ff00
  98. [<c01d6bcc>] (free_block+0x70/0x144) from [<c01d6d3c>] (drain_array+0x9c/0xc8)
  99. [<c01d6d3c>] (drain_array+0x9c/0xc8) from [<c01d6e4c>] (cache_reap+0x38/0x118)
  100. [<c01d6e4c>] (cache_reap+0x38/0x118) from [<c0196c98>] (worker_thread+0x160/0x1ec)
  101. [<c0196c98>] (worker_thread+0x160/0x1ec) from [<c0199b28>] (kthread+0x78/0x80)
  102. [<c0199b28>] (kthread+0x78/0x80) from [<c016e84c>] (kernel_thread_exit+0x0/0x8)
  103. Code: e591c004 e0843100 e5910000 e593304c (e58c0000)
  104. ---[ end trace b6fb631c02ff560a ]---
  105. Unable to handle kernel NULL pointer dereference at virtual address 00000000
  106. pgd = c0004000
  107. [00000000] *pgd=00000000
  108. Internal error: Oops: 817 [#2]
  109. last sysfs file:
  110. Modules linked in: testmem
  111. CPU: 0    Tainted: G      D     (2.6.32.9[map100-dev] #84)
  112. PC is at as_add_request+0xb0/0x128
  113. LR is at elv_rb_add+0x88/0x90
  114. pc : [<c027b334>]    lr : [<c0271808>]    psr: 60000093
  115. sp : c7825c80  ip : 00000000  fp : 00000000
  116. r10: 00000200  r9 : 00000001  r8 : 00000000
  117. r7 : 00000000  r6 : 0000002e  r5 : c5417980  r4 : c503a0c8
  118. r3 : c5417988  r2 : 00000000  r1 : c541798c  r0 : ffffaea0
  119. Flags: nZCv  IRQs off  FIQs on  Mode SVC_32  ISA ARM  Segment kernel
  120. Control: 0005317f  Table: 079a4000  DAC: 00000017

  121. PC: 0xc027b2b4:
  122. b2b4  13a06001 e3500000 e5840058 0a00000c e5901014 e1a02004 e1a00005 ebfffc42
  123. b2d4  e5943058 e5933014 e10f2000 e3821080 e121f001 e593100c e2811001 e583100c
  124. b2f4  e121f002 e1a00005 e1a01004 ebffffc9 e59f209c e2863001 e286602e e5921000
  125. b314  e7950106 e0853183 e5932008 e0800001 e2831004 e5840008 e5841000 e5834008
  126. b334  e5824000 e5943024 e59f6060 e5842004 e0036006 e3560001 13a0601c 03a06018
  127. b354  e0866005 e1a00005 e1a01004 e5962004 ebfffb66 e595307c e5860004 e2433001
  128. b374  e3530001 8a000006 e1a00005 e1a01004 ebfffcb8 e3500000 0a000001 e1a00005
  129. b394  ebfffdb8 e3a03001 e584305c e8bd8070 00040001 c0516d98 e92d41f0 e590300c

  130. LR: 0xc0271788:
  131. 1788  e1a02000 e3a0c000 ea000012 e5916034 e5145018 e591c030 e1550006 e514201c
  132. 17a8  e244004c 8a000002 1a000003 e152000c 9a000001 e2842008 ea000005 e1560005
  133. 17c8  8a000002 18bd8070 e15c0002 98bd8070 e2842004 e1a0c004 e5924000 e3540000
  134. 17e8  1affffe9 e281004c e581c04c e5814054 e5814050 e5820000 e1a01003 eb004fd4
  135. 1808  e1a00004 e8bd8070 e5903184 e1a011a3 e0612003 e0422223 e2422001 e283c001
  136. 1828  e3520001 b3a02001 e061100c e1510003 95801188 85803188 e580218c e12fff1e
  137. 1848  e5903048 e5930144 e3500000 128000a0 e12fff1e e92d4008 e1a03000 e240008c
  138. 1868  e1a0e00f e513f048 e8bd8008 e92d4008 e5903044 e3530000 08bd8008 e12fff33

  139. SP: 0xc7825c00:
  140. 5c00  00011200 c541a9e0 00011210 c7824000 c541a9f8 c01bb678 c7825d24 c0546ec0
  141. 5c20  0000000d ffffffff c7825c6c 0000002e 00000000 c016da0c ffffaea0 c541798c
  142. 5c40  00000000 c5417988 c503a0c8 c5417980 0000002e 00000000 00000000 00000001
  143. 5c60  00000200 00000000 00000000 c7825c80 c0271808 c027b334 60000093 ffffffff
  144. 5c80  c503a0c8 c54780f8 c503a0c8 c02712d8 c54780f8 00000001 c503a0c8 00000000
  145. 5ca0  00000000 c0273e28 c54780f8 c503a0c8 003a9fff c7845920 c7824000 003aa000
  146. 5cc0  00000000 c54780f8 003a9f77 c02727a4 003aa000 00000000 c0518ff4 c781a420
  147. 5ce0  00000000 c054a07c c7825d34 c7401698 00000000 c780c6a0 c781a420 c01ea100

  148. R0: 0xffffae20:
  149. ae20  ******** ******** ******** ******** ******** ******** ******** ********
  150. ae40  ******** ******** ******** ******** ******** ******** ******** ********
  151. ae60  ******** ******** ******** ******** ******** ******** ******** ********
  152. ae80  ******** ******** ******** ******** ******** ******** ******** ********
  153. aea0  ******** ******** ******** ******** ******** ******** ******** ********
  154. aec0  ******** ******** ******** ******** ******** ******** ******** ********
  155. aee0  ******** ******** ******** ******** ******** ******** ******** ********
  156. af00  ******** ******** ******** ******** ******** ******** ******** ********

  157. R1: 0xc541790c:
  158. 790c  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  159. 792c  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  160. 794c  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  161. 796c  00000000 00000000 00000000 00000000 00000000 00000000 c503a114 00000000
  162. 798c  00000000 c503a0c8 00000000 00000000 00000000 00000000 00000000 00000000
  163. 79ac  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  164. 79cc  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  165. 79ec  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

  166. R3: 0xc5417908:
  167. 7908  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  168. 7928  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  169. 7948  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  170. 7968  00000000 00000000 00000000 00000000 00000000 00000000 00000000 c503a114
  171. 7988  00000000 00000000 c503a0c8 00000000 00000000 00000000 00000000 00000000
  172. 79a8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  173. 79c8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  174. 79e8  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000

  175. R4: 0xc503a048:
  176. a048  00000000 00000000 00000000 00000000 00000000 00000000 c783c760 c783c760
  177. a068  000000c8 c503a0c8 00000011 00000002 00000000 ffffffff 00000000 00000003
  178. a088  ffffffff 00000005 00000006 00000007 00000008 00000009 0000000a 0000000b
  179. a0a8  0000000c 0000000d 0000000e 0000000f 00000010 00000011 00000012 ffffffff
  180. a0c8  c541798c c503a0c8 ffffaea0 00000000 00000000 00000000 00000000 00000000
  181. a0e8  c54780f8 01082021 00000001 00000000 00000265 00000000 00000200 c7845920
  182. a108  c7845920 00000000 c5417b78 00000001 00000000 00000000 c50623f8 00000000
  183. a128  c5432400 ffffaea0 00000001 00000000 c0009800 ffffffff 00000000 00000001

  184. R5: 0xc5417900:
  185. 7900  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  186. 7920  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  187. 7940  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  188. 7960  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  189. 7980  00000000 c503a114 00000000 00000000 c503a0c8 00000000 00000000 00000000
  190. 79a0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  191. 79c0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  192. 79e0  00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
  193. Process flush-<NULL> (pid: 55, stack limit = 0xc7824270)
  194. Stack: (0xc7825c80 to 0xc7826000)
  195. 5c80: c503a0c8 c54780f8 c503a0c8 c02712d8 c54780f8 00000001 c503a0c8 00000000
  196. 5ca0: 00000000 c0273e28 c54780f8 c503a0c8 003a9fff c7845920 c7824000 003aa000
  197. 5cc0: 00000000 c54780f8 003a9f77 c02727a4 003aa000 00000000 c0518ff4 c781a420
  198. 5ce0: 00000000 c054a07c c7825d34 c7401698 00000000 c780c6a0 c781a420 c01ea100
  199. 5d00: c7815390 c0515858 00011200 c7845920 00000001 00000001 c7414248 00000001
  200. 5d20: 00000001 000001df 00000000 c02728bc c7410510 0000003b ffffffff c7414208
  201. 5d40: c783e820 00000001 00000010 c01fcbb4 c7845920 c01fcc60 00000010 0000000f
  202. 5d60: c7414208 c7845920 00000001 c7414248 000001dc 00000001 000001df c01f7f74
  203. 5d80: 00000000 c05c6120 c7414108 c74028c8 00000400 c01fb14c c7825da4 00000000
  204. 5da0: ffffffe3 00000001 00000200 c01fd934 003a9f76 00000000 00000000 c05c6120
  205. 5dc0: c74028c8 c7825f18 c01fd934 c01f9628 00000400 c7825e3c 00000000 c01fb3c8
  206. 5de0: c01f9628 c01fd934 c7825f18 c7402964 00000000 c05c6120 c5478198 ffffffff
  207. 5e00: c7825e3c c01bee74 c7825f18 c01bf51c 0000000e 00000000 c7402964 00000000
  208. 5e20: 0000003c 00000001 00000001 c01bee60 c7402964 00000000 00000000 00000001
  209. 5e40: 00000000 c05c6120 c7402964 c7414208 c0009840 00000000 00000000 00000000
  210. 5e60: 00000000 c01f8a40 c74364a0 c79af000 c7414208 c02229f0 00000000 0000003c
  211. 5e80: 00000000 c74028c8 c7825f18 c7825f18 00000000 c7402964 00000000 00000004
  212. 5ea0: 00000000 c01bf6c0 c74028c8 c01f2dc8 20000013 c54781f8 c7825f18 c74028c8
  213. 5ec0: c5478220 c5478218 00000000 c01f3810 c780a240 ffffaea0 00000000 c5478218
  214. 5ee0: c7825f24 c74028d0 c74028d0 c780a200 c7815390 c7825f78 c54781f8 00000000
  215. 5f00: c5478220 00000004 00000000 c5478198 00000000 c01f39c8 c5478198 00000000
  216. 5f20: 00000000 c7825f54 00000400 00000000 00000000 00000000 00000000 00000000
  217. 5f40: 00000014 00000000 c7815360 c7824000 c7825f74 ffffa2e8 c7825f78 c54781f8
  218. 5f60: 00000000 00000202 00000000 00000000 00000000 c01f3c58 00000202 00000000
  219. 5f80: 00000000 00000003 c019094c 000001f4 c7824000 ffff9730 c54781f8 00000000
  220. 5fa0: 00000000 c01f3ca4 00000000 c5478198 c54781f8 c01c9178 c54781f8 c01c91e0
  221. 5fc0: c7843f38 c7825fd4 c01c9178 c0199b28 00000000 00000000 c7825fd8 c7825fd8
  222. 5fe0: 00000000 00000000 00000000 00000000 00000000 c016e84c ff00ff00 fe00ff00
  223. [<c027b334>] (as_add_request+0xb0/0x128) from [<c02712d8>] (elv_insert+0x10c/0x1fc)
  224. [<c02712d8>] (elv_insert+0x10c/0x1fc) from [<c0273e28>] (__make_request+0x340/0x3c4)
  225. [<c0273e28>] (__make_request+0x340/0x3c4) from [<c02727a4>] (generic_make_request+0x25c/0x2b0)
  226. [<c02727a4>] (generic_make_request+0x25c/0x2b0) from [<c02728bc>] (submit_bio+0xc4/0xe0)
  227. [<c02728bc>] (submit_bio+0xc4/0xe0) from [<c01f7f74>] (submit_bh+0x184/0x1bc)
  228. [<c01f7f74>] (submit_bh+0x184/0x1bc) from [<c01fb14c>] (__block_write_full_page+0x308/0x4b8)
  229. [<c01fb14c>] (__block_write_full_page+0x308/0x4b8) from [<c01fb3c8>] (block_write_full_page_endio+0xcc/0xd4)
  230. [<c01fb3c8>] (block_write_full_page_endio+0xcc/0xd4) from [<c01bee74>] (__writepage+0x14/0x64)
  231. [<c01bee74>] (__writepage+0x14/0x64) from [<c01bf51c>] (write_cache_pages+0x230/0x380)
  232. [<c01bf51c>] (write_cache_pages+0x230/0x380) from [<c01bf6c0>] (do_writepages+0x2c/0x38)
  233. [<c01bf6c0>] (do_writepages+0x2c/0x38) from [<c01f2dc8>] (writeback_single_inode+0xb4/0x204)
  234. [<c01f2dc8>] (writeback_single_inode+0xb4/0x204) from [<c01f3810>] (writeback_inodes_wb+0x374/0x3e8)
  235. [<c01f3810>] (writeback_inodes_wb+0x374/0x3e8) from [<c01f39c8>] (wb_writeback+0x144/0x1b0)
  236. [<c01f39c8>] (wb_writeback+0x144/0x1b0) from [<c01f3c58>] (wb_do_writeback+0x174/0x198)
  237. [<c01f3c58>] (wb_do_writeback+0x174/0x198) from [<c01f3ca4>] (bdi_writeback_task+0x28/0xbc)
  238. [<c01f3ca4>] (bdi_writeback_task+0x28/0xbc) from [<c01c91e0>] (bdi_start_fn+0x68/0xb8)
  239. [<c01c91e0>] (bdi_start_fn+0x68/0xb8) from [<c0199b28>] (kthread+0x78/0x80)
  240. [<c0199b28>] (kthread+0x78/0x80) from [<c016e84c>] (kernel_thread_exit+0x0/0x8)
  241. Code: e2831004 e5840008 e5841000 e5834008 (e5824000)
  242. ---[ end trace b6fb631c02ff560b ]---
复制代码

论坛徽章:
0
9 [报告]
发表于 2011-01-28 11:20 |只看该作者
回复 4# garyv

呵呵 运行这个模块要加参数的

论坛徽章:
0
10 [报告]
发表于 2011-01-28 11:24 |只看该作者
回复 2# amarant

我看了kernel的代码
在文件arch\arm\include\asm\memory.h里面,有下面的定义:
#define __pa(x)                        __virt_to_phys((unsigned long)(x))

所以你代码中的 __pa 和 我代码里面的__virt_to_phys其实是相同的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP