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.
谁能帮助我理解页面分配失败的内核错误中的“顺序”和“模式”参数表示什么。
模式是与分配请求一起传递的gfp_flags,并指定内存分配器的请求行为(GFP_KERNEL、GFP_ATOMIC、...)。order 是从分配器请求的页面数的日志,例如,对于 2 个页面请求, order 为 1,当请求 16 个页面时, order 为 4。
如果您想尝试进行映射,另请参阅2 。