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=-3.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no 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 F3AA9C2D0B1 for ; Tue, 4 Feb 2020 14:48:29 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id B07932082E for ; Tue, 4 Feb 2020 14:48:29 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="PWYl3lVz" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B07932082E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.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 DA1FA1C1CC; Tue, 4 Feb 2020 15:48:28 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 06B861C1C7 for ; Tue, 4 Feb 2020 15:48:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1580827707; 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=lkInMv38pQLyIlysnvJl6IxrDUhdmuc0ki+7z3PR9WY=; b=PWYl3lVz2PxDEIOmUE/EqrPUI3Eo6jJ5Sq3YHHa1WtxyMk1/Wx8kwydVMzo0No8xrskP0c mcqFAjqiGa7XO8De+juVAgnouulrPaFroRqxz7vkRIRET5z/kYNyBAbs7bBpsbehV571kq zdhnTiENcGb3hCAx/ytV/CzQ4VOqZCg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-74-fIStBlsPPFO8a9Wfcd-Viw-1; Tue, 04 Feb 2020 09:48:25 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 88D73801FB4; Tue, 4 Feb 2020 14:48:24 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (unknown [10.18.25.126]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 26FDB86CCC; Tue, 4 Feb 2020 14:48:24 +0000 (UTC) From: Aaron Conole To: Stephen Hemminger Cc: dev@dpdk.org References: <20200104013341.19809-1-stephen@networkplumber.org> <20200104013341.19809-5-stephen@networkplumber.org> Date: Tue, 04 Feb 2020 09:48:23 -0500 In-Reply-To: <20200104013341.19809-5-stephen@networkplumber.org> (Stephen Hemminger's message of "Fri, 3 Jan 2020 17:33:31 -0800") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-MC-Unique: fIStBlsPPFO8a9Wfcd-Viw-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH 04/14] eal: cleanup threads 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" Stephen Hemminger writes: > When rte_eal_cleanup is called it should stop all the child threads > and close the pipes between threads. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Aaron Conole