From: Patrick Donnelly Date: Tue, 14 Nov 2023 19:15:14 +0000 (-0500) Subject: include: use larger int for large gathers X-Git-Tag: v20.0.0~2328^2~64 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=58923668320ba373312c68a8869a1089da41d804;p=ceph.git include: use larger int for large gathers Signed-off-by: Patrick Donnelly --- diff --git a/src/include/Context.h b/src/include/Context.h index bef85ca5b52fd..b89c4fe8220a6 100644 --- a/src/include/Context.h +++ b/src/include/Context.h @@ -310,8 +310,8 @@ private: #ifdef DEBUG_GATHER std::set waitfor; #endif - int sub_created_count = 0; - int sub_existing_count = 0; + uint64_t sub_created_count = 0; + uint64_t sub_existing_count = 0; mutable ceph::recursive_mutex lock = ceph::make_recursive_mutex("C_GatherBase::lock"); // disable lockdep bool activated = false;