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 92B0FC433EF for ; Tue, 28 Jun 2022 10:17:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344525AbiF1KRG (ORCPT ); Tue, 28 Jun 2022 06:17:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47616 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344788AbiF1KQ7 (ORCPT ); Tue, 28 Jun 2022 06:16:59 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5B7672FE76; Tue, 28 Jun 2022 03:16:54 -0700 (PDT) Received: from [192.168.2.145] (109-252-118-164.nat.spd-mgts.ru [109.252.118.164]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: dmitry.osipenko) by madras.collabora.co.uk (Postfix) with ESMTPSA id 0743E66015C6; Tue, 28 Jun 2022 11:16:51 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1656411412; bh=1tqlWAxPmJlNCdOk5uOFfVSOEf7qfVbTP0IA7EU/8zw=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=TkpMzbKCu0LchDuRwPJ+t8ON7otup+mIijJ2VrV9eByciW5GXXr0zIaDw4YlzyPj/ deUCZv+VKquqT9EFxdT1p0qPnDAv4Lei3peIFI9JGyDAC7lvDY+9t1aWs7emcYMIDy ck2pJgoFq/Sx3ZmbPjJBCkuwVivsZO4rqdLmb2NhvZPzsd48inkYAKTutX+wQQos+7 CUM21fxNr6L11CEOcWx0kf70LOzrIYDy5oyxeYq4c30mtMt7nFLOIYWA+TURyRh8L9 MbqD6b4ODAkfashBMrB4DxnH5i4Pb+QAqvWqKLJFHHPSOx1AVxhS27LUyVGVmA1cGs 7746SqpG3zIog== Message-ID: <49ffbe2d-73ac-ee2e-e3d1-c31a88e40dd4@collabora.com> Date: Tue, 28 Jun 2022 13:16:49 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 Subject: Re: [PATCH 22/31] soc/tegra: Migrate to dev_pm_opp_set_config() Content-Language: en-US To: Viresh Kumar Cc: Jonathan Hunter , Dmitry Osipenko , Thierry Reding , linux-pm@vger.kernel.org, Vincent Guittot , Rafael Wysocki , Stephen Boyd , Nishanth Menon , Krzysztof Kozlowski , linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org References: <449b344f037c7ef1970bc84d31e0d4c4cb4d2951.1653564321.git.viresh.kumar@linaro.org> <20220624004831.po35sowzfo4c47b3@vireshk-i7> <20220624005700.oj4etaajbutvsym7@vireshk-i7> <73d39022-c6fc-0c21-cb68-9714846f02bf@gmail.com> <20220627064526.2nkezq4nufpkl4y2@vireshk-i7> <20220627072104.ir7kujhezxhzl6a7@vireshk-i7> <20220628070943.5tfyad63rh6niq6x@vireshk-i7> <20220628101139.jdpsplkqbbh6qpse@vireshk-i7> From: Dmitry Osipenko In-Reply-To: <20220628101139.jdpsplkqbbh6qpse@vireshk-i7> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 6/28/22 13:11, Viresh Kumar wrote: > On 28-06-22, 13:08, Dmitry Osipenko wrote: >> The opp/linux-next works fine, thank you. >> >> Tested-by: Dmitry Osipenko > > Thanks. I should add this to all the core + tegra -patches in that > branch, right ? Yes, please. >> BTW, the idr_alloc() is obsoleted by xa_alloc(). > > The earlier interface isn't deprecated, right ? I really don't want to > go change it again :) > It has been in a process of deprecation for a couple years now. All IDR instances are slowly converting to XA. You won't need to take mutex with xa_alloc(). -- Best regards, Dmitry