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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C7AA4C4332F for ; Wed, 16 Nov 2022 03:10:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231887AbiKPDKy (ORCPT ); Tue, 15 Nov 2022 22:10:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37620 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230244AbiKPDKy (ORCPT ); Tue, 15 Nov 2022 22:10:54 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7155625E88; Tue, 15 Nov 2022 19:10:53 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 3C330B81BB1; Wed, 16 Nov 2022 03:10:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D655C433C1; Wed, 16 Nov 2022 03:10:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1668568248; bh=2OOvndA+O2pI98Z9bUzvRHZsKKydt/X6wmEUlnKLYvo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=M4Unpo8Zanqrb6eUEnMZKwHuUTmscVmaPsmf1GfCpd4EaS9IKvbFuUSmUhNZrtQkN b4wgNDfXLf6293r9cEgbb0Pp+rAzbOAxvPS/C62kp392fgFjDquMISqsAMmmD/znqa 9P98AAYFV3IZAoS5vl3hBOpKOhFxAAmi9r5da3HupxsmLGS9dipAFfOMSocJCizwAz 0+I+xoDk0hwcKSQeEs1Q03LwWm1/R8fU+4rphaXKB4J4cYtLtbcP9RxLRZUVk2I2WU NguIVEntyLPM3lCJbJfsFTwqwl8XzEC0vNWb1BrRrLsoBxqeCzhIbsgJCI1wCyPrTW FNN/6hZ/1FArA== Date: Tue, 15 Nov 2022 19:10:46 -0800 From: Eric Biggers To: Christoph Hellwig Cc: Jens Axboe , Mike Snitzer , "Theodore Y. Ts'o" , Jaegeuk Kim , dm-devel@redhat.com, linux-block@vger.kernel.org, linux-fscrypt@vger.kernel.org Subject: Re: [PATCH 1/3] blk-crypto: don't use struct request_queue for public interfaces Message-ID: References: <20221114042944.1009870-1-hch@lst.de> <20221114042944.1009870-2-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221114042944.1009870-2-hch@lst.de> Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Mon, Nov 14, 2022 at 05:29:42AM +0100, Christoph Hellwig wrote: > Switch all public blk-crypto interfaces to use struct block_device > arguments to specify the device they operate on instead of th > request_queue, which is a block layer implementation detail. > > Signed-off-by: Christoph Hellwig Reviewed-by: Eric Biggers - Eric