From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 96786A0561; Sun, 19 Apr 2020 10:03:58 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2044D1D5B1; Sun, 19 Apr 2020 10:03:58 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id E8D4A1D5B0 for ; Sun, 19 Apr 2020 10:03:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1587283436; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Su0pRhardovmwiCkqjZ4OF2ro74PshvhgWzqW9a3osE=; b=UhRW/PLKXieyYSwBZsWlZhVUXo1yG3qWoIOwuhsZ7MpkZ8rnt3fRa3uvZduuHhtr3qM0WQ ol6Bo9QoMgonXhE1TglNIGJfqBuxAg9hCU/vT5btxG1f1yaMYUMz/FxZRM87qk3I8wXqqq At9Vck2CPaHh6jcuAHhcqILNNJHlaWQ= Received: from mail-ua1-f71.google.com (mail-ua1-f71.google.com [209.85.222.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-374-_sgs7F86Nee80RbZUTfWcA-1; Sun, 19 Apr 2020 04:03:53 -0400 X-MC-Unique: _sgs7F86Nee80RbZUTfWcA-1 Received: by mail-ua1-f71.google.com with SMTP id t26so3132862uar.14 for ; Sun, 19 Apr 2020 01:03:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=7HJ9xMrbpLm2yQbOqBwfbQCiqiU0O/kWn5Jm7YqguXw=; b=GnexLMfmBAh7befamit4dWcTfEh83HNr59dxorfGYkf/qsqwtJtwvf7KbiypBf/6kj PrAgp9orLJL7bo3b8ilCddCmooXvnNqMwu7YgC5UIYDmSFhFCkf4C7Ts4GrHBEMjYTLh 6eWGJeIkPq/rHHRxNGa49KNcc4AihhDW3Rt6+jrh9D2ekNFXRgFgeqlWCdcy5Ecyhewz LWAXBLMqlzzB+bXKpQaQjc27CEVyDZa/KfJEc+lfTVPt8X2fn+K14MChLCwkN80mkoS6 NXnZMvRh7pM6DL6Y20YrhLX8xLfDx/lxvr0G6+EJfV/7nUanDN0YN1aLtraoQRUZar3p qFZw== X-Gm-Message-State: AGi0PuZGqRXcDBMZuPzsYDZ0YWcBgSOany0pwf9Pv5YbVcAc+0EpLln3 0FtcEJTfc4jScoNGY7DQ1N65Y/C/M/Jd/aRvghflxXIfUShw8isUkhkTT/+FJA2vQaP+GR4cpu8 UDS8qqgn5/7VSEYK2zfo= X-Received: by 2002:a9f:2c87:: with SMTP id w7mr4270875uaj.41.1587283432305; Sun, 19 Apr 2020 01:03:52 -0700 (PDT) X-Google-Smtp-Source: APiQypIIaKbf7RpyIGFS2aj9g4AlcJvBMeBBit5Vyyi57AsRe8aP18rs6fypdk50UDnIHxQWv9tA7M6AxwkeJE9KoA8= X-Received: by 2002:a9f:2c87:: with SMTP id w7mr4270867uaj.41.1587283432092; Sun, 19 Apr 2020 01:03:52 -0700 (PDT) MIME-Version: 1.0 References: <20200417133639.14019-1-konstantin.ananyev@intel.com> <20200418163225.17635-1-konstantin.ananyev@intel.com> <20200418163225.17635-2-konstantin.ananyev@intel.com> In-Reply-To: From: David Marchand Date: Sun, 19 Apr 2020 10:03:40 +0200 Message-ID: To: Honnappa Nagarahalli Cc: Konstantin Ananyev , "dev@dpdk.org" , "jielong.zjl@antfin.com" , nd , Jerin Jacob Kollanukkaran , Pavan Nikhilesh X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v5 1/9] test/ring: add contention stress test 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" On Sun, Apr 19, 2020 at 4:31 AM Honnappa Nagarahalli wrote: > > Introduce stress test for ring enqueue/dequeue operations. > > Performs the following pattern on each slave worker: > > dequeue/read-write data from the dequeued objects/enqueue. > > Serves as both functional and performance test of ring enqueue/dequeue > > operations under high contention (for both over committed and non-over > > committed scenarios). > > > > Signed-off-by: Konstantin Ananyev > ci/intel-compilation fails for meson due to clang+32b. I believe it is so= lved by [1] (as you indicated). Can you make this patch dependent on [1]? > Otherwise, > Acked-by: Honnappa Nagarahalli > > [1] http://patches.dpdk.org/patch/68280/ I will take this patch as part of the first series that makes it into master (between ring or traces series). --=20 David Marchand