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 D6F42C6FD1D for ; Mon, 20 Mar 2023 14:00:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231183AbjCTOAK (ORCPT ); Mon, 20 Mar 2023 10:00:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50320 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231631AbjCTN7m (ORCPT ); Mon, 20 Mar 2023 09:59:42 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 758A96A42 for ; Mon, 20 Mar 2023 06:59:39 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1679320775; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=zdd7BrJeCYboXvMa1xKZJ73sd6/A3cBZ5PM4ufK0ePM=; b=T0OTW/PtYQB04vu1DQIaI9rQ5z+qGcEw9heuq7pFN9hDzy67+92vPhl9sedEkMUCpkmdr+ kc4arZDJxn+46EEbAGmUHXg0ilp9vx/ft2cVkhrmaIOZ+FJBYzm2GPrIX1dqYPjV9tu2lx l1CXkDKycbCOELEX3UapEW0H9EZXELM+MVy4xLhd7b30gw/R+v+ZZKzbPVB1i1bVbn6Eyc hgD0R98SQhYJkxf6I9tsNnXreS2604LhACwq/K39zTVSsQ8J00w5pBMWdeUvltBDyPbH/u vESZufNfYCMo8cxqY2Ke5U+gPAs1SAEBGSI3rsaLnANueJCqbd5/hAQDHOTPag== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1679320775; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=zdd7BrJeCYboXvMa1xKZJ73sd6/A3cBZ5PM4ufK0ePM=; b=ijgGxuWl5qLMXJiSVjh3QHwYgfrKg++OtSZug4DaUr/XHOy3H60O/dimLDPKqtM4uadpw2 +1gDfKhiXBduifCQ== To: Greg Kroah-Hartman , linux-kernel@vger.kernel.org Cc: rafael@kernel.org, Greg Kroah-Hartman , Valentin Schneider , Phil Auld , Steven Price , Juri Lelli , Vincent Donnefort , Kuppuswamy Sathyanarayanan , "Jason A. Donenfeld" Subject: Re: [PATCH 07/36] cpu/hotplug: move to use bus_get_dev_root() In-Reply-To: <20230313182918.1312597-7-gregkh@linuxfoundation.org> References: <20230313182918.1312597-1-gregkh@linuxfoundation.org> <20230313182918.1312597-7-gregkh@linuxfoundation.org> Date: Mon, 20 Mar 2023 14:59:34 +0100 Message-ID: <87ttyfa5h5.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Mar 13 2023 at 19:28, Greg Kroah-Hartman wrote: > Direct access to the struct bus_type dev_root pointer is going away soon > so replace that with a call to bus_get_dev_root() instead, which is what > it is there for. > > Cc: Thomas Gleixner > Cc: Valentin Schneider > Cc: Phil Auld > Cc: Steven Price > Cc: Juri Lelli > Cc: Greg Kroah-Hartman > Cc: Vincent Donnefort > Cc: Kuppuswamy Sathyanarayanan > Cc: "Jason A. Donenfeld" > Signed-off-by: Greg Kroah-Hartman Reviewed-by: Thomas Gleixner > --- > Note, this is a patch that is a prepatory cleanup as part of a larger > series of patches that is working on resolving some old driver core > design mistakes. It will build and apply cleanly on top of 6.3-rc2 on > its own, but I'd prefer if I could take it through my driver-core tree > so that the driver core changes can be taken through there for 6.4-rc1. No problem.