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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 252C8C433F5 for ; Wed, 20 Oct 2021 06:09:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 04262611B0 for ; Wed, 20 Oct 2021 06:09:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229715AbhJTGLZ (ORCPT ); Wed, 20 Oct 2021 02:11:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49814 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229591AbhJTGLZ (ORCPT ); Wed, 20 Oct 2021 02:11:25 -0400 Received: from bombadil.infradead.org (unknown [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9A394C06161C for ; Tue, 19 Oct 2021 23:09:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=6UIAcujU1cZB+KwxCtDpzQat6VQ042+UO5gERAZhMhM=; b=oPn7xnQrg4xMifFP8ILtDC1d3g vJ3Sh4IVDQHRd77hw6iOiLskiQMRAZV8pTp0in+33Rzts1l3zrYVXrMTMZkyaiFLrV2gVQJxjIiSi UkPpTwXDXbMNAHo6SfsA/GRucQOVRM0A90IzkRba9p05d3MCUJjzl2u/TNAm2Bt3/tdyWKrdtV3Qx U2ssLB3F/h8ykJvf3UHpRLIlNvnMy50afP6rlNYO5Zg/T3LxgdisdlfDDBRtcWT2LICpQ1KTjh2IR KS1RnwxjLINSxmFO+CWtwn2jqP7TGbU/i3WO0/VUl5mEA4EneEvQ5eE3eCXc6zhQkDrxkkXl/uzob Rz5eDCFg==; Received: from hch by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1md4ml-003SU0-A8; Wed, 20 Oct 2021 06:09:11 +0000 Date: Tue, 19 Oct 2021 23:09:11 -0700 From: Christoph Hellwig To: Pavel Begunkov Cc: linux-block@vger.kernel.org, Jens Axboe Subject: Re: [PATCH 01/16] block: turn macro helpers into inline functions Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Tue, Oct 19, 2021 at 10:24:10PM +0100, Pavel Begunkov wrote: > Replace bio_set_dev() with an identical inline helper and move it > further to fix a dependency problem with bio_associate_blkg(). Do the > same for bio_copy_dev(). Looks fine. Reviewed-by: Christoph Hellwig