1 编写代码pslist.c

   1: #include<linux/init.h>

   2: #include<linux/module.h>

   3: #include<linux/list.h>

   4: #include<linux/sched.h>

   5: #include<linux/proc_fs.h>

   6: #include<linux/mm_types.h>

   7: #include<linux/fs.h>

   8: #include<linux/path.h>

   9: #include<linux/dcache.h>

  10: #include<linux/mm.h>

  11: #include<linux/mmzone.h>

  12: #include<linux/vmalloc.h>

  13:  

  14: MODULE_LICENSE("GPL");

  15:  

  16: int analyzeUMANode()

  17: {

  18:     int i,j;

  19:     unsigned long node_present_pages;

  20:     unsigned long node_spanned_pages;

  21:     struct pglist_data* node_0;

  22:     

  23:     struct zone* pzone;

  24:     unsigned long start_pfn;

  25:     unsigned long present_pages;

  26:     unsigned long spanned_pages;

  27:     struct free_area* pfreearea;

  28:     

  29:     printk("###################################################################\n");

  30:  

  31:     node_0 = NODE_DATA(0);

  32:     printk("node_0 at 0x%08x\n", node_0);

  33:     if (node_0 == NULL)

  34:         return 0;

  35:         

  36:     node_present_pages = node_0->node_present_pages;

  37:     node_spanned_pages = node_0->node_spanned_pages;

  38:     printk("present pages: %d\n", node_present_pages);

  39:     printk("spanned pages: %d\n", node_spanned_pages);

  40:     

  41:     for (i = 0; i < MAX_NR_ZONES; ++i)

  42:     {

  43:         pzone = &node_0->node_zones[i];

  44:         if (pzone == NULL)

  45:             continue;

  46:         printk("Zone %d Name: %s\n", i, pzone->name);

  47:         start_pfn = pzone->zone_start_pfn;

  48:         printk("start_pfn : %d\n", start_pfn);

  49:         present_pages = pzone->present_pages;

  50:         printk("present_pages : %d\n", present_pages);

  51:         spanned_pages = pzone->spanned_pages;

  52:         printk("spanned_pages : %d\n", spanned_pages);

  53:         printk("%8d MB - %8d MB\n", start_pfn * PAGE_SIZE / 1024 / 1024, (start_pfn + spanned_pages) * PAGE_SIZE / 1024 / 1024);

  54:         pfreearea = &pzone->free_area;

  55:         if (pfreearea == NULL)

  56:             continue;

  57:         for (j = 0; j < MAX_ORDER; ++j)

  58:         {

  59:             printk("%5d", (pfreearea + j)->nr_free);    

  60:         }

  61:         printk("\n");

  62:     }    

  63:     return 0;

  64: }

  65:  

  66: static int pslist_init()

  67: {

  68:     analyzeUMANode();

  69:         

  70: }

  71:  

  72: static void pslist_exit()

  73: {

  74:     printk("###################################################################\n");

  75: }

  76:  

  77: module_init(pslist_init);

  78: module_exit(pslist_exit);

2 编写Makefile

   1: obj-m += pslist.o

   2: #generate the path

   3: CURRENT_PATH:=$(shell pwd)

   4: #the current kernel version number

   5: LINUX_KERNEL:=$(shell uname -r)

   6: #the absolute path

   7: LINUX_KERNEL_PATH:=/usr/src/linux-headers-$(LINUX_KERNEL)

   8: #complie object

   9: all:

  10:     make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) modules

  11: #clean

  12: clean:

  13:     make -C $(LINUX_KERNEL_PATH) M=$(CURRENT_PATH) clean

3 编译

   1: sudo make clean

   2: sudo make

4 加载模块,卸载模块

   1: sudo insmod pslist.ko

   2: sudo rmmod pslist

5 收集打印出来的信息

   1: dmesg | tail -100

示例如下:

   1: [ 4011.124611] ###################################################################

   2: [ 4011.124614] node_0 at 0xc17b11c0

   3: [ 4011.124615] present pages: 262015

   4: [ 4011.124616] spanned pages: 262112

   5: [ 4011.124617] Zone 0 Name: DMA

   6: [ 4011.124618] start_pfn : 16

   7: [ 4011.124619] present_pages : 3951

   8: [ 4011.124619] spanned_pages : 4080

   9: [ 4011.124620]        0 MB -       16 MB

  10: [ 4011.124621]     2    2    1    2    3    2    2    1    2    2    2

  11: [ 4011.124624] Zone 1 Name: Normal

  12: [ 4011.124625] start_pfn : 4096

  13: [ 4011.124626] present_pages : 221486

  14: [ 4011.124626] spanned_pages : 223230

  15: [ 4011.124627]       16 MB -      887 MB

  16: [ 4011.124628]   161   65  150  197   48   54   34   12    7    2   55

  17: [ 4011.124631] Zone 2 Name: HighMem

  18: [ 4011.124632] start_pfn : 227326

  19: [ 4011.124632] present_pages : 34530

  20: [ 4011.124633] spanned_pages : 34802

  21: [ 4011.124634]      887 MB -     1023 MB

  22: [ 4011.124635]    76   98   31    6    1    0    0    0    0    0    0

  23: [ 4011.124637] Zone 3 Name: Movable

  24: [ 4011.124638] start_pfn : 0

  25: [ 4011.124638] present_pages : 0

  26: [ 4011.124639] spanned_pages : 0

  27: [ 4011.124640]        0 MB -        0 MB

  28: [ 4011.124641]     0    0    0    0    0    0    0    0    0    0    0

  29: [ 4095.143430] ###################################################################

