You can't add address ranges to, or delete address ranges from a virtual network's address space once a virtual network is peered with another virtual ...
分类:
Web程序 时间:
2021-05-24 14:08:08
阅读次数:
0
出现问题 配置了两个不同的docker-compose.yml,使用了相同的网段,导致了在运行第二个yml文件时命令行报错目标网段已存在,报错如下: Creating network "v2_dev" with driver "bridge" ERROR: Pool overlaps with ot ...
分类:
其他好文 时间:
2020-06-18 19:58:35
阅读次数:
131
读文件流程进程调用库函数向内核发起读文件请求;内核通过检查进程的文件描述符定位到虚拟文件系统的已打开文件列表表项;调用该文件可用的系统调用函数read();read()函数通过文件表项链接到目录项模块,根据传入的文件路径,在目录项模块中检索,找到该文件的inode;在inode中,通过文件内容偏移量计算出要读取的页;通过inode找到文件对应的address_space;在address_spac
分类:
系统相关 时间:
2020-06-10 09:33:00
阅读次数:
134
Description Shared Virtual Memory (SVM) (Glossary): An address space exposed to both the host and the devices within a context. SVM causes addresses t ...
分类:
其他好文 时间:
2019-12-22 14:56:02
阅读次数:
90
How is the I/O Address Space mapped to devices? https://stackoverflow.com/questions/9222251/how-is-the-i-o-address-space- mapped-to-devicesSystem Addr ...
分类:
其他好文 时间:
2019-09-10 20:47:50
阅读次数:
108
V0-Vmax => max size of the process address space heap and data may not be contiguous stack: last in first out any access of the process to x will acce ...
分类:
其他好文 时间:
2019-05-20 09:15:13
阅读次数:
111
这篇文章会随着学习的进行,不断的更新!!! 总结 操作系统引入的抽象概念 进程(process) 地址空间(address space) 虚拟内存(virtual memory) 操作系统引入的cahe和buffer TLB(Translation Lookaside Buffers) 虚拟内存 C ...
分类:
系统相关 时间:
2019-04-30 01:21:03
阅读次数:
201
Linux Kernel文件系统写I/O流程代码分析(一) 在 "Linux VFS机制简析(二)" 这篇博客上介绍了struct address_space_operations里底层文件系统需要实现的操作,实际编码过程中发现不是那么清楚的知道这里面的函数具体是干啥,在什么时候调用。尤其是写IO相 ...
分类:
系统相关 时间:
2019-02-26 11:48:49
阅读次数:
300
这篇文章主要记录一下c程序运行时内存空间如何使用。(摘抄自网络) 在一个多任务操作系统中的每个进程都运行在它自己的内存“沙箱”中。这个沙箱是一个虚拟地址空间(virtual address space),在 32 位系统中它总共有 4GB 的内存地址空间,包含内核空间和用户空间: 这些虚拟地址是通过 ...
分类:
其他好文 时间:
2018-12-26 15:45:56
阅读次数:
161
Threads share the address space of the process that created it; processes have their own address space.1.线程共享创建它的进程的地址空间,进程,子进程有独立的地址空间 Threads have d... ...
分类:
编程语言 时间:
2018-11-20 23:08:46
阅读次数:
146