From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUYFG-0007aD-Ka for qemu-devel@nongnu.org; Wed, 26 Aug 2015 06:47:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUYFC-00025N-OR for qemu-devel@nongnu.org; Wed, 26 Aug 2015 06:47:54 -0400 Received: from mga14.intel.com ([192.55.52.115]:31045) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUYFC-00025B-KD for qemu-devel@nongnu.org; Wed, 26 Aug 2015 06:47:50 -0400 References: <1439563931-12352-1-git-send-email-guangrong.xiao@linux.intel.com> <1439563931-12352-14-git-send-email-guangrong.xiao@linux.intel.com> <20150825161628.GF8344@stefanha-thinkpad.redhat.com> From: Xiao Guangrong Message-ID: <55DD97F9.5050003@linux.intel.com> Date: Wed, 26 Aug 2015 18:42:01 +0800 MIME-Version: 1.0 In-Reply-To: <20150825161628.GF8344@stefanha-thinkpad.redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 13/18] nvdimm: build namespace config data List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: ehabkost@redhat.com, kvm@vger.kernel.org, mst@redhat.com, gleb@kernel.org, mtosatti@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com, imammedo@redhat.com, pbonzini@redhat.com, rth@twiddle.net On 08/26/2015 12:16 AM, Stefan Hajnoczi wrote: > On Fri, Aug 14, 2015 at 10:52:06PM +0800, Xiao Guangrong wrote: >> +#ifdef NVDIMM_DEBUG >> +#define nvdebug(fmt, ...) fprintf(stderr, "nvdimm: " fmt, ## __VA_ARGS__) >> +#else >> +#define nvdebug(...) >> +#endif > > The following allows the compiler to check format strings and syntax > check the argument expressions: > > #define NVDIMM_DEBUG 0 /* set to 1 for debug output */ > #define nvdebug(fmt, ...) \ > if (NVDIMM_DEBUG) { \ > fprintf(stderr, "nvdimm: " fmt, ## __VA_ARGS__); \ > } > > This approach avoids bitrot (e.g. debug format string arguments have > become outdated). > Really good tips, thanks for your sharing.