I have it xfstested and plan to upload it along with a couple of other patches to my linux-next tree soon... Thanks! -Mike On Tue, Jul 1, 2025 at 2:13 AM Shankari Anand <shankari.ak0208@xxxxxxxxx> wrote: > > Hello, can this patch be picked for review? > > On Tue, Jun 24, 2025 at 8:56 PM Shankari Anand > <shankari.ak0208@xxxxxxxxx> wrote: > > > > Documentation/filesystems/sysfs.rst mentions that show() should only > > use sysfs_emit() or sysfs_emit_at() when formating the value to be > > returned to user space. So replace scnprintf() with sysfs_emit(). > > > > Signed-off-by: Shankari Anand <shankari.ak0208@xxxxxxxxx> > > --- > > v1 -> v2: Fix minor parameter error > > --- > > fs/orangefs/orangefs-sysfs.c | 28 ++++++++++------------------ > > 1 file changed, 10 insertions(+), 18 deletions(-) > > > > diff --git a/fs/orangefs/orangefs-sysfs.c b/fs/orangefs/orangefs-sysfs.c > > index 04e15dfa504a..b89e516f9bdc 100644 > > --- a/fs/orangefs/orangefs-sysfs.c > > +++ b/fs/orangefs/orangefs-sysfs.c > > @@ -217,36 +217,31 @@ static ssize_t sysfs_int_show(struct kobject *kobj, > > > > if (!strcmp(kobj->name, ORANGEFS_KOBJ_ID)) { > > if (!strcmp(attr->attr.name, "op_timeout_secs")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%d\n", > > op_timeout_secs); > > goto out; > > } else if (!strcmp(attr->attr.name, > > "slot_timeout_secs")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%d\n", > > slot_timeout_secs); > > goto out; > > } else if (!strcmp(attr->attr.name, > > "cache_timeout_msecs")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%d\n", > > orangefs_cache_timeout_msecs); > > goto out; > > } else if (!strcmp(attr->attr.name, > > "dcache_timeout_msecs")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%d\n", > > orangefs_dcache_timeout_msecs); > > goto out; > > } else if (!strcmp(attr->attr.name, > > "getattr_timeout_msecs")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%d\n", > > orangefs_getattr_timeout_msecs); > > goto out; > > @@ -256,14 +251,12 @@ static ssize_t sysfs_int_show(struct kobject *kobj, > > > > } else if (!strcmp(kobj->name, STATS_KOBJ_ID)) { > > if (!strcmp(attr->attr.name, "reads")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%lu\n", > > orangefs_stats.reads); > > goto out; > > } else if (!strcmp(attr->attr.name, "writes")) { > > - rc = scnprintf(buf, > > - PAGE_SIZE, > > + rc = sysfs_emit(buf, > > "%lu\n", > > orangefs_stats.writes); > > goto out; > > @@ -497,19 +490,18 @@ static ssize_t sysfs_service_op_show(struct kobject *kobj, > > if (strcmp(kobj->name, PC_KOBJ_ID)) { > > if (new_op->upcall.req.param.op == > > ORANGEFS_PARAM_REQUEST_OP_READAHEAD_COUNT_SIZE) { > > - rc = scnprintf(buf, PAGE_SIZE, "%d %d\n", > > + rc = sysfs_emit(buf, "%d %d\n", > > (int)new_op->downcall.resp.param.u. > > value32[0], > > (int)new_op->downcall.resp.param.u. > > value32[1]); > > } else { > > - rc = scnprintf(buf, PAGE_SIZE, "%d\n", > > + rc = sysfs_emit(buf, "%d\n", > > (int)new_op->downcall.resp.param.u.value64); > > } > > } else { > > - rc = scnprintf( > > + rc = sysfs_emit( > > buf, > > - PAGE_SIZE, > > "%s", > > new_op->downcall.resp.perf_count.buffer); > > } > > > > base-commit: 78f4e737a53e1163ded2687a922fce138aee73f5 > > -- > > 2.34.1 > >