From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 23C5F37B02E; Tue, 7 Apr 2026 22:58:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775602726; cv=none; b=e+sI2uhKu2i/P7Z5BZNR0yR/oeOxB+SX6vGPcCc2bzdHMwLrxYb134U5MV5ks5sSOKOnxNuBvjKM2PZXlj17Hrd9wr3LSg8/AOf/19w/vl48l5Sk+QGebZiNIB1qDbU5mJaAh8JJk1uX5Zrh5KRNP0dPUFZU+81PZ0vdA9pqsbw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775602726; c=relaxed/simple; bh=ZxMhQkn/NMJTsfUq+eNI5wRqTDBwCQBg1cjTyGaGSzA=; h=Mime-Version:Content-Type:Date:Message-Id:Subject:Cc:To:From: References:In-Reply-To; b=CAFvIFUcUCh0VIHYGjMrdQEU7mL056z+zfQGxWKN+y2EY4XuEQ+udsZzjBcgQZOMoNA+EQ4UDQruMAtfVoplvx+xf66OTsQffPw2Syll1ZFr/yBHxAY6sBNTcBP4WY2reidLOzXk6Re7rfFdF3Ro6CnEnIxr81bH/Ngj88si6qA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YxT4H0gM; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="YxT4H0gM" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 77C69C116C6; Tue, 7 Apr 2026 22:58:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1775602726; bh=ZxMhQkn/NMJTsfUq+eNI5wRqTDBwCQBg1cjTyGaGSzA=; h=Date:Subject:Cc:To:From:References:In-Reply-To:From; b=YxT4H0gMU1uiOeHwbtOxxGkfFWJBaCzthqg03Sftf8l9d186Y09INkfJ8VCpcsjUT Qfd/Qlw+XjxQGpsD/+wtJtFtyh3etr3/mtV9qhSmixByvSXfzBB7nBSEJNPsodmdHd n6aWnXLqcu6DDQCkFID7N0ab2dedIpF0ftmNXCcvehsYTzafVVvpTSGtJI0Yt78qAh 7zcrBzbK4e2mGEgKbxfT4/RQOcj3aPhgKqv9IwN+ABisbMsvBq2hQAvVVGI9l26vIJ NOji8KIk0pikMh4DCWmZrmRQsTJnp7fjTB24k9B9hx+3b4Laf7gnEUw1IEsuOG28xo +wM+h43SmOleg== Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 08 Apr 2026 00:58:28 +0200 Message-Id: Subject: Re: [PATCH v5 0/9] driver core: Fix some race conditions Cc: "Greg Kroah-Hartman" , "Rafael J . Wysocki" , "Alan Stern" , "Alexey Kardashevskiy" , "Johan Hovold" , "Eric Dumazet" , "Leon Romanovsky" , "Christoph Hellwig" , , "Alexander Lobakin" , "Saravana Kannan" , "Andrew Morton" , , "Jason Gunthorpe" , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , To: "Douglas Anderson" , , "Robin Murphy" From: "Danilo Krummrich" References: <20260406232444.3117516-1-dianders@chromium.org> In-Reply-To: <20260406232444.3117516-1-dianders@chromium.org> On Tue Apr 7, 2026 at 1:22 AM CEST, Douglas Anderson wrote: Applied to driver-core-testing, thanks! > Douglas Anderson (9): > driver core: Don't let a device probe until it's ready > driver core: Replace dev->can_match with dev_can_match() > driver core: Replace dev->dma_iommu with dev_dma_iommu() > driver core: Replace dev->dma_skip_sync with dev_dma_skip_sync() > driver core: Replace dev->dma_ops_bypass with dev_dma_ops_bypass() > driver core: Replace dev->state_synced with dev_state_synced() > driver core: Replace dev->dma_coherent with dev_dma_coherent() [ Since all DEV_FLAG_DMA_COHERENT accessors are exposed unconditionally= , also drop the CONFIG guards around dev_assign_dma_coherent() in device_initialize() to ensure a correct default value. - Danilo ] > driver core: Replace dev->of_node_reused with dev_of_node_reused() > driver core: Replace dev->offline + ->offline_disabled with accessors