Re: [f2fs-dev] [PATCH] f2fs: export ipu policy in debugfs

2023-02-13 Thread Chao Yu
On 2023/2/10 1:26, Jaegeuk Kim wrote: On 02/09, Yangtao Li wrote: Export ipu_policy as a string in debugfs for better readability and it can help us better understand some strategies of the file system. Since we use ipu_policy as a bitmap, and the bitmap API parameter is unsigned long type data

Re: [f2fs-dev] [PATCH] f2fs: export ipu policy in debugfs

2023-02-09 Thread Jaegeuk Kim
On 02/09, Yangtao Li wrote: > Export ipu_policy as a string in debugfs for better readability and > it can help us better understand some strategies of the file system. > > Since we use ipu_policy as a bitmap, and the bitmap API parameter is > unsigned long type data, let's change ipu_policy to un

[f2fs-dev] [PATCH] f2fs: export ipu policy in debugfs

2023-02-08 Thread Yangtao Li via Linux-f2fs-devel
Export ipu_policy as a string in debugfs for better readability and it can help us better understand some strategies of the file system. Since we use ipu_policy as a bitmap, and the bitmap API parameter is unsigned long type data, let's change ipu_policy to unsigned long type. Signed-off-by: Yang