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 4796EA04B5 for ; Sun, 25 Oct 2020 22:28:26 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 15279160; Sun, 25 Oct 2020 22:28:25 +0100 (CET) Received: from mail-io1-f67.google.com (mail-io1-f67.google.com [209.85.166.67]) by dpdk.org (Postfix) with ESMTP id 376FC1D9E for ; Sun, 25 Oct 2020 22:28:23 +0100 (CET) Received: by mail-io1-f67.google.com with SMTP id k6so7897976ior.2 for ; Sun, 25 Oct 2020 14:28:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=emumba-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-transfer-encoding; bh=CGq4wGNrFR7d/eAR9DdEc0JCvgrnF7W1WrT0DinlOyE=; b=K8L/FJD80Mk8s+RiPl/FiEvAQKbIc/ieoKIaViAhWUOvNMYKFUaWEE4GGlygYTsPew M+ilY0LFgL6V9ts1anDys/3+Ni9iBq9y0Gg+TI+E314nCDswPqp8lCtPW8GUJ5eTHF1Q wDIcCbaFAZemld0Jn6kMPA9xnxs60xZiwJmQ29tHC44YcaOJLWBnNWaJgCjzRetLxLeI TpcDCoNrZ+CazSiACyaHjmQjjlFocE8WZSn8Kn9bbgjLiapV/wlGE+0jKf/qIFFtNEdm nXY3WGG3VZeBW9gpOZt3Ojys3ObVcbMlNNL3WWMuiLUW6sS7eN+5SOaC4dk1FoQ6fGY9 outg== 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:content-transfer-encoding; bh=CGq4wGNrFR7d/eAR9DdEc0JCvgrnF7W1WrT0DinlOyE=; b=p6sIREvQEHGPslNvM6ob1kA+KBpelgv80uL3NUc2JJtNKqI/ERZdkkBzkagR+e6AyI xwfaIVcNAIPIzt140KTHL7ihzRTzlGBCzhp2UyfuXCamY0EoFZep4J75T+Rptw6yOKKj BpAso43Q5xKe/bJserD5aDUD1ZSZtzWXGOSXekhCTtF6REc8wIV5RJ1wQ9LM3n232L+s ehqMjtB/q+32QEe7Fzu0/D26nSontHI0IpyMCnXXwCRWcjffhW7hUYRgobyeQx84R25w snv3sgYJm0bHG4Aq4fZJmDwfboNCoPHxza3K3EOk8k4IVHjl9IP4kqpKG5A2RADFqW26 tz8w== X-Gm-Message-State: AOAM531kEIzBTsyZ+UhHGA+NXd50uAMDsdWSibAeWDmgppRbKQChsKnP KSxUYpwiLeqBhJTJp4H4SZkTKdpJTY9rc1jZfADqvA== X-Google-Smtp-Source: ABdhPJx+V59r3HgrTARWsZ3PKA6/IwT+ri15H99MwpKYZPufQudWmt/10Gga2XtIEtBlhzPf9OAAQrbDNFy0AwJk6fY= X-Received: by 2002:a02:234a:: with SMTP id u71mr9041582jau.3.1603661301310; Sun, 25 Oct 2020 14:28:21 -0700 (PDT) MIME-Version: 1.0 References: <20200708120329.103200-1-m.bilal@emumba.com> <20200912195337.734ez2cumf6x7hxp@u256.net> In-Reply-To: From: Muhammad Bilal Date: Mon, 26 Oct 2020 02:28:10 +0500 Message-ID: To: David Marchand Cc: "Yigit, Ferruh" , "Burakov, Anatoly" , Vipin Varghese , Jakub Grajciar , Jerin Jacob Kollanukkaran , dev , dpdk stable , =?UTF-8?Q?Ga=C3=ABtan_Rivet?= Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] EAL: Called remove() of drivers for vdev and pci buses X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "stable" On Tue, Oct 20, 2020 at 6:43 PM David Marchand wrote: > > Hello, Hi > > On Sat, Sep 12, 2020 at 9:53 PM Ga=C3=ABtan Rivet wrote: > > > > On 08/07/20 17:03 +0500, Muhammad Bilal wrote: > > > while using memif with app, the resources are not cleaned on exit, > > > So an error occurred on running it second time. The cause of this pro= blem > > > is that remove() of memif driver is not called by rte_eal_cleanup() w= hich > > > is counterpart of probe() called from rte_eal_init(). This is a case = for > > > all other divers e.g pci, so to solve this problem I have added the > > > functionality of calling remove() function of all the driver attached= to > > > devices on vdev and pci buses. > > > > > > > Hi Muhammad, > > > > review inline. > > There were comments from Gaetan, waiting for a v2. I am working on required changes, and will update it soon. Thanks > Thanks. > > > -- > David Marchand >