Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 linux 内核中做一个项目,我想在内核中找到/编写一个函数,该函数需要 astruct page并将其更改为写保护。
struct page
我找到了这个函数,它需要一个pte页面并将页面更改为 wrprotect:
pte
static inline pte_t pte_wrprotect(pte_t pte)
(在x86/include/asm/pgtable 中)
但我不知道如何pte_t从其获取页面struct page。我搜索了这个结构的文档,但没有找到。
pte_t
谁能解释我如何从中获取pte_t页面struct page?
谢谢