From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 20AB01DF26E for ; Fri, 12 Jun 2026 15:58:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781279903; cv=none; b=IWxhhCJkAWckenzHOJMEam5VzmjcFnRSkwWlAaoTWrfJkNQnE71jvMdBUriJVx2QEMVBD2c7+Z91NbqYzUuUnU8GBo8NLGLr+AX6QSWNQi75CaHGrFTQhKpcXTu4xaxLa3+YuGCilsP+ce/0n9pHXVbr4+n+TiTFAmwldOjqJxs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781279903; c=relaxed/simple; bh=Ntaxgc758NRUxlTdSdLekxhpSNuEw5RbfEPUseIWBz4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Rx+nAWK5iysx6bo3YWmPFM84183netJ1Sh5f3/18ko9Nj2J5QWVLrFivskzcC1hCZ9UTQ9blPzeRijaUE0tahS0J7JODHHu4M9ASIamRcWbuHC8cqQIzuF3i5zzbTU/mQ4wGPGgUaUMizyVt4ACyZ0tXd/zXu6X1UaW2oq3eOPc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=SWf5wjhz; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="SWf5wjhz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 074641F000E9; Fri, 12 Jun 2026 15:58:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781279902; bh=Q7XhtRD5h/PY6BHzqS7jhF0LE/whhQmKprg+09ceZdo=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=SWf5wjhz3RejAvlNBV4Pl25F48oGUm6wO0U75zqphr83qv6KkYCs+/XodS0ywUzlx V3JkiQHxrskZR7+3j0FjFXc/y0akUvI1i/JfgxkLKDXtHaqX3IfK1hi377UgYy7HvX vfPDebqIuCkUHaM5eTd4QyqTWnvDL6uX5Js6XRKEHPKJbex476pt3yB0Ehns+yf1XN BwsGG/RwRcxu3XoLnz/8NaCp0IKHdbGRzWG4y1zv5eTl+kmNHlfvg0h+WEaa9Z+g2M mU4icUTBep5XT+EXGP/HPEBzOf8MugrEVum1PqP9F5kLr7E27ig23rN5UJ/xUgdnCL oZcrBnoRwAmeQ== Received: from johan by xi.lan with local (Exim 4.99.3) (envelope-from ) id 1wY4Gx-00000002OWE-3vMT; Fri, 12 Jun 2026 17:58:19 +0200 Date: Fri, 12 Jun 2026 17:58:19 +0200 From: Johan Hovold To: Geoff Levand , Madhavan Srinivasan , Michael Ellerman Cc: Nicholas Piggin , Christophe Leroy , Greg Kroah-Hartman , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 0/3] powerpc: switch to dynamic root devices Message-ID: References: <20260424160259.2672722-1-johan@kernel.org> 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: <20260424160259.2672722-1-johan@kernel.org> On Fri, Apr 24, 2026 at 06:02:56PM +0200, Johan Hovold wrote: > This series replaces static root devices with dynamically allocated > ones. Included is also a related printk cleanup. > Changes in v2: > - only set ibmebus root pointer on successful registration > - add sanity check when registering ibmebus devices to avoid > use-after-free if ibmebus_register_driver() is called after the bus > failed to register (Sashiko flagged this path which I had missed) > > > Johan Hovold (3): > powerpc/ps3: switch to dynamic system bus root device > powerpc/pseries: switch to dynamic ibmebus root device > powerpc/pseries: clean up ibmebus printks Can these be picked up now? Johan