原帖由 hb12112 于 2009-10-14 19:03 发表
两种方法:
1 采用预留的方式,在内核态用io_remap.
2 alloc_bootmem分配,要修改内核.在内核启动的时候分配.
root@LinuxDev /platinum/project/module
# free
total used free shared buffers cached
Mem: 510644 275620 235024 0 48544 168876
-/+ buffers/cache: 58200 452444
Swap: 522104 0 522104
root@LinuxDev /platinum/project/module
# insmod module.ko
root@LinuxDev /platinum/project/module
# free
total used free shared buffers cached
Mem: 510644 480716 29928 0 48652 168888
-/+ buffers/cache: 263176 247468
Swap: 522104 0 522104
root@LinuxDev /platinum/project/module
# rmmod module
root@LinuxDev /platinum/project/module
# free
total used free shared buffers cached
Mem: 510644 276232 234412 0 48732 168888
-/+ buffers/cache: 58612 452032
Swap: 522104 0 522104
root@LinuxDev /platinum/project/module
#
原帖由 peimichael 于 2009-10-16 11:31 发表
刚想到一个小问题,
VMALLOC_START是在high_memory之上的8M以后的,
那么假如我有1G内存,high_memory界限会划在896M吧
也就是说vmalloc最多只有128-8=120M了,这还要再除去顶端的固定内核映射等空间
那么这 ...
[root@localhost alloc_large_mem]# free
total used free shared buffers cached
Mem: 385624 212368 173256 0 4972 75260
-/+ buffers/cache: 132136 253488
Swap: 522104 7992 514112
[root@localhost alloc_large_mem]# insmod alloc_large_mem.ko
[root@localhost alloc_large_mem]# free
total used free shared buffers cached
Mem: 385624 366024 19600 0 4988 75260
-/+ buffers/cache: 285776 99848
Swap: 522104 7992 514112
[root@localhost alloc_large_mem]#
MemTotal: 1018680 kB
MemFree: 642760 kB
Buffers: 32800 kB
Cached: 126024 kB
SwapCached: 0 kB
Active: 243148 kB
Inactive: 94348 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 1018680 kB
LowFree: 642760 kB
SwapTotal: 2096440 kB
SwapFree: 2096440 kB
Dirty: 1224 kB
Writeback: 0 kB
AnonPages: 178728 kB
Mapped: 20260 kB
Slab: 15712 kB
SReclaimable: 4400 kB
SUnreclaim: 11312 kB
PageTables: 896 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 2605780 kB
Committed_AS: 1095916 kB
VmallocTotal: 1040376 kB
VmallocUsed: 10108 kB
VmallocChunk: 1030208 kB
[root@localhost alloc_large_mem]# free
total used free shared buffers cached
Mem: 385624 207388 178236 0 6220 76076
-/+ buffers/cache: 125092 260532
Swap: 522104 7992 514112
[root@localhost alloc_large_mem]# cat /proc/meminfo | grep Vmalloc
VmallocTotal: 638968 kB
VmallocUsed: 3512 kB
VmallocChunk: 633644 kB
[root@localhost alloc_large_mem]# insmod alloc_large_mem.ko
[root@localhost alloc_large_mem]# free
total used free shared buffers cached
Mem: 385624 378624 7000 0 212 20952
-/+ buffers/cache: 357460 28164
Swap: 522104 72520 449584
[root@localhost alloc_large_mem]# cat /proc/meminfo | grep Vmalloc
VmallocTotal: 638968 kB
VmallocUsed: 311032 kB
VmallocChunk: 326440 kB
[root@localhost alloc_large_mem]#
# cat /proc/meminfo
MemTotal: 1544432 kB
MemFree: 1475704 kB
Buffers: 8604 kB
Cached: 31096 kB
SwapCached: 0 kB
Active: 30860 kB
Inactive: 19308 kB
HighTotal: 786368 kB
HighFree: 741500 kB
LowTotal: 758064 kB
LowFree: 734204 kB
SwapTotal: 522104 kB
SwapFree: 522104 kB
Dirty: 2524 kB
Writeback: 0 kB
AnonPages: 10512 kB
Mapped: 3184 kB
Slab: 7696 kB
SReclaimable: 2272 kB
SUnreclaim: 5424 kB
PageTables: 192 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 1294320 kB
Committed_AS: 16540 kB
VmallocTotal: 1294328 kB // 在启动时 kernel 里 vmalloc=1280M
VmallocUsed: 4216 kB
VmallocChunk: 1289704 kB
# free
total used free shared buffers cached
Mem: 1544432 68660 1475772 0 8604 31096
-/+ buffers/cache: 28960 1515472
Swap: 522104 0 522104
# insmod module.ko
# free
total used free shared buffers cached
Mem: 1544432 1118084 426348 0 8688 31096
-/+ buffers/cache: 1078300 466132
Swap: 522104 0 522104
# rmmod module
# free
total used free shared buffers cached
Mem: 1544432 69596 1474836 0 8772 31096
-/+ buffers/cache: 29728 1514704
Swap: 522104 0 522104
#
在386机器上,如果物理内存超过1G的话,default的vmalloc区间只有128M左右。同过vmalloc=XX参数的话,是减少了kernel线性映射空间为代价的。
在x86_64的机子上就没有这个问题,vmalloc的区间可以很大。
原帖由 eexplorer 于 2009-10-16 13:56 发表
查了一下,在compile kernel的时候有一个memory splict的选项,
可以改变PAGE_OFFSET的值。可以查一下 /lib/modules/`uname -r`/build/.config里CONFIG_PAGE_OFFSET的值。
原帖由 platinum 于 2009-10-16 13:07 发表
我用的是 32bit 虚拟机,里面运行的是 32bit linux 系统 gentoo
虚拟机分配了 1536MB 内存(宿主机 2GB)
原帖由 Godbach 于 2009-10-16 17:43 发表
白金兄,你申请了内存之后,给所有内存赋值为0xff
memset(data, 0xff, 1024 * 1024 * 200);
而不是清零,是不是有什么说法啊?
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |