From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 747A81487F6; Fri, 3 Oct 2025 07:37:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.95.11.211 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759477050; cv=none; b=CdMILLXnvVVdIfhqFROTfb7S/N8k2VWjPpNbHvzSNETvWcSK/ahi21NckHsQHimOF6R5ithG1OelU4k46NPzpPIFlGMokFeZK00OBIqk7je4DIL5BZR+VoSWErvqT5TLoLntzn8iUltWsFrj7Ap6XMlj8vWbK3N36ihdFFW+4r4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1759477050; c=relaxed/simple; bh=8oMk1tTNDdnAc4sOlWr73sowsuiT1oXGCOPgrarjzjA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=lBoH2NS3RJCeJm1pVtTHnEMHnpyyU/AWKiqqdsJlm64GGdGnH72zo75Wc2xmVMmZoB7tG4K1InP4PCyRSHXdmBJuyHMyJ6sWiPMVTE7VuPs3eteQp4O1Kf3+4sTtmfk84XEGKKpKKdMAJ2eLw3A7bMHjdK9duG0ROZ4Gjj3tImc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de; spf=pass smtp.mailfrom=lst.de; arc=none smtp.client-ip=213.95.11.211 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lst.de Received: by verein.lst.de (Postfix, from userid 2407) id EAF2C227AAC; Fri, 3 Oct 2025 09:37:24 +0200 (CEST) Date: Fri, 3 Oct 2025 09:37:24 +0200 From: Christoph Hellwig To: Yu Kuai Cc: tj@kernel.org, ming.lei@redhat.com, nilay@linux.ibm.com, hch@lst.de, josef@toxicpanda.com, axboe@kernel.dk, akpm@linux-foundation.org, vgoyal@redhat.com, cgroups@vger.kernel.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, yukuai3@huawei.com, yi.zhang@huawei.com, yangerkun@huawei.com, johnny.chenyi@huawei.com Subject: Re: [PATCH 08/10] blk-cgroup: remove radix_tree_preload() Message-ID: <20251003073724.GA12933@lst.de> References: <20250925081525.700639-1-yukuai1@huaweicloud.com> <20250925081525.700639-9-yukuai1@huaweicloud.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250925081525.700639-9-yukuai1@huaweicloud.com> User-Agent: Mutt/1.5.17 (2007-11-01) On Thu, Sep 25, 2025 at 04:15:23PM +0800, Yu Kuai wrote: > From: Yu Kuai > > Now that blkcg_mutex is used to protect blkgs, memory allocation no > longer need to be non-blocking, this is not needed. Btw, this might also be a good time to convert from the old radix tree to an xarray.