From 048fdc766144588d500968a8bfd139a7e7e95e3c Mon Sep 17 00:00:00 2001 From: Oleg Drokin Date: Wed, 14 May 2025 14:24:50 -0400 Subject: [PATCH] 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 --- lustre/osd-ldiskfs/osd_lproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.8.3.1