From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v8 7/7] igb_uio: fix uio release issue for hotplug Date: Tue, 10 Jul 2018 14:52:54 -0700 Message-ID: <20180710145254.661da2cf@xeon-e3> References: <1498711073-42917-1-git-send-email-jia.guo@intel.com> <1531220607-2977-1-git-send-email-jia.guo@intel.com> <1531220607-2977-8-git-send-email-jia.guo@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: bruce.richardson@intel.com, ferruh.yigit@intel.com, konstantin.ananyev@intel.com, gaetan.rivet@6wind.com, jingjing.wu@intel.com, thomas@monjalon.net, motih@mellanox.com, matan@mellanox.com, harry.van.haaren@intel.com, qi.z.zhang@intel.com, shaopeng.he@intel.com, bernard.iremonger@intel.com, arybchenko@solarflare.com, wenzhuo.lu@intel.com, jblunck@infradead.org, shreyansh.jain@nxp.com, dev@dpdk.org, helin.zhang@intel.com To: Jeff Guo Return-path: Received: from mail-pl0-f67.google.com (mail-pl0-f67.google.com [209.85.160.67]) by dpdk.org (Postfix) with ESMTP id C588E1B058 for ; Tue, 10 Jul 2018 23:52:57 +0200 (CEST) Received: by mail-pl0-f67.google.com with SMTP id s24-v6so8195834plq.6 for ; Tue, 10 Jul 2018 14:52:57 -0700 (PDT) In-Reply-To: <1531220607-2977-8-git-send-email-jia.guo@intel.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" On Tue, 10 Jul 2018 19:03:27 +0800 Jeff Guo wrote: > When hotplug out device, the device resource will be released in kernel. > The fd sys file will disappear, and the irq will be released. At this time, > if igb uio driver still try to release this resource, it will cause kernel > crash. On the other hand, interrupt disabling do not automatically be > processed in kernel. If not handle it, this redundancy and dirty thing will > affect the interrupt resource be used by other device. So the igb_uio > driver have to check the hotplug status, and the corresponding process > should be taken in igb uio driver. > > This patch propose to add enum rte_udev_state into struct rte_uio_pci_dev > of igb uio driver, which will record the state of uio device, such as > probed/opened/released/removed. When detect the unexpected removal which > cause of hotplug out behavior, it will corresponding disable interrupt > resource. For the part of releasement which kernel have already handle, > just skip it to avoid double free or null pointer crash issue. > > Signed-off-by: Jeff Guo The PCI hotplug management is an important and potentially error prone error of DPDK. I realize that English is not your native language, but the commit messages for this are hard to read. Perhaps you can get a volunteer or other person in the community to reword them. The commit logs and comments contain important information about the documentation of the code. How does VFIO handle hotplug? We should direct all users to use VFIO since it is supported and secure. Igb uio has always been a slightly dangerous (as they say "running with scissors") way of accessing devices.