Reviewed-by: Alex Shi <alexs@xxxxxxxxxx> On 10/19/24 16:54, Dongliang Mu wrote: > Update to commit 88e3009b5283 ("lazy tlb: allow lazy tlb > mm refcounting to be configurable") > > scripts/checktransupdate.py reports: > > Documentation/translations/zh_CN/mm/active_mm.rst > commit 88e3009b5283 ("lazy tlb: allow lazy tlb mm refcounting > to be configurable") > commit ee86588960e2 ("docs/mm: remove useless markup") > 2 commits needs resolving in total > > Signed-off-by: Dongliang Mu <dzm91@xxxxxxxxxxx> > --- > Documentation/translations/zh_CN/mm/active_mm.rst | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/Documentation/translations/zh_CN/mm/active_mm.rst b/Documentation/translations/zh_CN/mm/active_mm.rst > index c2816f523bd7..b3352668c4c8 100644 > --- a/Documentation/translations/zh_CN/mm/active_mm.rst > +++ b/Documentation/translations/zh_CN/mm/active_mm.rst > @@ -13,6 +13,11 @@ > Active MM > ========= > > +注意,在配置了 CONFIG_MMU_LAZY_TLB_REFCOUNT=n 的内核中,mm_count 引用计数 > +可能不再包括“懒惰”用户(运行任务中 ->active_mm == mm && ->mm == NULL)。 > +获取和释放这些懒惰引用必须使用 mmgrab_lazy_tlb() 和 mmdrop_lazy_tlb() 这 > +两个辅助函数,它们抽象了这个配置选项。 > + > 这是一封linux之父回复开发者的一封邮件,所以翻译时我尽量保持邮件格式的完整。 > > ::