引用来自: http://ssms.cs2c.com.cn/otrs/pc.pl?Action=PublicFAQZoom;ItemID=11741

文章主要意思是:

1. page in/out操作指把块设备中的页读入内存或把内存中的页写入块设备

When ever program or data needs to be accessed and is read in from its permanent location on disk, this is called a page in request.
When ever program or data needs to be saved and is written to a permanent location on disk, this is called a page out request.

2. page in/out中的页指disk sector,大小为512字节,而不是虚拟内存中的4k大小的页

The kernel tracks each disk page (512b) read in within the pgpgin (pages paged in) counter

3. pgpgin/pgpgout是指主存(内存)与块设备(硬盘)之间的page in/out的页数.

these counters are related to virtual memory "paging" only in the fact that they are doing disk io to load a memory page with data from disk or write the data from a memory page back to disk

4. pswpin/pswpout是指虚拟内存中,从块设备swap区中读入/读出的页数.因此是被包含在pgpgin/pgpgout中的.

pages swapped in or out are also counted within pages paged in or out respectively since swap io is still ultimately block device based.

最新文章

  1. APUE fig 1.10示例代码的完善--对提示符及输入回车的优化
  2. ecshop登录
  3. 智能车学习(十四)——K60单片机GPIO学习
  4. SuperSlide
  5. 转载RabbitMQ入门(1)--介绍
  6. 4种字符串匹配算法:KMP(下)
  7. Git服务器搭建全过程
  8. asp.net如何实现word文档在线预览
  9. Javascript多线程引擎(二)
  10. 清楚float浮动的四种方法
  11. 【kmp】 字符串最大周期
  12. loadrunner常用计数器分析
  13. ligerUI---下拉框(Combobox)
  14. 一千行 MySQL 详细学习笔记
  15. openstack-虚拟化模型
  16. MATLAB的一些使用的快捷键整理
  17. 微信小程序生命周期——小程序的生命周期及页面的生命周期。
  18. 用LSTM生成武侠人名
  19. linux免密码登录
  20. 修复bug有哪些更快的技术?做好这6点就够了

热门文章

  1. Gerrit的使用
  2. MVC过滤器
  3. link,unlink,remove, rename函数
  4. 第91讲:Akka第一个案例动手实战架构设计
  5. Eclipse进行C/C++开发——Eclipse+CDT+MinGW的配置与使用详解
  6. httpd 虚拟主机建立之访问机制及其日志定义
  7. [转]Python程序员必须知道的30条编程技巧
  8. QQ摄像头读取条码
  9. Orchard SQLite v1.7.2
  10. Topshelf入门