全部博文(2759)
发布时间:2014-10-29 10:25:19
介绍 Linux 3.3 内核 Ext4 文件系统的一个新特性——在线扩展文件系统大小的具体实现方法。......【阅读全文】
发布时间:2014-10-29 10:25:07
得闲研究下面几个宏!! #define offsetof(type,memb) (ssize_t)&(((type *)0)->memb); #define msleep(i) usleep((i)*1000) #define die(s) do {perror(s); exit(1);} while(0) #define fail(s) do {perror(s); return -1;} while(0) #define offsetof(type, memb) (ssize_t)&(((type *)0)->memb) .........【阅读全文】
发布时间:2014-10-29 10:24:44
slab/kmalloc/vmalloc都是内核分配虚拟地址空间的方法,不是物理地址的方法 get_free_page/allocate_page这些都是内核分配物理空间的,但是最终又要重新映射为虚拟地址空间vremap 用户态的虚拟地址空间的分配是new/malloc,最终都是要到.........【阅读全文】