From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34505) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUGto-000811-De for qemu-devel@nongnu.org; Tue, 25 Aug 2015 12:16:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZUGtl-0006jJ-3F for qemu-devel@nongnu.org; Tue, 25 Aug 2015 12:16:36 -0400 Received: from mail-wi0-x22b.google.com ([2a00:1450:400c:c05::22b]:36046) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZUGtk-0006i6-Sn for qemu-devel@nongnu.org; Tue, 25 Aug 2015 12:16:33 -0400 Received: by wicja10 with SMTP id ja10so19966808wic.1 for ; Tue, 25 Aug 2015 09:16:32 -0700 (PDT) Date: Tue, 25 Aug 2015 17:16:28 +0100 From: Stefan Hajnoczi Message-ID: <20150825161628.GF8344@stefanha-thinkpad.redhat.com> References: <1439563931-12352-1-git-send-email-guangrong.xiao@linux.intel.com> <1439563931-12352-14-git-send-email-guangrong.xiao@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1439563931-12352-14-git-send-email-guangrong.xiao@linux.intel.com> 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: Xiao Guangrong 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 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).