From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com [209.85.212.180]) by dpdk.org (Postfix) with ESMTP id 351F5C4E4 for ; Mon, 27 Jul 2015 04:49:22 +0200 (CEST) Received: by wibud3 with SMTP id ud3so122070849wib.1 for ; Sun, 26 Jul 2015 19:49:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=almBvq9u/UzepcQR0pWu14a3O2XKUi/iJIs+oMIWFdQ=; b=GJ4XJoKDBxyMIr+Bw1ym01bqtLozE//eaL7cJBhOcd49dDFnZqpkvzlHa7AlyMOUrf aUg0hQwaZ8wwBIWUB/lfPUWyl4BHIT3c8FtG3mPwvrvWdch7dTBfLvuEfi3QjUme0R/B rr69pExjmhdXh/uIfdlt4K2Ig+/dduiEMybs8sQB657mmyZkFh4dl+8Ap0rEcG6xLMpJ 0C+iAz4wkrx1UvZU1MDr6p2UW5OJSF3YGf4A9jtEw9F1xgAVMkHTmGW5ke+YT7KKyVUZ lcXT7bkRwSa6ZC75oF7KfZqo7ffN9q7qISWzuwF4pLNynIqUNZO0++HmGnnp759YreGz gjEw== X-Gm-Message-State: ALoCoQndIiW6yVa8rAr+eU8cMsFOfuXZwwB8EBLJfbiOwURKJUwWuT01olIKfiYTAQDhS6m1shpD X-Received: by 10.180.182.112 with SMTP id ed16mr19179652wic.19.1437965362035; Sun, 26 Jul 2015 19:49:22 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id di7sm11050445wib.23.2015.07.26.19.49.20 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 26 Jul 2015 19:49:21 -0700 (PDT) From: Thomas Monjalon To: Bernard Iremonger Date: Mon, 27 Jul 2015 04:48:05 +0200 Message-ID: <4617847.gsgatBVqCY@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1437491784-26676-4-git-send-email-bernard.iremonger@intel.com> References: <1437491784-26676-4-git-send-email-bernard.iremonger@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v6 3/3] bonding: free queue memory in stop function X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jul 2015 02:49:22 -0000 2015-07-21 16:16, Bernard Iremonger: > add function bond_ethdev_free_queues() and call from the bond_ethdev_stop() function. Other drivers free their queues when closing. Why is it done in stop() for bonding?