Results 13 comments of kayoch1n

I have a nfs server installed on ubuntu and want to fix this issue. Does that mean that we should remove nfs from the return values of `get_all_disks_inner`? Running `cargo...

为何使用虚拟内存之后 sys_get_time 会失效?我理解 sys_get_time 最终只是[读取 0xC01 的CSR](https://github.com/rcore-os/rCore-Tutorial-v3/blob/ch4/os/src/timer.rs#L16),并没有读写内存的操作,不太理解?

> 为何使用虚拟内存之后 sys_get_time 会失效?我理解 sys_get_time 最终只是[读取 0xC01 的CSR](https://github.com/rcore-os/rCore-Tutorial-v3/blob/ch4/os/src/timer.rs#L16),并没有读写内存的操作,不太理解? 我之前看漏了,原来 sys_get_time 是有一个指针参数的 😂 还有一个疑问就是[编程题第二题](http://rcore-os.cn/rCore-Tutorial-Book-v3/chapter4/9answer.html#id3) “任务和操作系统内核共用同一张页表的单页表机制”,按照我的理解是不是就只能放到同一个地址空间里了?让不同的任务用不同的区域,这样好像就变回了第四章之前的物理内存布局