From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id BC0121B74E for ; Wed, 7 Feb 2018 15:48:15 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Feb 2018 06:48:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,473,1511856000"; d="scan'208";a="32841397" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga002.jf.intel.com with ESMTP; 07 Feb 2018 06:48:14 -0800 Received: from fmsmsx157.amr.corp.intel.com (10.18.116.73) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 7 Feb 2018 06:48:13 -0800 Received: from fmsmsx117.amr.corp.intel.com ([169.254.3.243]) by FMSMSX157.amr.corp.intel.com ([169.254.14.60]) with mapi id 14.03.0319.002; Wed, 7 Feb 2018 06:48:13 -0800 From: "Wiles, Keith" To: "Rosen, Rami" CC: "dev@dpdk.org" Thread-Topic: [pktgen PATCH] Fix a typo in app/pktgen.c Thread-Index: AQHTn/S1Jsx+0+5n9kqRQ9PTJticraOZi4yA Date: Wed, 7 Feb 2018 14:48:12 +0000 Message-ID: <19DCFA07-68EF-4465-B3B1-502DBB2AB433@intel.com> References: <20180207161512.24010-1-rami.rosen@intel.com> In-Reply-To: <20180207161512.24010-1-rami.rosen@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.254.187.34] Content-Type: text/plain; charset="us-ascii" Content-ID: <5F65E69A6F833C4AAC4CD392AD93DD76@intel.com> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [pktgen PATCH] Fix a typo in app/pktgen.c 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: Wed, 07 Feb 2018 14:48:16 -0000 > On Feb 7, 2018, at 10:15 AM, Rosen, Rami wrote: >=20 > This patch fixes a typo in pktgen_main_rxtx_loop() method=20 > of app/pktgen.c. >=20 > Signed-off-by: Rami Rosen > --- > app/pktgen.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/app/pktgen.c b/app/pktgen.c > index 4904954..412585b 100644 > --- a/app/pktgen.c > +++ b/app/pktgen.c > @@ -1263,7 +1263,7 @@ pktgen_main_rxtx_loop(uint8_t lid) > if (txcnt =3D=3D 0) > rte_panic("No ports found for %d lcore\n", lid); >=20 > - printf("For TX found %d port(s) for lcore %d\n", rxcnt, lid); > + printf("For TX found %d port(s) for lcore %d\n", txcnt, lid); Thanks I will apply it. > for(idx =3D 0; idx < txcnt; idx++) { > if (infos[idx] =3D=3D NULL) > rte_panic("Invalid TX config: port at index %d not found for %d lcore\= n", idx, lid); > --=20 > 2.14.3 >=20 Regards, Keith