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 25B53253F3A for ; Tue, 8 Jul 2025 08:15:00 +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=1751962500; cv=none; b=ftvic+UZJiwg5O2vobiwn9mhqKfJmvjK9D44CIeSUsb5M+gTyY7KA9qCxqzIoTW3dJo6pQJfmp0ntcpn/n5ej2I8pUgmdPXYSW4QQ0HuSEOmb9f6fUa327SrT0IuGqnv1l/0KNKz+70LdKhoJUpUBh6l7JiM7htImf+EjPAIqOQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751962500; c=relaxed/simple; bh=SPNT0DiGS8PGJDpF7qZQ/FP0xlliIFg7X5Aiozh5qx8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ASUbac3UsRF5lP+I9jrg1TwyHSlG1uhE8ijRjw4pRHt2If9mwBn2VcEV0pG74F0uUk51GjoCR4o/VG2895tbNyeT3I7CtujnIU2bEpSERC6FCqvPX+zELX4vzs4xcXa1t6I4WsZQJSgnqpABCAAHUnBP3tQ/g7GRdunsdK7ZnGo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ijbFb4kx; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ijbFb4kx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 84EDEC4CEED; Tue, 8 Jul 2025 08:14:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1751962499; bh=SPNT0DiGS8PGJDpF7qZQ/FP0xlliIFg7X5Aiozh5qx8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ijbFb4kxqyuW9MMXBwMHCH70yzRdOpzwdTQHC2zTOjMjfQzGRRlHptd0me+4t3AdC QdEm/yLussmfkV4oouKVZlF7z86ForCJ+/FsrwxXRy9bon87hR4drefmVTAIZO1d5Z JR188eyBI4xWzJYSQQxlPnu080jLAL4wa2J21EHs= Date: Tue, 8 Jul 2025 10:14:57 +0200 From: Greg Kroah-Hartman To: Thomas Zimmermann Cc: linux-kernel@vger.kernel.org, Maarten Lankhorst , Maxime Ripard , David Airlie , Simona Vetter , dri-devel@lists.freedesktop.org, Lyude Paul Subject: Re: [PATCH v5] drm/vgem/vgem_drv convert to use faux_device Message-ID: <2025070850-tiger-fabric-bc74@gregkh> References: <2025070114-iron-shiny-b92e@gregkh> <42d0f819-87ae-44d0-a9c5-ae4fa91b1227@suse.de> <2025070231-prism-unlatch-e99e@gregkh> <2f27e1f2-5c55-43a7-b204-575eb88da168@suse.de> 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: <2f27e1f2-5c55-43a7-b204-575eb88da168@suse.de> On Mon, Jul 07, 2025 at 03:52:32PM +0200, Thomas Zimmermann wrote: > Hi > > Am 02.07.25 um 09:49 schrieb Greg Kroah-Hartman: > > On Wed, Jul 02, 2025 at 09:36:40AM +0200, Thomas Zimmermann wrote: > > > Hi > > > > > > Am 01.07.25 um 12:51 schrieb Greg Kroah-Hartman: > > > > The vgem driver does not need to create a platform device, as there is > > > > no real platform resources associated it, it only did so because it was > > > > simple to do that in order to get a device to use for resource > > > > management of drm resources. Change the driver to use the faux device > > > > instead as this is NOT a real platform device. > > > > > > > > Cc: Maarten Lankhorst > > > > Cc: Maxime Ripard > > > > Cc: David Airlie > > > > Cc: Simona Vetter > > > > Cc: dri-devel@lists.freedesktop.org > > > > Reviewed-by: Thomas Zimmermann > > > > Reviewed-by: Lyude Paul > > > > Signed-off-by: Greg Kroah-Hartman > > > > --- > > > > v5: - rebased against 6.16-rc4 and resent as it seems to have been lost > > > Not lost, but thanks for the update. This patch and the one for vkms depend > > > on "drm/gem-shmem: Do not map s/g table by default". [1] It'll land soon and > > > the faux_device updates soon after. > > > > > > Best regards > > > Thomas > > > > > > [1] https://patchwork.freedesktop.org/series/150968/ > > Great, thanks for letting me know. > > This patch and the one for vkms have been merged into DRM trees. They should > show up in upstream in one of the next merge windows. Wonderful, thank you!