Whamcloud - gitweb
LU-17010 lfsck: don't dump stack repeatedly
authorAndreas Dilger <adilger@whamcloud.com>
Wed, 13 Sep 2023 05:12:18 +0000 (23:12 -0600)
committerAndreas Dilger <adilger@whamcloud.com>
Mon, 2 Oct 2023 01:01:14 +0000 (01:01 +0000)
If there are transactions started with LFSCK in dry-run mode, don't
dump the stack repeatedly, as this can spam the console logs and
significantly hurt performance.

Lustre-commit: dc360cd3eff20618f243ab89097a62f8ecf2c929
Lustre-change: https://review.whamcloud.com/52356

Test-Parameters: trivial testlist=sanity-lfsck
Fixes: 0c1ae1cb9c ("LU-13124 scrub: check for multiple linked file")
Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Change-Id: I0b0d64911453dc8ab947e284656311b5d0300c1e
Reviewed-on: https://review.whamcloud.com/c/ex/lustre-release/+/52541
Tested-by: jenkins <devops@whamcloud.com>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Alex Deiter <alex.deiter@gmail.com>
lustre/lfsck/lfsck_internal.h

index 528f692..b7c599f 100644 (file)
@@ -1549,10 +1549,13 @@ lfsck_trans_create(const struct lu_env *env, struct dt_device *dev,
                   struct lfsck_instance *lfsck)
 {
        if (lfsck->li_bookmark_ram.lb_param & LPF_DRYRUN) {
+               static int count;
+
                CERROR("%s: transaction is being created in DRYRUN mode!\n",
                       lfsck_lfsck2name(lfsck));
 
-               dump_stack();
+               if (count++ < 3)
+                       dump_stack();
                return ERR_PTR(-EINVAL);
        }