Linux内核:内存管理——CMA机制 - 知乎 (zhihu.com)
(699条消息) 直接内存(DMA)存储_dma 内存_0725游广川的博客-CSDN博客
https://www.cnblogs.com/pc-boke/articles/8820494.html
ps aux | grep popen
zeekr 698904 0.0 0.0 5888 188 pts/19 S 16:23 0:00 ./popen
VSZ RSS
VIRT:进程占用的虚拟内存 VSZ
RES:进程占用的物理内存 RSS
什么是Linux内存管理中的RSS和VSZ_linux vsz rss-CSDN博客
RSS is the Resident Set Size and is used to show how much memory is allocated to that process and is in RAM. RSS是驻留集大小,用于显示分配给该进程的内存量,并且位于RAM中。 It does not include memory that is swapped out. 它不包括换出的内存。 It does include memory from shared libraries as long as the pages from those libraries are actually in memory. 它确实包括来自共享库的内存,只要这些库中的页面实际上在内存中。 It does include all stack and heap memory. 它确实包括所有堆栈和堆内存。
VSZ is the Virtual Memory Size. VSZ是虚拟内存大小。 It includes all memory that the process can access, including memory that is swapped out, memory that is allocated, but not used, and memory that is from shared libraries. 它包括进程可以访问的所有内存,包括被换出的内存,已分配但未使用的内存以及来自共享库的内存。