From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 0/2] Fix virtio-user multi-process crash. Date: Fri, 14 Apr 2017 14:13:49 +0200 Message-ID: <15073510.99sBIpKQD2@xps13> References: <1488102926-24158-2-git-send-email-amis@radware.com> <1488445242-8824-1-git-send-email-amis@radware.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: yuanhan.liu@linux.intel.com, dev@dpdk.org, stable@dpdk.org To: Ami Sabo Return-path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id D301A5599 for ; Fri, 14 Apr 2017 14:13:51 +0200 (CEST) Received: by mail-wm0-f49.google.com with SMTP id w64so129918586wma.0 for ; Fri, 14 Apr 2017 05:13:51 -0700 (PDT) In-Reply-To: <1488445242-8824-1-git-send-email-amis@radware.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2017-03-02 11:00, Ami Sabo: > The patchset fixes secondary process crash issue when it tries > to access virtio-user pmd (e.g. via rte_eth_rx_burst). > > The crash happens because in virtio_user probing, > eth_dev_attach_secondary is not being called, as it does from > rte_eth_dev_pci_probe. Therefore, the device is not properly > initialized. > > The patchset contains 2 patches: > 1. Export rte_eth_dev_attach_secondary, so non-pci drivers will be > allowed to call it. > 2. Fix the actual bug by calling the function during virtio_user probe. > > Ami Sabo (2): > lib/librte_ether: export secondary attach function > net/virtio-user: fix multi-process issue Applied, thanks