From patchwork Thu Sep 24 20:53:27 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Keith Busch X-Patchwork-Id: 11798231 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id EC4031731 for ; Thu, 24 Sep 2020 20:53:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D128A2399A for ; Thu, 24 Sep 2020 20:53:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600980819; bh=5VtJpDdYtCwZlRfMorsUAUPg+YDyujpIPaxXRnHMyk0=; h=From:To:Cc:Subject:Date:List-ID:From; b=Wm/dijDQSPZX4If/Sk2botkYiT39dm3I0hFEbVtmZYn1b95XBuqiNL8BmxQndp8ZV uaJGMGPPEyMZZjXe2qfxBO/KdntTuAuA5ipnACKJ4fzIVuJqlFLEV+sm1Y53Zu3U7i 0TpZELTdGxhxkkBf1RJPHcI/1Gj8PWd7xRrCkXY0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726637AbgIXUxj (ORCPT ); Thu, 24 Sep 2020 16:53:39 -0400 Received: from mail.kernel.org ([198.145.29.99]:45874 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725208AbgIXUxf (ORCPT ); Thu, 24 Sep 2020 16:53:35 -0400 Received: from dhcp-10-100-145-180.wdl.wdc.com (unknown [199.255.45.60]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 063112399A; Thu, 24 Sep 2020 20:53:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600980815; bh=5VtJpDdYtCwZlRfMorsUAUPg+YDyujpIPaxXRnHMyk0=; h=From:To:Cc:Subject:Date:From; b=daxcQ/vGVx9MCUGijrm4hmX+iKBonjPY15FIt/uGOh1wm90jRQKKGJYiyFx3dyuMM 4VooFuArvyGQFZm7MOndPrZi+x9DBAJlvd8EkcmIA/kDqzv+BUqLMt/D1ho9hJZlq3 HkM3V3ooptvquX+48unEw3k1OuJtcy40JnTu8Io8= From: Keith Busch To: axboe@kernel.dk Cc: linux-nvme@lists.infradead.org, linux-block@vger.kernel.org, linux-scsi@vger.kernel.org, hch@lst.de, Keith Busch Subject: [PATCHv4 0/3] zoned block device specific errors Date: Thu, 24 Sep 2020 13:53:27 -0700 Message-Id: <20200924205330.4043232-1-kbusch@kernel.org> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org Zone block devices may have some limits that require special handling. This series provides a way for drivers to notify of these conditions. v3 -> v4: Added reviews/acks/sobs Dropped unintended patch Damien Le Moal (1): scsi: handle zone resources errors Keith Busch (2): block: add zone specific block statuses nvme: translate zone resource errors Documentation/block/queue-sysfs.rst | 8 ++++++++ block/blk-core.c | 4 ++++ drivers/nvme/host/core.c | 4 ++++ drivers/scsi/scsi_lib.c | 9 +++++++++ include/linux/blk_types.h | 18 ++++++++++++++++++ 5 files changed, 43 insertions(+)