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 X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C939DC43219 for ; Fri, 26 Apr 2019 15:09:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A4A2520675 for ; Fri, 26 Apr 2019 15:09:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726206AbfDZPJ2 (ORCPT ); Fri, 26 Apr 2019 11:09:28 -0400 Received: from verein.lst.de ([213.95.11.211]:46592 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726169AbfDZPJ2 (ORCPT ); Fri, 26 Apr 2019 11:09:28 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id 84E66227A82; Fri, 26 Apr 2019 17:09:10 +0200 (CEST) Date: Fri, 26 Apr 2019 17:09:09 +0200 From: Christoph Hellwig To: Ming Lei Cc: Christoph Hellwig , Jens Axboe , linux-block@vger.kernel.org, Hannes Reinecke , Keith Busch , linux-nvme@lists.infradead.org, Sagi Grimberg , James Smart , Dongli Zhang , Bart Van Assche , linux-scsi@vger.kernel.org, "Martin K . Petersen" , "James E . J . Bottomley" Subject: Re: [PATCH V7 4/9] blk-mq: move all hctx alloction & initialization into __blk_mq_alloc_and_init_hctx Message-ID: <20190426150909.GA20438@lst.de> References: <20190424110221.17435-1-ming.lei@redhat.com> <20190424110221.17435-5-ming.lei@redhat.com> <20190424162223.GD23854@lst.de> <20190425005542.GC22636@ming.t460p> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190425005542.GC22636@ming.t460p> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Thu, Apr 25, 2019 at 08:55:43AM +0800, Ming Lei wrote: > It prepares for the following patch, otherwise the whole patch may > become difficult to review. Honestly, I'd find it much easier to review if this was folded into the next patch. That way we only move things around once instead of twice. From mboxrd@z Thu Jan 1 00:00:00 1970 From: hch@lst.de (Christoph Hellwig) Date: Fri, 26 Apr 2019 17:09:09 +0200 Subject: [PATCH V7 4/9] blk-mq: move all hctx alloction & initialization into __blk_mq_alloc_and_init_hctx In-Reply-To: <20190425005542.GC22636@ming.t460p> References: <20190424110221.17435-1-ming.lei@redhat.com> <20190424110221.17435-5-ming.lei@redhat.com> <20190424162223.GD23854@lst.de> <20190425005542.GC22636@ming.t460p> Message-ID: <20190426150909.GA20438@lst.de> On Thu, Apr 25, 2019@08:55:43AM +0800, Ming Lei wrote: > It prepares for the following patch, otherwise the whole patch may > become difficult to review. Honestly, I'd find it much easier to review if this was folded into the next patch. That way we only move things around once instead of twice.