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=-10.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 0ED7AC4338F for ; Thu, 12 Aug 2021 07:06:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id DF06160E09 for ; Thu, 12 Aug 2021 07:06:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232784AbhHLHGa (ORCPT ); Thu, 12 Aug 2021 03:06:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58552 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230147AbhHLHGa (ORCPT ); Thu, 12 Aug 2021 03:06:30 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 99855C061765; Thu, 12 Aug 2021 00:06:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; 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=1MectOUgcrUFVwq1OFBd/OPftXzfc7hvlaR3c8DnIwY=; b=Oghg0EtEyBSUGjYK0YEBjTwrj/ 4c+8z8RGfNXrM/XPSrs6a0SOVGA72t6TebcItXMJK/nyxRfqkMduTYiwAQyVg5S/2dp3z4KnvX1NU 2Apn83LQSRODPHKfDcKag57P7hqONQL3SzFGiW98T0NyIJ4f9f0Ha7RgX9J7zOJ91FAU0PutB9SyU TrlShEZfOMt3yN0MUOshhyH0+RUhjlhpMCZMDISSISvUkODh1no564uOIrCtjr/+UjpHoRs3PvPpe OToGq/tDA9xSuLJ3LmvgXP1X1WRwIeB4jLk0jucN58wzlAKKckSC05BbUyH+dHwfbf2kp8HHcVmAL 2ukk2wHg==; Received: from [2001:4bb8:184:6215:d7d:1904:40de:694d] (helo=localhost) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mE4l3-00EGhR-VR; Thu, 12 Aug 2021 07:04:18 +0000 Date: Thu, 12 Aug 2021 09:04:05 +0200 From: Christoph Hellwig To: Jens Axboe Cc: io-uring@vger.kernel.org, linux-block@vger.kernel.org, hch@infradead.org Subject: Re: [PATCH 6/6] block: enable use of bio allocation cache Message-ID: References: <20210811193533.766613-1-axboe@kernel.dk> <20210811193533.766613-7-axboe@kernel.dk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210811193533.766613-7-axboe@kernel.dk> X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Wed, Aug 11, 2021 at 01:35:33PM -0600, Jens Axboe wrote: > Initialize the bio_set used for IO with per-cpu bio caching enabled, > and use the new bio_alloc_kiocb() helper to dip into that cache. > > Signed-off-by: Jens Axboe This seems to be pretty much my patch as-is..