From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Jan Beulich" Subject: Re: [PATCH v4 3/3] net/xen-netback: Don't mix hexa and decimal with 0x in the printf format Date: Wed, 17 Jun 2015 10:13:12 +0100 Message-ID: <558156480200007800085EAB__18279.1173611351$1434532518$gmane$org@mail.emea.novell.com> References: <1434481848-26387-1-git-send-email-julien.grall@citrix.com> <1434481848-26387-4-git-send-email-julien.grall@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta5.messagelabs.com ([195.245.231.135]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1Z59PH-0000Lm-St for xen-devel@lists.xenproject.org; Wed, 17 Jun 2015 09:13:15 +0000 In-Reply-To: <1434481848-26387-4-git-send-email-julien.grall@citrix.com> Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Julien Grall Cc: xen-devel@lists.xenproject.org, netdev@vger.kernel.org, Wei Liu , Ian Campbell , linux-kernel@vger.kernel.org List-Id: xen-devel@lists.xenproject.org >>> On 16.06.15 at 21:10, wrote: > Append 0x to all %x in order to avoid while reading when there is other > decimal value in the log. To save on the space taken by the format strings you should prefer %#x over 0x%x (like we do in the hypervisor). Jan