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 324A0C46467 for ; Wed, 14 Dec 2022 14:42:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238463AbiLNOmu (ORCPT ); Wed, 14 Dec 2022 09:42:50 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53880 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229719AbiLNOms (ORCPT ); Wed, 14 Dec 2022 09:42:48 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F05F318374; Wed, 14 Dec 2022 06:42:47 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 8ACED61AE3; Wed, 14 Dec 2022 14:42:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E1D7AC433EF; Wed, 14 Dec 2022 14:42:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1671028967; bh=tb2AsELIIZzyGSpjpE700QAuHM3wBVWwcbsHaNbdiQ0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AsdAE/eiZF+bh9VidavDiRp/P5bLlWFFF5fbv0+4RXMLBD0v2eHcUtPAXujZ6TFEC KxrmPCe0HHgMUog8LYj7hXV1fYpAKJXTjDXMqYXiaUuO3Nm5uKZsTH2wENMm31aZkR zrsBP1ZAVSGc5+LfjX/6NkVyX9CAhEuDp5iXvBol+tXGNd0JjLA2o118gvMy2toHS+ nYSBEVW5VlnWpSM8/fhAw0DSRb16ayX4FWeVMNa6CmQ+P2mWvCPDa8cRIwQSraO5Jr qnzc/XjJABe1FGjhvJZcQ3dyiObBJDZduu0arQyL9LFI4NvAik78h7mT1gGlw3elvz wriBGkgHvhHIA== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1p5SyY-0001lF-C2; Wed, 14 Dec 2022 15:43:15 +0100 Date: Wed, 14 Dec 2022 15:43:14 +0100 From: Johan Hovold To: Daniel Lezcano Cc: "Rafael J. Wysocki" , Johan Hovold , Amit Kucheria , Thara Gopinath , Andy Gross , Bjorn Andersson , Konrad Dybcio , Zhang Rui , Bartlomiej Zolnierkiewicz , Krzysztof Kozlowski , Alim Akhtar , Thierry Reding , Jonathan Hunter , Dmitry Baryshkov , linux-pm@vger.kernel.org, linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-tegra@vger.kernel.org Subject: Re: [PATCH 0/4] thermal: fix locking regressions in linux-next Message-ID: References: <20221214131617.2447-1-johan+linaro@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On Wed, Dec 14, 2022 at 03:37:43PM +0100, Daniel Lezcano wrote: > On 14/12/2022 15:02, Rafael J. Wysocki wrote: > > On Wed, Dec 14, 2022 at 2:18 PM Johan Hovold wrote: > >> > >> This series fixes some of the fallout after the thermal changes that > >> just landed in linux-next. > >> > >> Lockdep reported a lock inversion in one of the Qualcomm drivers and a > >> closer review revealed that the changes had also broken the sysfs > >> interface for at least three drivers. > > It is still present in my bleeding-edge branch, though, so please > > apply the patches from Johan on top of it and send a new PR to me, so > > I can add it back to my linux-next branch once 6.2-rc1 appears. > > > > It would be good to check the code again too for any more similar fallout. > > I've been through already, the exynos fix is not necessary. Right, I failed to notice that tmu_set_trip_temp() was not actually a thermal_zone_device_ops callback. So that one can be dropped. Johan