From patchwork Fri Oct 19 15:35:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10649691 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2D798109C for ; Fri, 19 Oct 2018 15:35:49 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1BFAC28178 for ; Fri, 19 Oct 2018 15:35:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0FEAA28390; Fri, 19 Oct 2018 15:35:49 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9FCEE2833E for ; Fri, 19 Oct 2018 15:35:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726848AbeJSXmY (ORCPT ); Fri, 19 Oct 2018 19:42:24 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:59298 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726465AbeJSXmY (ORCPT ); Fri, 19 Oct 2018 19:42:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Type:MIME-Version:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=YiLwviITIm/hFtU6vFe5Tl3qYun4iOQ+SkrpAI9dLhM=; b=GVCEVfAiu+DKCPl4SJLNMhN24h HT+7MYIYlYV/Sq/E3qvgHb96Z/kgVCVrNXBK9OpYB+5nF/CzuhHRjWKO+8wUoZ8JNA0h5rW/rfAGn KhTVSZu99dISAHjxlk1IFI1Q4MXDI69728hdLVwLgzVI3hq1CVe4Raeyb9d0vjuKfALpUjWdufzxz YXkUc3ZWq99hVOYZaVFEp2Yr55ehIXdmtwVLyHwhtHqPi0cQTJBCW+W9UYiDT+UCPgI2e1cDbvjdV Cx/1gcozunFdzTAeHkhYHqaV1IIt5M4QD2onCILqnoQTQHHY5aQs48aRWKgm3rTQG3pxihTgBN9Bu oWccOR2Q==; Received: from 089144192056.atnat0001.highway.a1.net ([89.144.192.56] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1gDWoS-000729-I0; Fri, 19 Oct 2018 15:35:45 +0000 Date: Fri, 19 Oct 2018 17:35:39 +0200 From: Christoph Hellwig To: Jens Axboe Cc: Keith Busch , linux-block@vger.kernel.org, Sagi Grimberg , linux-nvme@lists.infradead.org Subject: [GIT PULL] nvme updates for Linux 4.20 Message-ID: <20181019153539.GA24842@infradead.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The second batch of updates for Linux 4.20: - lot of fixes for issues found by static type checkers from Bart - two small fixes from Keith - fabrics cleanups in preparation of the TCP transport from Sagi - more cleanups from Chaitanya The following changes since commit 0585b75437d335c6580066c1ab9ea3092139df32: sx8: convert to blk-mq (2018-10-16 09:50:55 -0600) are available in the Git repository at: git://git.infradead.org/nvme.git nvme-4.20 for you to fetch changes up to b7c7be6f6bd28ffea7f608ac2d806b8a4bdc82fe: nvme-fabrics: move controller options matching to fabrics (2018-10-19 14:22:24 +0200) ---------------------------------------------------------------- Bart Van Assche (14): nvmet: use strcmp() instead of strncmp() for subsystem lookup nvmet-rdma: check for timeout in nvme_rdma_wait_for_cm() nvme-core: declare local symbols static nvme-core: rework a NQN copying operation nvme-pci: fix nvme_suspend_queue() kernel-doc header nvmet: use strlcpy() instead of strcpy() nvmet-rdma: declare local symbols static nvmet: avoid integer overflow in the discard code nvme-fc: fix kernel-doc headers nvme-fc: introduce struct nvme_fcp_op_w_sgl nvme-fc: rework the request initialization code nvmet-fc: fix kernel-doc headers nvme-core: make implicit seed truncation explicit nvmet-fcloop: suppress a compiler warning Chaitanya Kulkarni (2): nvmet: remove unreachable code nvme-pci: remove duplicate check Keith Busch (2): nvme: update node paths after adding new path nvme-pci: fix hot removal during error handling Sagi Grimberg (2): nvme-rdma: always have a valid trsvcid nvme-fabrics: move controller options matching to fabrics drivers/nvme/host/core.c | 6 +-- drivers/nvme/host/fabrics.c | 30 +++++++++++++++ drivers/nvme/host/fabrics.h | 2 + drivers/nvme/host/fc.c | 45 +++++++++++++--------- drivers/nvme/host/multipath.c | 9 +++++ drivers/nvme/host/pci.c | 9 ++--- drivers/nvme/host/rdma.c | 78 +++++++++++---------------------------- drivers/nvme/target/admin-cmd.c | 2 +- drivers/nvme/target/core.c | 3 +- drivers/nvme/target/discovery.c | 6 +-- drivers/nvme/target/fc.c | 6 +-- drivers/nvme/target/fcloop.c | 1 + drivers/nvme/target/io-cmd-file.c | 3 +- drivers/nvme/target/rdma.c | 2 +- 14 files changed, 107 insertions(+), 95 deletions(-)