* [PATCH] xen: balloon: Replace sprintf() with sysfs_emit()
@ 2026-05-17 13:38 Yash Suthar
2026-05-26 9:42 ` Juergen Gross
0 siblings, 1 reply; 2+ messages in thread
From: Yash Suthar @ 2026-05-17 13:38 UTC (permalink / raw)
To: jgross, sstabellini
Cc: oleksandr_tyshchenko, xen-devel, linux-kernel, Yash Suthar
Replace sprintf() calls with sysfs_emit() to follow current kernel
coding standards.
sysfs_emit() is the preferred method for formatting sysfs output as it
provides better bounds checking and is more secure.
Signed-off-by: Yash Suthar <yashsuthar983@gmail.com>
---
drivers/xen/xen-balloon.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/xen/xen-balloon.c b/drivers/xen/xen-balloon.c
index b293d7652f15..67b0e2dbe84a 100644
--- a/drivers/xen/xen-balloon.c
+++ b/drivers/xen/xen-balloon.c
@@ -138,7 +138,7 @@ EXPORT_SYMBOL_GPL(xen_balloon_init);
struct device_attribute *attr, \
char *buf) \
{ \
- return sprintf(buf, format, ##args); \
+ return sysfs_emit(buf, format, ##args); \
} \
static DEVICE_ATTR_RO(name)
@@ -155,7 +155,7 @@ static DEVICE_BOOL_ATTR(scrub_pages, 0644, xen_scrub_pages);
static ssize_t target_kb_show(struct device *dev, struct device_attribute *attr,
char *buf)
{
- return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages));
+ return sysfs_emit(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages));
}
static ssize_t target_kb_store(struct device *dev,
@@ -180,7 +180,7 @@ static DEVICE_ATTR_RW(target_kb);
static ssize_t target_show(struct device *dev, struct device_attribute *attr,
char *buf)
{
- return sprintf(buf, "%llu\n",
+ return sysfs_emit(buf, "%llu\n",
(unsigned long long)balloon_stats.target_pages
<< PAGE_SHIFT);
}
--
2.43.0
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] xen: balloon: Replace sprintf() with sysfs_emit()
2026-05-17 13:38 [PATCH] xen: balloon: Replace sprintf() with sysfs_emit() Yash Suthar
@ 2026-05-26 9:42 ` Juergen Gross
0 siblings, 0 replies; 2+ messages in thread
From: Juergen Gross @ 2026-05-26 9:42 UTC (permalink / raw)
To: Yash Suthar, sstabellini; +Cc: oleksandr_tyshchenko, xen-devel, linux-kernel
[-- Attachment #1.1.1: Type: text/plain, Size: 384 bytes --]
On 17.05.26 15:38, Yash Suthar wrote:
> Replace sprintf() calls with sysfs_emit() to follow current kernel
> coding standards.
>
> sysfs_emit() is the preferred method for formatting sysfs output as it
> provides better bounds checking and is more secure.
>
> Signed-off-by: Yash Suthar <yashsuthar983@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Juergen
[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 3743 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 495 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-05-26 9:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-17 13:38 [PATCH] xen: balloon: Replace sprintf() with sysfs_emit() Yash Suthar
2026-05-26 9:42 ` Juergen Gross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®