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=-6.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 7D335C433E1 for ; Wed, 29 Jul 2020 00:43:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5800D2076E for ; Wed, 29 Jul 2020 00:43:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730769AbgG2AnF (ORCPT ); Tue, 28 Jul 2020 20:43:05 -0400 Received: from mail-pg1-f193.google.com ([209.85.215.193]:33909 "EHLO mail-pg1-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730766AbgG2AnF (ORCPT ); Tue, 28 Jul 2020 20:43:05 -0400 Received: by mail-pg1-f193.google.com with SMTP id t6so13316905pgq.1 for ; Tue, 28 Jul 2020 17:43:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=Q621nujP6PGe0N0JjbEojimC1WUZHW4/irnI2wZeTfk=; b=XJDCZO+bPC84d+PuUAoV8sLliJNcP2u0Dx1E6LsckumvRbyvdIjqeCeHbZLREyVPHS 9SDmY3UDnwohV8Fckk22hArGOXWW/9qAiLEszjuef3cJUkgiCjdg7AP4EIgXr5NSG9W3 XpsUgLXZnSeEgDOKmUlhSQjzHgijiKPox5hAATRgbiGbFwaPJ9pNsTV5OgqrAVYG9vpG ZEtwcCTkq3NxVVKmqBLi3Ubs6qffjIZDrvhEB7CWXjmX79MIB2ZDn0v9w3gDCvk+yY6n NvRwMWVf4HIGPLEIxJh1eM8eFoeiO8lD0Gkip8T0qwRZQqi0eRHZTjxoK/329TfqXrP1 p1bw== X-Gm-Message-State: AOAM5316UT2PUkLt8SoAVe3gA2rKIy7ZKuFdYa7cfWV6TcOkbmoLx3p1 JB9WtpNqsKCb9toLENP8XYM= X-Google-Smtp-Source: ABdhPJxQODq0xK6fvW2V3KNlqM/yc77wLReKq8n97sRZZjRInGdpD0ykPKVa1bZJXKGHsK7q7hfsmw== X-Received: by 2002:a62:77d2:: with SMTP id s201mr9201832pfc.213.1595983384823; Tue, 28 Jul 2020 17:43:04 -0700 (PDT) Received: from ?IPv6:2601:647:4802:9070:fcc5:69d8:6e20:4fd1? ([2601:647:4802:9070:fcc5:69d8:6e20:4fd1]) by smtp.gmail.com with ESMTPSA id a16sm229980pgj.27.2020.07.28.17.43.03 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 28 Jul 2020 17:43:04 -0700 (PDT) Subject: Re: [PATCH v5 1/2] blk-mq: add tagset quiesce interface To: paulmck@kernel.org Cc: Ming Lei , Christoph Hellwig , Jens Axboe , linux-nvme@lists.infradead.org, linux-block@vger.kernel.org, Chao Leng , Keith Busch , Ming Lin References: <20200727231022.307602-1-sagi@grimberg.me> <20200727231022.307602-2-sagi@grimberg.me> <20200728071859.GA21629@lst.de> <20200728091633.GB1326626@T590> <20200728135436.GP9247@paulmck-ThinkPad-P72> <20200729003124.GT9247@paulmck-ThinkPad-P72> From: Sagi Grimberg Message-ID: <07c90cf1-bb6f-a343-b0bf-4c91b9acb431@grimberg.me> Date: Tue, 28 Jul 2020 17:43:02 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20200729003124.GT9247@paulmck-ThinkPad-P72> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org >> Dynamically allocating each one is possible but not very scalable. >> >> The question is if there is some way, we can do this with on-stack >> or a single on-heap rcu_head or equivalent that can achieve the same >> effect. > > If the hctx structures are guaranteed to stay put, you could count > them and then do a single allocation of an array of rcu_head structures > (or some larger structure containing an rcu_head structure, if needed). > You could then sequence through this array, consuming one rcu_head per > hctx as you processed it. Once all the callbacks had been invoked, > it would be safe to free the array. > > Sounds too simple, though. So what am I missing? We don't want higher-order allocations...