~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/translations/zh_CN/core-api/gfp_mask-from-fs-io.rst

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 .. include:: ../disclaimer-zh_CN.rst
  2 
  3 :Original: Documentation/core-api/gfp_mask-from-fs-io.rst
  4 
  5 :翻译:
  6 
  7  司延腾 Yanteng Si <siyanteng@loongson.cn>
  8 
  9 :校译:
 10 
 11  时奎亮 <alexs@kernel.org>
 12 
 13 .. _cn_core-api_gfp_mask-from-fs-io:
 14 
 15 ============================
 16 从FS/IO上下文中使用的GFP掩码
 17 ============================
 18 
 19 :日期: 2018年5月
 20 :作者: Michal Hocko <mhocko@kernel.org>
 21 
 22 简介
 23 ====
 24 
 25 文件系统和IO栈中的代码路径在分配内存时必须小心,以防止因直接调用FS或IO路径的内
 26 存回收和阻塞已经持有的资源(例如锁--最常见的是用于事务上下文的锁)而造成递归死
 27 锁。
 28 
 29 避免这种死锁问题的传统方法是在调用分配器时,在gfp掩码中清除__GFP_FS和__GFP_IO
 30 (注意后者意味着也要清除第一个)。GFP_NOFS和GFP_NOIO可以作为快捷方式使用。但事
 31 实证明,上述方法导致了滥用,当限制性的gfp掩码被用于“万一”时,没有更深入的考虑,
 32 这导致了问题,因为过度使用GFP_NOFS/GFP_NOIO会导致内存过度回收或其他内存回收的问
 33 题。
 34 
 35 新API
 36 =====
 37 
 38 从4.12开始,我们为NOFS和NOIO上下文提供了一个通用的作用域API,分别是
 39 ``memalloc_nofs_save`` , ``memalloc_nofs_restore`` 和 ``memalloc_noio_save`` ,
 40 ``memalloc_noio_restore`` ,允许从文件系统或I/O的角度将一个作用域标记为一个
 41 关键部分。从该作用域的任何分配都将从给定的掩码中删除__GFP_FS和__GFP_IO,所以
 42 没有内存分配可以追溯到FS/IO中。
 43 
 44 
 45 该API在以下内核代码中:
 46 
 47 include/linux/sched/mm.h
 48 
 49 然后,FS/IO代码在任何与回收有关的关键部分开始之前简单地调用适当的保存函数
 50 ——例如,与回收上下文共享的锁或当事务上下文嵌套可能通过回收进行时。恢复函数
 51 应该在关键部分结束时被调用。所有这一切最好都伴随着解释什么是回收上下文,以
 52 方便维护。
 53 
 54 请注意,保存/恢复函数的正确配对允许嵌套,所以从现有的NOIO或NOFS范围分别调
 55 用 ``memalloc_noio_save`` 或 ``memalloc_noio_restore`` 是安全的。
 56 
 57 那么__vmalloc(GFP_NOFS)呢?
 58 ===========================
 59 
 60 vmalloc不支持GFP_NOFS语义,因为在分配器的深处有硬编码的GFP_KERNEL分配,要修
 61 复这些分配是相当不容易的。这意味着用GFP_NOFS/GFP_NOIO调用 ``vmalloc`` 几乎
 62 总是一个错误。好消息是,NOFS/NOIO语义可以通过范围API实现。
 63 
 64 在理想的世界中,上层应该已经标记了危险的上下文,因此不需要特别的照顾, ``vmalloc``
 65 的调用应该没有任何问题。有时,如果上下文不是很清楚,或者有叠加的违规行为,那么
 66 推荐的方法是用范围API包装vmalloc,并加上注释来解释问题。

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php