[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <72204230a061f7d5bf19f09d524203ce@208suo.com>
Date: Thu, 13 Jul 2023 18:06:15 +0800
From: hanyu001@...suo.com
To: linux@...linux.org.uk, linux-arm-kernel@...ts.infradead.org
Cc: linux-kernel@...r.kernel.org
Subject: Fwd: [PATCH] arm: mm: replace snprintf in show functions with
sysfs_emit
coccicheck complains about the use of snprintf() in sysfs show
functions.
Fix the coccicheck warning:
WARNING: use scnprintf or sprintf.
./arch/arm/mm/cache-l2x0-pmu.c:346:8-16: WARNING: use scnprintf or
sprintf
Signed-off-by: ztt <1549089851@...com>
---
arch/arm/mm/cache-l2x0-pmu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mm/cache-l2x0-pmu.c b/arch/arm/mm/cache-l2x0-pmu.c
index 993fefdc167a..d20626451a2e 100644
--- a/arch/arm/mm/cache-l2x0-pmu.c
+++ b/arch/arm/mm/cache-l2x0-pmu.c
@@ -343,7 +343,7 @@ static ssize_t l2x0_pmu_event_show(struct device
*dev,
struct l2x0_event_attribute *lattr;
lattr = container_of(attr, typeof(*lattr), attr);
- return snprintf(buf, PAGE_SIZE, "config=0x%x\n", lattr->config);
+ return scnprintf(buf, PAGE_SIZE, "config=0x%x\n", lattr->config);
}
static umode_t l2x0_pmu_event_attr_is_visible(struct kobject *kobj,
Powered by blists - more mailing lists