From c667f5d7d803de7ae883f9757542e7973ab4c7d2 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 3 Jul 2012 13:04:28 -0700 Subject: [PATCH] lockdep: increase max locks Hit this limit with the rados api tests. Signed-off-by: Sage Weil --- src/common/lockdep.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/lockdep.cc b/src/common/lockdep.cc index e11d64f28794a..1e0c45fa41ffc 100644 --- a/src/common/lockdep.cc +++ b/src/common/lockdep.cc @@ -36,7 +36,7 @@ namespace __gnu_cxx { #undef DOUT_COND #define DOUT_COND(cct, l) cct && l <= XDOUT_CONDVAR(cct, dout_subsys) #define lockdep_dout(v) lsubdout(g_lockdep_ceph_ctx, lockdep, v) -#define MAX_LOCKS 100 // increase me as needed +#define MAX_LOCKS 1000 // increase me as needed #define BACKTRACE_SKIP 3 /******* Globals **********/ -- 2.39.5