From 663466079d5c24cbf0b98350d7c27c31ae161bbd Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Thu, 17 Dec 2015 08:52:15 -0500 Subject: [PATCH] common/lockdep: increase max lock names Recently hit this limit with /a/sage-2015-12-16_21:46:23-rados-wip-sage-testing---basic-openstack/40275 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 c39dbf0e336..353830a08ba 100644 --- a/src/common/lockdep.cc +++ b/src/common/lockdep.cc @@ -34,7 +34,7 @@ namespace std { /******* Constants **********/ #define lockdep_dout(v) lsubdout(g_lockdep_ceph_ctx, lockdep, v) -#define MAX_LOCKS 2000 // increase me as needed +#define MAX_LOCKS 4096 // increase me as needed #define BACKTRACE_SKIP 2 /******* Globals **********/ -- 2.47.3