From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 36E17C282CE for ; Tue, 4 Jun 2019 09:05:14 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id ED10424A11 for ; Tue, 4 Jun 2019 09:05:13 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org ED10424A11 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8C64D1BB06; Tue, 4 Jun 2019 11:05:12 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id D25DB1BAC7 for ; Tue, 4 Jun 2019 11:05:10 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Jun 2019 02:05:09 -0700 X-ExtLoop1: 1 Received: from irsmsx110.ger.corp.intel.com ([163.33.3.25]) by orsmga008.jf.intel.com with ESMTP; 04 Jun 2019 02:05:09 -0700 Received: from irsmsx111.ger.corp.intel.com (10.108.20.4) by irsmsx110.ger.corp.intel.com (163.33.3.25) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 4 Jun 2019 10:05:08 +0100 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.93]) by irsmsx111.ger.corp.intel.com ([169.254.2.175]) with mapi id 14.03.0415.000; Tue, 4 Jun 2019 10:05:08 +0100 From: "Mcnamara, John" To: "Trybula, ArturX" , "dev@dpdk.org" , "Trahe, Fiona" , "Trybula, ArturX" , "Dybkowski, AdamX" Thread-Topic: [dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on integer endianness (CI:328524) Thread-Index: AQHVGhQFspKF7cgRw0+Qm0Xfjq3JqKaLNMOQ Date: Tue, 4 Jun 2019 09:05:08 +0000 Message-ID: References: <20190603135046.26572-1-arturx.trybula@intel.com> In-Reply-To: <20190603135046.26572-1-arturx.trybula@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiN2UxMmY3ZGQtZmZkZi00MmFkLTg2MjktYmIyZDgxZDRmOTI3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoid1lWT2x4R2VQKytNOGlYSnF1UVNlXC9BQlVvK3RSekk0WHREeEpXb29XRGVBaWhRSkdtNldZd3lTclNWT0RFNFoifQ== dlp-product: dlpe-windows dlp-version: 11.0.600.7 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] app/test-compress-perf: fix reliance on integer endianness (CI:328524) 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Artur Trybula > Sent: Monday, June 3, 2019 2:51 PM > To: dev@dpdk.org; Trahe, Fiona ; Trybula, ArturX > ; Dybkowski, AdamX > Subject: [dpdk-dev] [PATCH] app/test-compress-perf: fix reliance on > integer endianness (CI:328524) >=20 > This patch fixes Coverity Issue 328524: > Reliance on integer endianness (INCOMPATIBLE_CAST) in function > *parse_window_sz*. This patch should have a fixes line. The usual message would include: Fixes: e0b6287c035d ("app/compress-perf: add parser") Coverity issue: 328524 John