From patchwork Wed Feb 6 11:02:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danny Al-Gaaf X-Patchwork-Id: 2103421 Return-Path: X-Original-To: patchwork-ceph-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id AAB3FE00DD for ; Wed, 6 Feb 2013 11:03:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757512Ab3BFLDJ (ORCPT ); Wed, 6 Feb 2013 06:03:09 -0500 Received: from wp188.webpack.hosteurope.de ([80.237.132.195]:32955 "EHLO wp188.webpack.hosteurope.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757303Ab3BFLC4 (ORCPT ); Wed, 6 Feb 2013 06:02:56 -0500 Received: from charybdis-ext.suse.de ([195.135.221.2] helo=darkangel.suse.de); authenticated by wp188.webpack.hosteurope.de running ExIM with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) id 1U32mE-00012A-6K; Wed, 06 Feb 2013 12:02:54 +0100 From: Danny Al-Gaaf To: ceph-devel@vger.kernel.org Cc: Danny Al-Gaaf , Sage Weil , Gary Lowell Subject: [PATCH 7/8] messages/MOSDRepScrub.h: initialize member variable in constructor Date: Wed, 6 Feb 2013 12:02:50 +0100 Message-Id: <1360148571-6984-8-git-send-email-danny.al-gaaf@bisect.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1360148571-6984-1-git-send-email-danny.al-gaaf@bisect.de> References: <1360148571-6984-1-git-send-email-danny.al-gaaf@bisect.de> X-bounce-key: webpack.hosteurope.de; danny.al-gaaf@bisect.de; 1360148576; 57b3e379; Sender: ceph-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org Initialize chunky and deep bool member variables in the constructor with false. Signed-off-by: Danny Al-Gaaf --- src/messages/MOSDRepScrub.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/messages/MOSDRepScrub.h b/src/messages/MOSDRepScrub.h index 2d3a66d..86edbe2 100644 --- a/src/messages/MOSDRepScrub.h +++ b/src/messages/MOSDRepScrub.h @@ -36,7 +36,10 @@ struct MOSDRepScrub : public Message { hobject_t end; // upper bound of scrub, exclusive bool deep; // true if scrub should be deep - MOSDRepScrub() : Message(MSG_OSD_REP_SCRUB, HEAD_VERSION, COMPAT_VERSION) { } + MOSDRepScrub() : Message(MSG_OSD_REP_SCRUB, HEAD_VERSION, COMPAT_VERSION), + chunky(false), + deep(false) { } + MOSDRepScrub(pg_t pgid, eversion_t scrub_from, eversion_t scrub_to, epoch_t map_epoch) : Message(MSG_OSD_REP_SCRUB, HEAD_VERSION, COMPAT_VERSION),