From: Oleg Drokin Date: Wed, 14 May 2025 18:24:50 +0000 (-0400) Subject: LU-19017 osd-ldiskfs: fix lprocfs stats print X-Git-Tag: 2.16.56~59 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=048fdc766144588d500968a8bfd139a7e7e95e3c;p=fs%2Flustre-release.git LU-19017 osd-ldiskfs: fix lprocfs stats print It was mentioning zfs accidentally. Test-Parameters: trivial Fixes: a20476ca2286 ("LU-11850 obd: support the rest of "stats" with Netlink") Signed-off-by: Oleg Drokin Change-Id: I51334ca03dcb69c59a20e62325d2442b5ea5bac8 Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/59235 Reviewed-by: Andreas Dilger Reviewed-by: James Simmons Tested-by: Maloo Tested-by: jenkins --- diff --git a/lustre/osd-ldiskfs/osd_lproc.c b/lustre/osd-ldiskfs/osd_lproc.c index f959100..6419d3d 100644 --- a/lustre/osd-ldiskfs/osd_lproc.c +++ b/lustre/osd-ldiskfs/osd_lproc.c @@ -89,7 +89,7 @@ static int osd_stats_init(struct osd_device *osd) int result = -ENOMEM; ENTRY; - scnprintf(param, sizeof(param), "osd-zfs.%s.stats", osd_name(osd)); + scnprintf(param, sizeof(param), "osd-ldiskfs.%s.stats", osd_name(osd)); osd->od_stats = ldebugfs_stats_alloc(LPROC_OSD_LAST, param, osd->od_dt_dev.dd_debugfs_entry, 0);