60 lines
2.1 KiB
Diff
60 lines
2.1 KiB
Diff
From bdb3bdcbc2ebcb2fc50be2c094184103b7ff5d30 Mon Sep 17 00:00:00 2001
|
|
From: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Date: Sat, 28 Sep 2024 23:10:48 -0400
|
|
Subject: [PATCH 008/233] bcachefs: bch_verbose_ratelimited
|
|
Content-Type: text/plain; charset="utf-8"
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
ratelimit "deleting unlinked inode" messages
|
|
|
|
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
|
|
Signed-off-by: Alexander Miroshnichenko <alex@millerson.name>
|
|
---
|
|
fs/bcachefs/bcachefs.h | 8 ++++++++
|
|
fs/bcachefs/inode.c | 3 ++-
|
|
2 files changed, 10 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/fs/bcachefs/bcachefs.h b/fs/bcachefs/bcachefs.h
|
|
index e94a83b8113e..7db81e182c3c 100644
|
|
--- a/fs/bcachefs/bcachefs.h
|
|
+++ b/fs/bcachefs/bcachefs.h
|
|
@@ -293,6 +293,8 @@ do { \
|
|
|
|
#define bch_info(c, fmt, ...) \
|
|
bch2_print(c, KERN_INFO bch2_fmt(c, fmt), ##__VA_ARGS__)
|
|
+#define bch_info_ratelimited(c, fmt, ...) \
|
|
+ bch2_print_ratelimited(c, KERN_INFO bch2_fmt(c, fmt), ##__VA_ARGS__)
|
|
#define bch_notice(c, fmt, ...) \
|
|
bch2_print(c, KERN_NOTICE bch2_fmt(c, fmt), ##__VA_ARGS__)
|
|
#define bch_warn(c, fmt, ...) \
|
|
@@ -352,6 +354,12 @@ do { \
|
|
bch_info(c, fmt, ##__VA_ARGS__); \
|
|
} while (0)
|
|
|
|
+#define bch_verbose_ratelimited(c, fmt, ...) \
|
|
+do { \
|
|
+ if ((c)->opts.verbose) \
|
|
+ bch_info_ratelimited(c, fmt, ##__VA_ARGS__); \
|
|
+} while (0)
|
|
+
|
|
#define pr_verbose_init(opts, fmt, ...) \
|
|
do { \
|
|
if (opt_get(opts, verbose)) \
|
|
diff --git a/fs/bcachefs/inode.c b/fs/bcachefs/inode.c
|
|
index 039cb7a22244..43653cf050e9 100644
|
|
--- a/fs/bcachefs/inode.c
|
|
+++ b/fs/bcachefs/inode.c
|
|
@@ -1380,7 +1380,8 @@ int bch2_delete_dead_inodes(struct bch_fs *c)
|
|
NULL, NULL, BCH_TRANS_COMMIT_no_enospc, ({
|
|
ret = may_delete_deleted_inode(trans, &iter, k.k->p, &need_another_pass);
|
|
if (ret > 0) {
|
|
- bch_verbose(c, "deleting unlinked inode %llu:%u", k.k->p.offset, k.k->p.snapshot);
|
|
+ bch_verbose_ratelimited(c, "deleting unlinked inode %llu:%u",
|
|
+ k.k->p.offset, k.k->p.snapshot);
|
|
|
|
ret = bch2_inode_rm_snapshot(trans, k.k->p.offset, k.k->p.snapshot);
|
|
/*
|
|
--
|
|
2.45.2
|
|
|