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 AD28AEB64DC for ; Thu, 20 Jul 2023 05:39:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229561AbjGTFj0 (ORCPT ); Thu, 20 Jul 2023 01:39:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43406 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229517AbjGTFjZ (ORCPT ); Thu, 20 Jul 2023 01:39:25 -0400 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 51B3811D for ; Wed, 19 Jul 2023 22:39:25 -0700 (PDT) Received: by verein.lst.de (Postfix, from userid 2407) id C7E0167373; Thu, 20 Jul 2023 07:39:21 +0200 (CEST) Date: Thu, 20 Jul 2023 07:39:21 +0200 From: Christoph Hellwig To: Bart Van Assche Cc: Jens Axboe , linux-block@vger.kernel.org, Christoph Hellwig , "Martin K . Petersen" , "James E.J. Bottomley" Subject: Re: [PATCH v2 1/3] scsi: Inline scsi_kick_queue() Message-ID: <20230720053921.GA2450@lst.de> References: <20230719182243.2810134-1-bvanassche@acm.org> <20230719182243.2810134-2-bvanassche@acm.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230719182243.2810134-2-bvanassche@acm.org> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Wed, Jul 19, 2023 at 11:22:40AM -0700, Bart Van Assche wrote: > scsi_kick_queue() is too short to keep it as a separate function. Hence > inline it. This patch prepares for modifying the second argument passed > to blk_mq_run_hw_queues(). It wouldn't say "too short" as short functions can be useful too. But this one is indeed quite pointless, so the change looks good, even if the commit log could be improved a bit: Reviewed-by: Christoph Hellwig