From patchwork Sun Jul 22 12:44:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 10539289 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 9267C174A for ; Sun, 22 Jul 2018 12:44:31 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 74800280CF for ; Sun, 22 Jul 2018 12:44:31 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 64E3028385; Sun, 22 Jul 2018 12:44:31 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 0DC9B280CF for ; Sun, 22 Jul 2018 12:44:31 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728511AbeGVNlD (ORCPT ); Sun, 22 Jul 2018 09:41:03 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:47024 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727856AbeGVNlD (ORCPT ); Sun, 22 Jul 2018 09:41:03 -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=ELegvTLWoD0QcbU598g/Km7TZJvkCC9VTYqBQ3rhuNc=; b=mpEhZWfvWMYoqUVA8cAHNi1gxI LkZLxiAGlUWrEgkUiW/xbZWV6YK2uBixeFu19s6Nwl+UpbXU3yNG7AWTikPbKBncvj+m2gS2FiUR8 DxvuxNDVcpu+ggZnRWfQN/DbCW+L8MQCwsEbOw1R2WaHTegDH89r33laWRrHi2TJxZborcr8U+Vvo 2UoVaqTd4sVKiloDjLzFHYAavCjOmq3/B3ozk5NweWWj9LFiDHz13SheKucBuO3D6TweaDOgi3Huv PwyjTxjw1ki4eX6vAn/iZNPUnqDElfD6bG4FLXTmXa0U2qARwEzoVr5Qseugvvx4v7jzy1Fr6BpCt JDp6dGfA==; Received: from 213-225-2-246.nat.highway.a1.net ([213.225.2.246] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1fhDik-0005HR-IV; Sun, 22 Jul 2018 12:44:19 +0000 Date: Sun, 22 Jul 2018 14:44:13 +0200 From: Christoph Hellwig To: Linus Torvalds Cc: Jens Axboe , Keith Busch , Sagi Grimberg , linux-nvme@lists.infradead.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] NVMe fixes for 4.18-rc6 Message-ID: <20180722124413.GA16254@infradead.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.0 (2018-05-17) 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 Hi Linus, please pull these NVMe fixes directly instead of through Jens so that he can enjoy more of his vacation! The following changes since commit 70dbcc2254fa2a9add74a122b9dac954c4736e01: bsg: fix bogus EINVAL on non-data commands (2018-07-11 08:48:28 -0600) are available in the Git repository at: git://git.infradead.org/nvme.git tags/nvme-for-4.18 for you to fetch changes up to 9b382768135ee3ff282f828c906574a8478e036b: nvme: fix handling of metadata_len for NVME_IOCTL_IO_CMD (2018-07-20 07:43:59 -0700) ---------------------------------------------------------------- NVMe fixes for 4.18-rc6: - fix a regression in 4.18 that causes a memory leak on probe failure (Keith Bush) - fix a deadlock in the passthrough ioctl code (Scott Bauer) - don't enable AENs if not supported (Weiping Zhang) - fix an old regression in metadata handling in the passthrough ioctl code (Roland Dreier) ---------------------------------------------------------------- Keith Busch (1): nvme-pci: fix memory leak on probe failure Roland Dreier (1): nvme: fix handling of metadata_len for NVME_IOCTL_IO_CMD Scott Bauer (1): nvme: ensure forward progress during Admin passthru Weiping Zhang (1): nvme: don't enable AEN if not supported drivers/nvme/host/core.c | 63 ++++++++++++++++++++++++++---------------------- drivers/nvme/host/pci.c | 12 +++++---- 2 files changed, 41 insertions(+), 34 deletions(-)