aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-09-05 15:54:01 +0100
committerMike Marshall <hubcap@omnibond.com>2018-10-10 09:54:29 -0400
commit2978d873471005577e7b68a528b4f256a529b030 (patch)
treea10f5b30566a64a66e74262c4151d3396cb93c34 /fs/orangefs
parent052d12766b7147500d9d5017bb90d4524f01e731 (diff)
downloadlinux-2978d873471005577e7b68a528b4f256a529b030.tar.gz
orangefs: rate limit the client not running info message
Currently accessing various /sys/fs/orangefs files will spam the kernel log with the following info message when the client is not running: [ 491.489284] sysfs_service_op_show: Client not running :-5: Rate limit this info message to make it less spammy. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs')
-rw-r--r--fs/orangefs/orangefs-sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/orangefs-sysfs.c b/fs/orangefs/orangefs-sysfs.c
index dd28079f518c0..19739aaee6755 100644
--- a/fs/orangefs/orangefs-sysfs.c
+++ b/fs/orangefs/orangefs-sysfs.c
@@ -323,7 +323,7 @@ static ssize_t sysfs_service_op_show(struct kobject *kobj,
/* Can't do a service_operation if the client is not running... */
rc = is_daemon_in_service();
if (rc) {
- pr_info("%s: Client not running :%d:\n",
+ pr_info_ratelimited("%s: Client not running :%d:\n",
__func__,
is_daemon_in_service());
goto out;