This is a note to let you know that I've just added the patch titled ceph: never send metrics if disable_send_metrics is set to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ceph-never-send-metrics-if-disable_send_metrics-is-set.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 50164507f6b7b7ed85d8c3ac0266849fbd908db7 Mon Sep 17 00:00:00 2001 From: Xiubo Li <xiubli@xxxxxxxxxx> Date: Thu, 20 Jul 2023 11:33:55 +0800 Subject: ceph: never send metrics if disable_send_metrics is set From: Xiubo Li <xiubli@xxxxxxxxxx> commit 50164507f6b7b7ed85d8c3ac0266849fbd908db7 upstream. Even the 'disable_send_metrics' is true so when the session is being opened it will always trigger to send the metric for the first time. Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Xiubo Li <xiubli@xxxxxxxxxx> Reviewed-by: Venky Shankar <vshankar@xxxxxxxxxx> Reviewed-by: Jeff Layton <jlayton@xxxxxxxxxx> Signed-off-by: Ilya Dryomov <idryomov@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/ceph/metric.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/ceph/metric.c +++ b/fs/ceph/metric.c @@ -208,7 +208,7 @@ static void metric_delayed_work(struct w struct ceph_mds_client *mdsc = container_of(m, struct ceph_mds_client, metric); - if (mdsc->stopping) + if (mdsc->stopping || disable_send_metrics) return; if (!m->session || !check_session_state(m->session)) { Patches currently in stable-queue which might be from xiubli@xxxxxxxxxx are queue-6.4/ceph-never-send-metrics-if-disable_send_metrics-is-set.patch