From patchwork Wed Jan 23 21:42:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagi Grimberg X-Patchwork-Id: 10777925 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 460D91390 for ; Wed, 23 Jan 2019 21:43:00 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 202842D8DF for ; Wed, 23 Jan 2019 21:43:00 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0D6E62D8FF; Wed, 23 Jan 2019 21:42:59 +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 739022D8DF for ; Wed, 23 Jan 2019 21:42:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726366AbfAWVm7 (ORCPT ); Wed, 23 Jan 2019 16:42:59 -0500 Received: from bombadil.infradead.org ([198.137.202.133]:59598 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726352AbfAWVm6 (ORCPT ); Wed, 23 Jan 2019 16:42:58 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type: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=SmGjhd52jQtVNw8BGxHc4YUPDfUMnIqKv5sVofoMg9o=; b=N/WM1fJxIn+xWBvr68bPV/Ax9 hc7TnfgewpN5LcMC9HwnsHD50HbHkWhTHnKOwvj1yCcOvu6BJMxenIe4nDr0ljmX/nQeFlrC95MdZ 2EiPE/oB0TxMaGLbOmJabCgKhlGPeZ/QyPQo6KQXFKMkAnUt4M86aF06gOQSw+YEVgFLaxT51ySOl AFtvWv/T4bnL/NsHKOGJDLP4+ghhP+3ZQeN/lTBwDR/ZLcWkFAWUKMhm5/8BL9pw+/MqCng9aIqfp GqusTcP27BWVhtaIxHd4Ae3waJ2ZiCKG18He0QlrnJ+zHP8HxGu8XVQXKIJa4G3unIQHWiaHbjnfq fSuSolMtQ==; Received: from 162-195-240-247.lightspeed.sntcca.sbcglobal.net ([162.195.240.247] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1gmQIT-0004yr-1s; Wed, 23 Jan 2019 21:42:57 +0000 From: Sagi Grimberg To: Jens Axboe Cc: linux-block@vger.kernel.org, linux-nvme@lists.infradead.org, Christoph Hellwig , Keith Busch Subject: [GIT PULL] nvme fixes for 5.0-rc4 Date: Wed, 23 Jan 2019 13:42:52 -0800 Message-Id: <20190123214252.27491-1-sagi@grimberg.me> X-Mailer: git-send-email 2.17.1 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 Hey Jens, Couple of nvme fixes for the next rc round. - Fix nvme-rdma and nvme-tcp timeout handlers racing with queue disconnections and initial connect failuers - fix nvme-rdma regression in queue maps assignment introduced in read/write queue map separation - fix nvmet-rdma null dereference when we run out of rsps under heavy load - fix multipath ana log underallocation when static group ids are used The following changes since commit eda14f8977df052dce3a9c54a6bf8d8f76c96eb1: nvme-pci: fix nvme_setup_irqs() (2019-01-15 06:50:52 +0100) are available in the Git repository at: git://git.infradead.org/nvme.git nvme-5.0 for you to fetch changes up to 4dd1dbde7b167cf39e43923ce6c8360498149cf6: nvme-multipath: drop optimization for static ANA group IDs (2019-01-21 09:48:57 -0800) ---------------------------------------------------------------- Hannes Reinecke (1): nvme-multipath: drop optimization for static ANA group IDs Raju Rangoju (1): nvmet-rdma: fix null dereference under heavy load Sagi Grimberg (3): nvme-rdma: fix timeout handler nvme-tcp: fix timeout handler nvme-rdma: rework queue maps handling drivers/nvme/host/multipath.c | 3 +- drivers/nvme/host/rdma.c | 64 +++++++++++++++++++++++++++++-------------- drivers/nvme/host/tcp.c | 19 +++++++------ drivers/nvme/target/rdma.c | 15 +++++++++- 4 files changed, 69 insertions(+), 32 deletions(-)