6 与proc文件系统打印出来的信息做对比

   1: $ cat /proc/buddyinfo

   2: Node 0, zone      DMA      2      2      1      2      3      2      2      1      2      2      2 

   3: Node 0, zone   Normal    371    196    176    229     81     57     39     12      3      3     53 

   4: Node 0, zone  HighMem     76     98     31      6      1      0      0      0      0      0      0 

自己写Linux module来收集buddy info的更多相关文章

  1. <linux/init.h>,<linux/module.h>头文件不存在等问题的解决方法

    这个问题真心是处理了一个下午,还自己去下载了个最新的内核拿来编译,其实是完全没必要的,因为ubuntu系统是可以直接下载新内核的. 你可以在/usr/src/文件夹下找到这些内核文件夹,比如说我自己的 ...

  2. 手把手教你写Linux设备驱动---中断(三)--workqueue实现(基于友善之臂4412开发板) 【转】

    转自:http://blog.csdn.net/morixinguan/article/details/69680909 上节,我们讲到如何来实现tasklet小任务机制 http://blog.cs ...

  3. 超简单易用的 “在 pcduino 开发板上写 Linux 驱动控制板载 LED 的闪烁”

    版权声明:本文为博主原创文章,未经博主同意不得转载.转载联系 QQ 30952589,加好友请注明来意. https://blog.csdn.net/sleks/article/details/251 ...

  4. Linux Module

    catalog . 概述 . 使用模块 . 插入和删除模块 . 自动化与热插拔 . 版本控制 1. 概述 模块(module)是一种向Linux内核添加设备驱动程序.文件系统及其他组件的有效方法,而无 ...

  5. linux/module.h: No such file or directory 内核模块编译过程

    1.缺少Linux kernel头文件 To install just the headers in Ubuntu: sudo apt-get install linux-headers-$(unam ...

  6. linux Module驱动开发-一切刚刚开始

    linux内核是可以高度定制的,通过配置编译选项达到定制的目的. 在配置kernel编译选项时驱动程序的编译选项一般有三种,不编译.编译为内核驱动.编译为模块驱动.所以linux驱动一般分为两类,内核 ...

  7. My First Linux Module

    My First Linux Module Today, I successfully build my first linux hello module. First of all add a di ...

  8. Linux Module框架【转】

    转自:http://www.cnblogs.com/LittleHann/p/4558719.html catalog 1. 概述 2. 使用模块 3. 插入和删除模块 4. 自动化与热插拔 5. 版 ...

  9. 教你写Linux设备驱动程序:一个简短的教程

    教你写Linux设备驱动程序:一个简短的教程 http://blog.chinaunix.net/uid-20799298-id-99675.html

随机推荐

  1. display和visibility

    display: none; visibility: hidden; 相同点:两者都是隐藏元素不同点:display不保留位置,visibility保留位置

  2. Nacos Config客户端与Spring Boot、Spring Cloud深度集成

    目录 Nacos与Spring Boot集成 @NacosPropertySource和@NacosValue com.alibaba.nacos.spring.core.env.NacosPrope ...

  3. java中多态的要点

    多态有三要素 继承.方法重写.父类引用指向子类对象 多态可以理解成两个部分:一个是编译时,一个是运行时 编译时:定义规则:运行时:具体实现这个规则. 编译时:把父类强制转换成子类不会报错:运行时:先去 ...

  4. Vue学习之路之登录注册实例代码

    Vue学习之路之登录注册实例代码:https://www.jb51.net/article/118003.htm vue项目中路由验证和相应拦截的使用:https://blog.csdn.net/wa ...

  5. Python判断一个字符串中是否存在多个子串中的一个

    在使用python的开发过程中,常常需要判断,字符串中是否存在子串的问题, 但判断一个字符串中是否存在多个字串中的一个时,如if (a or b) in c或者if x contains a|b|c| ...

  6. Source object main.o has EABI version 0, but target ../../../bin/ad has EABI version 5

    编译的时候,遇到了一些问题:Source object main.o has EABI version 0, but target ../../../bin/ad has EABI version 5 ...

  7. Python之字符串正则匹配

    需求: 正则表达式匹配某个文本模式,但是它找到的是模式的最长可能匹配(因为是贪婪匹配 ). 而你想修改它变成查找最短的可能匹配. import re text2 = 'Computer says &q ...

  8. kali linux 2019.4 最新版设置中文 - 开启win10风格界面

    最新版 kali linux 2019.4 默认是不带中文字体的,执行以下命令,便可以显示: kali源:vi /etc/apt/source.list #中科大 deb http://mirrors ...

  9. 2017-2018 ACM-ICPC, Asia Tsukuba Regional Contest E:Black or White

    这道题可以比较容易看出是线性DP.设dp[i]代表把前i个格子刷成目标状态的最小步数. 写出状态转移方程 dp[i]=min( dp[j]+calc(j+1,i) ) (i-j<=k) calc ...

  10. hightchart 报错 Error in mounted hook: "Error: Highcharts error #17: www.highcharts.com/errors/17"

    这个错误是应该导入hightchart 使用的相关的 东西 ,这里是worldcloud import  Wordcloud    from  'highcharts/modules/wordclou ...