From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A7137A00C2 for ; Thu, 3 Nov 2022 19:33:03 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9B894410EF; Thu, 3 Nov 2022 19:33:03 +0100 (CET) Received: from mail-pj1-f49.google.com (mail-pj1-f49.google.com [209.85.216.49]) by mails.dpdk.org (Postfix) with ESMTP id B99424014F for ; Thu, 3 Nov 2022 19:33:02 +0100 (CET) Received: by mail-pj1-f49.google.com with SMTP id b1-20020a17090a7ac100b00213fde52d49so2614722pjl.3 for ; Thu, 03 Nov 2022 11:33:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20210112.gappssmtp.com; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:from:to:cc:subject:date :message-id:reply-to; bh=XgcYqnmy8Rb/8MKwoKca/WH76Qb7kDzCvqcI4xdOVOc=; b=LBciBfD6rziJcYFs6SboGnKCLfxq8EUEtdfkWDmNzWCLk5cqv12bVoDIDNYJEh+8UM rWJ5N557ueFoLux0CsIXr7TkYci1tA0JKn6yoD3n96ZeX5TjaTCGabaEkQBG5PnV9NQQ 51n7Hagt4c4jGuVOtmeMXsQnXxx+F12Y9ex8fwPBEt3fVRekVp6xkRsseODW21bOAXAo hP4+rh/bYXmTKmIZ9oSDtlOvkzEHzVHVjr4N1LL8BzPTms969shQbUOi5GVmEcJJFHnc zHo78GPQVtRXrA2+V8agh+/g+8DXcwYY56MiNtHWW6Uh8XlEJIGyD3w1/IOKpu3GUNnU 55lA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:subject:cc:to:from:date:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=XgcYqnmy8Rb/8MKwoKca/WH76Qb7kDzCvqcI4xdOVOc=; b=UxWGo5WoNDP4XzIH2eYKrJZRuhYXBE+R/m961PFKqPwdwiOIFzS9Lv/A0qe5iIg9S4 vIv6GMAPXIG7u6tFU/TpluisVsn3I46Dsarv8raVPrWbXDTlWgpEYUIvyzFqGbQR6/Zq ewRT/k3vNEqEaWfq2/Cemr3Y5q/RCPhglcnupj5k9tO12szxAg+CGFLgDp8TFStYnGoA Rx4OU+lj+rUcz2Q0EMcV9eDtCWnfqr1mBg8OKTYNI76RiUNh3iN7+icIYWzMiO0Liw8N UsLL8448hoFbMTj4xh5CeAOjxkRwVh+p3sYgfkzCtaA4bNrIQPvcpO92qIdv9r8xeru+ O1pQ== X-Gm-Message-State: ACrzQf2XR0DONk6FE+vJDXpYVuaTMHG0x2cJkULm+++CE+MChI4ygiLo FjqToO6EW7rdr84e8/vfAlbJhA== X-Google-Smtp-Source: AMsMyM4nYcv6UHB+F8VpxPmUNS+jEpOLTq3yq8EPRX7J1CQ+NeEoo6JJT8fzKqbTqSBXAzWXTgStSQ== X-Received: by 2002:a17:902:aa02:b0:186:9395:4e82 with SMTP id be2-20020a170902aa0200b0018693954e82mr32103864plb.5.1667500381825; Thu, 03 Nov 2022 11:33:01 -0700 (PDT) Received: from hermes.local (204-195-120-218.wavecable.com. [204.195.120.218]) by smtp.gmail.com with ESMTPSA id d1-20020a170903230100b00186b04776b0sm1007044plh.118.2022.11.03.11.33.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 03 Nov 2022 11:33:01 -0700 (PDT) Date: Thu, 3 Nov 2022 11:33:00 -0700 From: Stephen Hemminger To: Vladimir Medvedkin Cc: dev@dpdk.org, stable@dpdk.org, Yipeng Wang , Sameh Gobriel , Bruce Richardson Subject: Re: [PATCH 2/2] test/hash: fix coverity warning Message-ID: <20221103113300.29d85c26@hermes.local> In-Reply-To: <20221103181339.1135127-1-vladimir.medvedkin@intel.com> References: <20221103181339.1135127-1-vladimir.medvedkin@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On Thu, 3 Nov 2022 18:13:38 +0000 Vladimir Medvedkin wrote: > + if (ret != 0) { > + printf("rte_hash_lookup_with_hash_bulk" > + " failed with %d\n", ret); > + return -1; > + } It makes it harder to search for error messages when they are split. Ignore any checkpatch warnings about this. Also, shouldn't test failures be printed on stderr rather than stdout?