From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-20.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CADD1C433DB for ; Fri, 12 Mar 2021 09:26:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8D42E64FD6 for ; Fri, 12 Mar 2021 09:26:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232747AbhCLJZp (ORCPT ); Fri, 12 Mar 2021 04:25:45 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49654 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232432AbhCLJZe (ORCPT ); Fri, 12 Mar 2021 04:25:34 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 37578C061574 for ; Fri, 12 Mar 2021 01:25:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Type:MIME-Version:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:In-Reply-To:References; bh=Up3iCiQ9A+ATJo41hgx9LAy2pmrtqIhUr0S3rcYXTAY=; b=IeOyuN+sCO95oxiA/EYde8d7X2 lnZeIhVFAnZFst3I7NExQm+y2FkOoN3f8AzwLJY844sZ1W6mT+D7FGEY9RRVzTorMAqwhfBGTHWVh ZwZBxyrTaWjHoMRp2bP817Kc/vAAf35EKl0gmTd3VgVRxIXoqh38u/rPNqbnspY5OAaRHRMfPFIgB 7YGhxdOqMYdyazYFpHpbXF9n6ZTLfElM1ZDFipFqzv9i4XvZzdCqJXFRTwzuUC5FnxgBNihbzQ0g7 fdZoiQh3TdY4jffXQk2Ldl4h90BrNVflVV2xjTDKdw+dErtJHDEiFZOgHMpGJyS8i7Qhk8mq70RBq Ok4IshrQ==; Received: from [2001:4bb8:180:9884:c70:4a89:bc61:3] (helo=localhost) by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lKe2j-00A7MY-8f; Fri, 12 Mar 2021 09:25:17 +0000 Date: Fri, 12 Mar 2021 10:25:12 +0100 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 fixes for 5.12 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org The following changes since commit df66617bfe87487190a60783d26175b65d2502ce: block: rsxx: fix error return code of rsxx_pci_probe() (2021-03-10 08:25:37 -0700) are available in the Git repository at: git://git.infradead.org/nvme.git tags/nvme-5.12-2021-03-12 for you to fetch changes up to abbb5f5929ec6c52574c430c5475c158a65c2a8c: nvme-pci: add the DISABLE_WRITE_ZEROES quirk for a Samsung PM1725a (2021-03-11 11:48:54 +0100) ---------------------------------------------------------------- nvme fixes for 5.12: - one more quirk (Dmitry Monakhov) - fix max_zone_append_sectors initialization (Chaitanya Kulkarni) - nvme-fc reset/create race fix (James Smart) - fix status code on aborts/resets (Hannes Reinecke) - fix the CSS check for ZNS namespaces (Chaitanya Kulkarni) - fix a use after free in a debug printk in nvme-rdma (Lv Yunlong) ---------------------------------------------------------------- Chaitanya Kulkarni (2): nvme: set max_zone_append_sectors nvme_revalidate_zones nvme-core: check ctrl css before setting up zns Dmitry Monakhov (1): nvme-pci: add the DISABLE_WRITE_ZEROES quirk for a Samsung PM1725a Hannes Reinecke (4): nvme: simplify error logic in nvme_validate_ns() nvme: add NVME_REQ_CANCELLED flag in nvme_cancel_request() nvme-fc: set NVME_REQ_CANCELLED in nvme_fc_terminate_exchange() nvme-fc: return NVME_SC_HOST_ABORTED_CMD when a command has been aborted James Smart (1): nvme-fc: fix racing controller reset and create association Lv Yunlong (1): nvme-rdma: Fix a use after free in nvmet_rdma_write_data_done drivers/nvme/host/core.c | 15 +++++++++++---- drivers/nvme/host/fc.c | 5 +++-- drivers/nvme/host/pci.c | 1 + drivers/nvme/host/zns.c | 9 +++++++-- drivers/nvme/target/rdma.c | 5 ++--- 5 files changed, 24 insertions(+), 11 deletions(-)