[f2fs-dev] [PATCH v2] docs: f2fs: specify extent cache for read explicitly

2023-04-16 Thread Yangtao Li via Linux-f2fs-devel
Let's descrbie it's read extent cache. Signed-off-by: Yangtao Li --- v2: -s/an/a Documentation/filesystems/f2fs.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/filesystems/f2fs.rst b/Documentation/filesystems/f2fs.rst index c57745375edb..84911b7aff25

Re: [f2fs-dev] [PATCH] docs: f2fs: specify extent cache for read explicitly

2023-04-16 Thread Randy Dunlap
Hi, On 4/16/23 21:03, Yangtao Li wrote: > Let's descrbie it's read extent cache. > > Signed-off-by: Yangtao Li > --- > Documentation/filesystems/f2fs.rst | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Documentation/filesystems/f2fs.rst > b/Documentation/filesyste

[f2fs-dev] [PATCH] docs: f2fs: specify extent cache for read explicitly

2023-04-16 Thread Yangtao Li via Linux-f2fs-devel
Let's descrbie it's read extent cache. Signed-off-by: Yangtao Li --- Documentation/filesystems/f2fs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/filesystems/f2fs.rst b/Documentation/filesystems/f2fs.rst index c57745375edb..f68337086dec 100644 --- a/D

Re: [f2fs-dev] [PATCH] f2fs_io: support checkpoint command

2023-04-16 Thread Yonggil Song
>Fixed a xfstests failure. > >From 400c722c2117660b83190c88e5442d63fbbffe6e Mon Sep 17 00:00:00 2001 >From: Jaegeuk Kim >Date: Mon, 10 Apr 2023 14:48:50 -0700 >Subject: [PATCH] f2fs: refactor f2fs_gc to call checkpoint in urgent condition > >The major change is to call checkpoint, if there's not e

Re: [f2fs-dev] [PATCH] f2fs: remove bulk remove_proc_entry() and unnecessary kobject_del()

2023-04-16 Thread Chao Yu
On 2023/4/13 23:54, Jaegeuk Kim wrote: On 04/13, Chao Yu wrote: On 2023/4/7 3:16, Yangtao Li wrote: Convert to use remove_proc_subtree() and kill kobject_del() directly. kobject_put() actually covers kobject removal automatically, which is single stage removal. Signed-off-by: Yangtao Li ---