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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2337BC74A5B for ; Thu, 23 Mar 2023 22:00:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231418AbjCWWAI (ORCPT ); Thu, 23 Mar 2023 18:00:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48444 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230075AbjCWWAA (ORCPT ); Thu, 23 Mar 2023 18:00:00 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e5ab]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id DD372199F5 for ; Thu, 23 Mar 2023 14:59:59 -0700 (PDT) Received: from [192.168.2.179] (109-252-120-116.nat.spd-mgts.ru [109.252.120.116]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: dmitry.osipenko) by madras.collabora.co.uk (Postfix) with ESMTPSA id 950556603100; Thu, 23 Mar 2023 21:59:57 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1679608798; bh=60wGBuJj45XCCI/s63PRczMsiWd8B2jtfeIEzwRScu8=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=Jz5fJubEMEXtOrf6sJBCf4YJWA2vEtn2rP3P1O9oLy7JGzXWG0Ck9gId5s90NQ/MD oTP1If2L+r+OiCWIpxMDWW0zIGmKwBT2tXqtWXezuZqqOvr+aQyKZfFPis9xuCmQgz 5ZmoKh2JLWwplhchtXxiahcDDd4lY4/YPGIDZTkYe/ey7e0c44apS2Qolu+JEhUjD1 pwIQ3t+Lr9FRAXUiFNLf/jn4htGnYBjyS6ksv9Ss5QymatYdCDU33kFUEiWpNJnma9 upPvZUmk83Fe9VXj2M6DR9w4vqcB3DFAsk2a1EszJbtqfgmHsW3X2aQQqDiOgIO6gB srwh2w1WMUBwg== Message-ID: Date: Fri, 24 Mar 2023 00:59:54 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [PATCH v3 2/2] drm/virtio: Support sync objects Content-Language: en-US From: Dmitry Osipenko To: David Airlie , Gerd Hoffmann , Gurchetan Singh , Chia-I Wu , Daniel Vetter , Rob Clark , =?UTF-8?B?TWFyZWsgT2zFocOhaw==?= , Pierre-Eric Pelloux-Prayer , Emil Velikov Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, kernel@collabora.com, virtualization@lists.linux-foundation.org References: <20230323190340.950875-1-dmitry.osipenko@collabora.com> <20230323190340.950875-3-dmitry.osipenko@collabora.com> In-Reply-To: <20230323190340.950875-3-dmitry.osipenko@collabora.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/23/23 22:03, Dmitry Osipenko wrote: > struct virtio_gpu_submit { > + struct virtio_gpu_submit_post_dep *post_deps; > + unsigned int num_out_syncobjs; > + > + struct drm_syncobj **in_syncobjs; > + unsigned int num_in_syncobjs; > + uint64_t *in_fence_ids; > + unsigned int num_in_fence_ids; The in_fence_ids actually doesn't belong to this patch. Missed to remove it on a rebase, will fix in v4. -- Best regards, Dmitry