From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 545151CF8F; Tue, 16 Jan 2024 19:02:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705431739; cv=none; b=AJWDikvdxNIWezvaE8AA5e6kgNFFoGBgEbkkbtcDzO84L8FuEidQf4JmkdzV+VIGrxCutJC/gI+ZhKlT5M0aBIxc27qzmI42Tw0Jgw0lZrkLDR9gAgfFh9pi7e4ROxt1z/KvFJcKIn29Km/r+3BAeBDyMktx5msWm/3LQD2PSDc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705431739; c=relaxed/simple; bh=oxwRyeIL7M3hBA9vL9BEAgyW9LT9u2t413CGMrrBAAY=; h=Received:DKIM-Signature:Received:Content-Type:MIME-Version: Content-Transfer-Encoding:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=GxcklUavu9RIEhjDVPuJzPN14tKjhTewAJJGOLJI+Q8aDr+XzojMAEm2bAR+RknHjXUjeP8fP12+A76a4RD5PWyxrzaA+PlW5ROzV0JUt/yM419rEcJdq3g1jrJuF3aHBSku2Z662AZxs7w1X+oe2C1XE05GUXAO6cTi4F1Mryk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BQlmYwfL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="BQlmYwfL" Received: by smtp.kernel.org (Postfix) with ESMTPS id DCB27C433F1; Tue, 16 Jan 2024 19:02:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1705431738; bh=oxwRyeIL7M3hBA9vL9BEAgyW9LT9u2t413CGMrrBAAY=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=BQlmYwfLboHO4veFxacQLWA1eyijOjOtpvGdOcLB0sJS7z9eyKYF2Kv6ylK8KAJzX udynA+l1fx/Jxo9NUVI+CNFE1qI3OrGTniJeYVSiJ4reRLREBBQL3xHMvrqwwiw/Gu IKzO4vBoMYNROkk2z4d2RP8CjLajJTU237dQ/uqq0sx/B6CYDpjTbzThBUiNq0wnpX X8gNWgdAyEN8wYTXEhaE3JMmp6ZzcwihS2XBvNccMc8QH4mfkSIhbeDlc+owz8aiyj pGCvOM0Ta4kMlmWsLhLO9yha6U0JHDHRCENEuJlyVpAG6ox/Y412LVgVi4G1swMuoJ UFwOnulWFyR1w== Received: from aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (localhost.localdomain [127.0.0.1]) by aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (Postfix) with ESMTP id C2AD0D8C987; Tue, 16 Jan 2024 19:02:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: dm-devel@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [f2fs-dev] [PATCH 1/5] virtio_blk: cleanup zoned device probing From: patchwork-bot+f2fs@kernel.org Message-Id: <170543173879.30188.5344312872944674652.git-patchwork-notify@kernel.org> Date: Tue, 16 Jan 2024 19:02:18 +0000 References: <20231217165359.604246-2-hch@lst.de> In-Reply-To: <20231217165359.604246-2-hch@lst.de> To: Christoph Hellwig Cc: axboe@kernel.dk, dm-devel@lists.linux.dev, linux-scsi@vger.kernel.org, martin.petersen@oracle.com, linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, virtualization@lists.linux.dev, dlemoal@kernel.org, stefanha@redhat.com, pbonzini@redhat.com, linux-f2fs-devel@lists.sourceforge.net, linux-btrfs@vger.kernel.org Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jens Axboe : On Sun, 17 Dec 2023 17:53:55 +0100 you wrote: > Move reading and checking the zoned model from virtblk_probe_zoned_device > into the caller, leaving only the code to perform the actual setup for > host managed zoned devices in virtblk_probe_zoned_device. > > This allows to share the model reading and sharing between builds with > and without CONFIG_BLK_DEV_ZONED, and improve it for the > !CONFIG_BLK_DEV_ZONED case. > > [...] Here is the summary with links: - [f2fs-dev,1/5] virtio_blk: cleanup zoned device probing https://git.kernel.org/jaegeuk/f2fs/c/77360cadaae5 - [f2fs-dev,2/5] virtio_blk: remove the broken zone revalidation support https://git.kernel.org/jaegeuk/f2fs/c/a971ed800211 - [f2fs-dev,3/5] block: remove support for the host aware zone model https://git.kernel.org/jaegeuk/f2fs/c/7437bb73f087 - [f2fs-dev,4/5] block: simplify disk_set_zoned https://git.kernel.org/jaegeuk/f2fs/c/d73e93b4dfab - [f2fs-dev,5/5] sd: only call disk_clear_zoned when needed https://git.kernel.org/jaegeuk/f2fs/c/5cc99b89785c You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html 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 Received: from lists.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DD729C47DA2 for ; Tue, 16 Jan 2024 19:02:32 +0000 (UTC) Received: from [127.0.0.1] (helo=sfs-ml-2.v29.lw.sourceforge.com) by sfs-ml-2.v29.lw.sourceforge.com with esmtp (Exim 4.95) (envelope-from ) id 1rPohk-0005EM-Bn; Tue, 16 Jan 2024 19:02:32 +0000 Received: from [172.30.20.202] (helo=mx.sourceforge.net) by sfs-ml-2.v29.lw.sourceforge.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.95) (envelope-from ) id 1rPohi-0005E5-8x for linux-f2fs-devel@lists.sourceforge.net; Tue, 16 Jan 2024 19:02:30 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=Cc:To:In-Reply-To:References:Date:Message-Id:From: Subject:Content-Transfer-Encoding:MIME-Version:Content-Type:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Hgro4ShO6AfoEjGIuDUNzyp4EhHJ34Yz7VtiZQtV2d4=; b=eCO+vbkMhES9QLg2U2SEuqHteJ KqMlWF5I8ZV+08+8rdSvHwgrjVHpywSctlJwNI5KMx5wCAcTUBRAYY0YrdqJAJVH+f4D+UfrWIQKu 2GESsrq85P3CVR5U5XL9AaN/pGPXo+JOg4XM/HUq6JO98Iy2ByXaLsBxMxcKdxHwYYaU=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=Cc:To:In-Reply-To:References:Date:Message-Id:From:Subject: Content-Transfer-Encoding:MIME-Version:Content-Type:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Hgro4ShO6AfoEjGIuDUNzyp4EhHJ34Yz7VtiZQtV2d4=; b=XqNs6w2bdhvsz6ZdQCaZtSaFCU XHfdxg9N4NRetjszqWfhYhUuRaCvyDdZcmtcMTUtFogokiPTD+pXoeYkAYun38Yv4IshfTuM9eTx/ +mroeheey5F73zM9MWy2p2rOFVwBIJAHla6gokxqUlq2cwgqPxUXIdjMdCLN+kNva6WU=; Received: from dfw.source.kernel.org ([139.178.84.217]) by sfi-mx-2.v28.lw.sourceforge.com with esmtps (TLS1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.95) id 1rPohg-0000an-Jc for linux-f2fs-devel@lists.sourceforge.net; Tue, 16 Jan 2024 19:02:30 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 3FC1961354; Tue, 16 Jan 2024 19:02:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPS id DCB27C433F1; Tue, 16 Jan 2024 19:02:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1705431738; bh=oxwRyeIL7M3hBA9vL9BEAgyW9LT9u2t413CGMrrBAAY=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=BQlmYwfLboHO4veFxacQLWA1eyijOjOtpvGdOcLB0sJS7z9eyKYF2Kv6ylK8KAJzX udynA+l1fx/Jxo9NUVI+CNFE1qI3OrGTniJeYVSiJ4reRLREBBQL3xHMvrqwwiw/Gu IKzO4vBoMYNROkk2z4d2RP8CjLajJTU237dQ/uqq0sx/B6CYDpjTbzThBUiNq0wnpX X8gNWgdAyEN8wYTXEhaE3JMmp6ZzcwihS2XBvNccMc8QH4mfkSIhbeDlc+owz8aiyj pGCvOM0Ta4kMlmWsLhLO9yha6U0JHDHRCENEuJlyVpAG6ox/Y412LVgVi4G1swMuoJ UFwOnulWFyR1w== Received: from aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (localhost.localdomain [127.0.0.1]) by aws-us-west-2-korg-oddjob-1.ci.codeaurora.org (Postfix) with ESMTP id C2AD0D8C987; Tue, 16 Jan 2024 19:02:18 +0000 (UTC) MIME-Version: 1.0 From: patchwork-bot+f2fs@kernel.org Message-Id: <170543173879.30188.5344312872944674652.git-patchwork-notify@kernel.org> Date: Tue, 16 Jan 2024 19:02:18 +0000 References: <20231217165359.604246-2-hch@lst.de> In-Reply-To: <20231217165359.604246-2-hch@lst.de> To: Christoph Hellwig X-Headers-End: 1rPohg-0000an-Jc Subject: Re: [f2fs-dev] [PATCH 1/5] virtio_blk: cleanup zoned device probing X-BeenThere: linux-f2fs-devel@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: axboe@kernel.dk, dm-devel@lists.linux.dev, linux-scsi@vger.kernel.org, martin.petersen@oracle.com, linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, virtualization@lists.linux.dev, dlemoal@kernel.org, stefanha@redhat.com, pbonzini@redhat.com, linux-f2fs-devel@lists.sourceforge.net, linux-btrfs@vger.kernel.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: linux-f2fs-devel-bounces@lists.sourceforge.net Hello: This series was applied to jaegeuk/f2fs.git (dev) by Jens Axboe : On Sun, 17 Dec 2023 17:53:55 +0100 you wrote: > Move reading and checking the zoned model from virtblk_probe_zoned_device > into the caller, leaving only the code to perform the actual setup for > host managed zoned devices in virtblk_probe_zoned_device. > > This allows to share the model reading and sharing between builds with > and without CONFIG_BLK_DEV_ZONED, and improve it for the > !CONFIG_BLK_DEV_ZONED case. > > [...] Here is the summary with links: - [f2fs-dev,1/5] virtio_blk: cleanup zoned device probing https://git.kernel.org/jaegeuk/f2fs/c/77360cadaae5 - [f2fs-dev,2/5] virtio_blk: remove the broken zone revalidation support https://git.kernel.org/jaegeuk/f2fs/c/a971ed800211 - [f2fs-dev,3/5] block: remove support for the host aware zone model https://git.kernel.org/jaegeuk/f2fs/c/7437bb73f087 - [f2fs-dev,4/5] block: simplify disk_set_zoned https://git.kernel.org/jaegeuk/f2fs/c/d73e93b4dfab - [f2fs-dev,5/5] sd: only call disk_clear_zoned when needed https://git.kernel.org/jaegeuk/f2fs/c/5cc99b89785c You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel