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 E0F875F483; Thu, 1 Feb 2024 14:49:04 +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=1706798945; cv=none; b=SVLWsLjCL9coN7XhwKmAUVGP/lR2+0yTmgkVdCufPY4dDfQOEU5W2IAmRMRFYRQfaFukCjJHljxuefD66rg7rUK05fzX+wIQaBtVnM1g5K8k9OBwM2KGdDC6lGhyge6VwHhvxym0sZaQApomy8r9rL4+FVo+wPCTWAXUG4FIEgQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706798945; c=relaxed/simple; bh=r4NsFhRY2AljvQwz6cHeKQhY5odIqHrtJruSfr4qmZ4=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition:In-Reply-To; b=bQyWAbK4JW7DCy8+7rctNF0tgGoTUL9gNaTipjsjc0rMPULG9Y3ZXrmT9wGAUS9CQqLvKXyv9wX3ZH3M1ZeUvuOFf0RL1QvKtHhEravs8kyE/JK1v3nThk3Px/uumXN8DCvoP5KBOQSpWXZvasgOhHrAdA9MoPQF785Mo1Xbcec= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QdbaEhUm; 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="QdbaEhUm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 94ACFC43390; Thu, 1 Feb 2024 14:49:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1706798944; bh=r4NsFhRY2AljvQwz6cHeKQhY5odIqHrtJruSfr4qmZ4=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=QdbaEhUmHvyvtW8BLgElIROAlAeVVmx/li1VUkK7Y8+g7/iRUG0o0fDyoz3+BQXvB ymFMW2MBPSJehyIeQmx6zh0AoNkI60eGnFeJkMqqkzvXcwmglVwBZ3DI67Ao9h6ZEp NDOKiHUa63NSq/6TTzCTunMsBvlI4HYaxBaOt9oUQlqTE04/lYZBHKjEa8fmR4aip5 y6gAQ/bHHwxiLZkVO74nrPHCkKCxeeeuCk+FzV00K0yx1X0ZnvJCIURXx5ucEcJ9pB Z7PoFUHyXGNrPdXmfgMYJc3cKIXj4iXzSDX3qzh8FWMXAGQQcvFLDJFz2VNrGaN6eV 9cWFSR93Q3J3w== Date: Thu, 1 Feb 2024 15:48:59 +0100 From: Christian Brauner To: Christoph Hellwig , Jan Kara Cc: Jens Axboe , "Darrick J. Wong" , linux-fsdevel@vger.kernel.org, linux-block@vger.kernel.org Subject: Re: [PATCH v2 28/34] bdev: make bdev_release() private to block layer Message-ID: <20240201-aufladen-richten-2cbfca888b89@brauner> Precedence: bulk X-Mailing-List: linux-block@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20240129161933.GH3416@lst.de> <20240201102616.kzuflhvyck7xtmc7@quack3> On Mon, Jan 29, 2024 at 05:19:33PM +0100, Christoph Hellwig wrote: > On Tue, Jan 23, 2024 at 02:26:45PM +0100, Christian Brauner wrote: > > and move both of them to the private block header. There's no caller in > > the tree anymore that uses them directly. > > the subject only takes about a single helper, but then the commit > message mentions "both". Seems like the subject is missing a > "bdev_open_by_dev and". On Thu, Feb 01, 2024 at 11:26:16AM +0100, Jan Kara wrote: > On Tue 23-01-24 14:26:45, Christian Brauner wrote: > > and move both of them to the private block header. There's no caller in > > the tree anymore that uses them directly. > > > > Signed-off-by: Christian Brauner > > As Christoph noticed, the changelog needs a bit of work but otherwise feel Fixed, thanks!