Re: [PATCH] f2fs: replace snprintf in show functions with sysfs_emit

From: Chao Yu
Date: Wed Oct 13 2021 - 10:18:22 EST


On 2021/10/13 11:29, Qing Wang wrote:
coccicheck complains about the use of snprintf() in sysfs show functions.

Fix the following coccicheck warning:
fs/f2fs/sysfs.c:198:12-20: WARNING: use scnprintf or sprintf.
fs/f2fs/sysfs.c:247:8-16: WARNING: use scnprintf or sprintf.

Use sysfs_emit instead of scnprintf or sprintf makes more sense.

Signed-off-by: Qing Wang <wangqing@xxxxxxxx>

Reviewed-by: Chao Yu <chao@xxxxxxxxxx>

Thanks,