From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id C8A451BA04 for ; Tue, 10 Apr 2018 09:32:17 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Apr 2018 00:32:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,431,1517904000"; d="scan'208";a="42114318" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by orsmga003.jf.intel.com with ESMTP; 10 Apr 2018 00:32:14 -0700 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.164]) by IRSMSX103.ger.corp.intel.com ([169.254.3.61]) with mapi id 14.03.0319.002; Tue, 10 Apr 2018 08:32:13 +0100 From: "Wodkowski, PawelX" To: "Zhang, Roy Fan" , "dev@dpdk.org" CC: "jianjay.zhou@huawei.com" , "maxime.coquelin@redhat.com" , "Tan, Jianfeng" Thread-Topic: [PATCH] lib/librte_vhost: fix bugs Thread-Index: AQHT0BlbpPwlcDM8GU+quNrYgP8woaP5l06A Date: Tue, 10 Apr 2018 07:32:13 +0000 Message-ID: References: <20180409153429.20123-1-roy.fan.zhang@intel.com> In-Reply-To: <20180409153429.20123-1-roy.fan.zhang@intel.com> Accept-Language: pl-PL, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] lib/librte_vhost: fix bugs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Apr 2018 07:32:20 -0000 > # all source are stored in SRCS-y > SRCS-$(CONFIG_RTE_LIBRTE_VHOST) :=3D fd_man.c iotlb.c socket.c vhost.c \ > diff --git a/lib/librte_vhost/vhost_crypto.c b/lib/librte_vhost/vhost_cry= pto.c > index d84513e7f..2acfc908c 100644 > --- a/lib/librte_vhost/vhost_crypto.c > +++ b/lib/librte_vhost/vhost_crypto.c > @@ -381,7 +381,7 @@ vhost_crypto_create_sess(struct vhost_crypto > *vcrypto, > return; > } >=20 > - VC_LOG_DBG("Session (key %lu, session %p) created.", > + VC_LOG_DBG("Session (key %llu, session %p) created.", Why 'llu' instead of PRIu64 (here and there)? Pawel