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 D66B8A0C3F; Wed, 28 Apr 2021 16:28:11 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9E29D40697; Wed, 28 Apr 2021 16:28:11 +0200 (CEST) Received: from mail-lf1-f43.google.com (mail-lf1-f43.google.com [209.85.167.43]) by mails.dpdk.org (Postfix) with ESMTP id 2D93040147 for ; Wed, 28 Apr 2021 16:28:10 +0200 (CEST) Received: by mail-lf1-f43.google.com with SMTP id x19so69193671lfa.2 for ; Wed, 28 Apr 2021 07:28:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=rFJ8i5LT1rsHwnie/wb3UQN2/5wnaNZjmp5D2sM8Joo=; b=mUUt3Pfa5rIyFkgIRdJxnqoj9tcoB9mJUsZZbthvvnj85a7Eq8CQBfIWfdQl9p9l0+ /nf14TWGiSvYIoemaqDnM9wpSoWroQMGl5GjVlVGTvOb3jNQeXmuJ9jh1H8Ic0LL3XCs H+AR6OpuH3P0fDHWsfpeFLIsOg5GQ9vp8J+DDiCWjdHXBhnTBVGDm/9pHFxgc6viiS+6 bolRQFg/zGU9Fwi1nu6IqaGurxbTkN5SUAMAQYhImTTdqhN9iZ5FGb9eayF1zDvHpEcR fZf/CGBfq7+6tRTHUD+sW8+4abEKftODHJ+lb4ThD9JHLMAhLI3+i+m1TL2b7KBsJJgi R7gw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=rFJ8i5LT1rsHwnie/wb3UQN2/5wnaNZjmp5D2sM8Joo=; b=XKno9tRD4ai/+1B7nZS22wa+hw8GUS1iHXxto3waVDpnihM0voWYByKjxwTU5ffuiV EgL0FPZe3jvNpTGSrO1bi6Cu3pNfEfszOBbusPfopeTS3qxdVz/Qol+86JkhPmrRBgIq M9wtypV8l+R2wqD9g/wucVPf6ZEXjhS4oqwGkbkuJRnAhv+ZTLslYlpP9WbRikJFRjON 4CfEuoPtL/3jO7PYpoV/AUfGnusK+EfMMU77CcF5hjzOieTPaPgOrp29a0JGA8Z0SeVN zdLuYhscPQUJuaDY/cATbJoi6vdIy72VrM+GFkMV1rtTdYRk2JywBNayGh95GIzOtlLg vMLA== X-Gm-Message-State: AOAM530OP1js9MUquGmitkwFlz7F5dsyPSSYvguS7iKOD9H3T8fjkDYY BFyvCwPB9O3lOnxPOZHhqWvvMhcyyb4TNsJm X-Google-Smtp-Source: ABdhPJx5au+p+ISmUtamE8b9frhIufr3kDxKYqOni3tbv6rclgC8mK60xMgVNRDlrXRmN6tKZZErJA== X-Received: by 2002:a19:7b0e:: with SMTP id w14mr21699753lfc.468.1619620089760; Wed, 28 Apr 2021 07:28:09 -0700 (PDT) Received: from localhost.localdomain (89-73-146-138.dynamic.chello.pl. [89.73.146.138]) by smtp.gmail.com with ESMTPSA id e15sm1204409lja.14.2021.04.28.07.28.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 28 Apr 2021 07:28:09 -0700 (PDT) From: Stanislaw Kardach To: dev@dpdk.org, david.hunt@intel.com Cc: upstream@semihalf.com, l.wojciechow@partner.samsung.com, Stanislaw Kardach Date: Wed, 28 Apr 2021 16:25:51 +0200 Message-Id: <20210428142553.1593546-1-kda@semihalf.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210426163310.1043438-1-kda@semihalf.com> References: <20210426163310.1043438-1-kda@semihalf.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 0/2] test/distributor: perf burst mode quit fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" This series addresses two issues: 1. Worker threads hang when finishing the burst-mode distributor perf test. This was observed on a RISC-V platform as well as reproduced on x86. 2. Potential lack of fairness in final wakeup notification distribution in burst mode. Though this issue was not observed, the change is in line with the functional tests. --- RFC -> V2 - Split 2 fixes into separate patches. - Added review/test/ack tags from the RFC discussion. --- Stanislaw Kardach (2): test/distributor: fix worker notification in burst test/distributor: fix burst flush on worker quit app/test/test_distributor_perf.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) -- 2.27.0