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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 946BAC433FE for ; Sun, 20 Nov 2022 15:33:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B2F4F10E11C; Sun, 20 Nov 2022 15:33:35 +0000 (UTC) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id DE79810E11C for ; Sun, 20 Nov 2022 15:33:32 +0000 (UTC) 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 B0AE560BFC; Sun, 20 Nov 2022 15:33:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3FEC5C433C1; Sun, 20 Nov 2022 15:33:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1668958411; bh=STMHrZ2mtNxU/tb7z1foLodi3zD8eePmga7bh/b5WCY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rfe/fq71JqUfVsfDlR/lmuQagelaOZP0R3KsGEtttyJj3FSop0Vkb2OZAWiSzB9d/ ATf4y9tWTnYJnnqvTqC4fmDSjFpkhQWG4kGgfvmWHnVyxoQ0eu/0J8ifuBUwTHW3ZP bffzpTs0G5lM8u27K/oqV4WmGfCTRYgD3BNgFml0= Date: Sun, 20 Nov 2022 16:26:13 +0100 From: Greg Kroah-Hartman To: Oded Gabbay Subject: Re: [PATCH v4 0/4] new subsystem for compute accelerator devices Message-ID: References: <20221119204435.97113-1-ogabbay@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221119204435.97113-1-ogabbay@kernel.org> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: dri-devel@lists.freedesktop.org, Maciej Kwapulinski , Christopher Friedt , Kevin Hilman , Christoph Hellwig , Jagan Teki , Jason Gunthorpe , Jiho Chu , Jeffrey Hugo , Arnd Bergmann , John Hubbard , Jacek Lawrynowicz , Yuji Ishikawa , Tvrtko Ursulin , linux-kernel@vger.kernel.org, Thomas Zimmermann , Alex Deucher Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Sat, Nov 19, 2022 at 10:44:31PM +0200, Oded Gabbay wrote: > This is the fourth (and hopefully last) version of the patch-set to add the > new subsystem for compute accelerators. I removed the RFC headline as > I believe it is now ready for merging. > > Compare to v3, this patch-set contains one additional patch that adds > documentation regarding the accel subsystem. I hope it's good enough for > this stage. In addition, there were few very minor fixes according to > comments received on v3. > > The patches are in the following repo: > https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git/log/?h=accel_v4 > > As in v3, The HEAD of that branch is a commit adding a dummy driver that > registers an accel device using the new framework. This can be served > as a simple reference. Looks good, thanks for doing this: Reviewed-by: Greg Kroah-Hartman