Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-22 Thread Rob Clark
On Wed, Sep 22, 2021 at 7:31 AM Andrey Grodzovsky wrote: > > > On 2021-09-21 11:32 p.m., Rob Clark wrote: > > On Tue, Sep 21, 2021 at 7:18 PM Andrey Grodzovsky > > wrote: > >> > >> On 2021-09-21 4:47 p.m., Rob Clark wrote: > >>> On Tue, Sep 21, 2021 at 1:09 PM Andrey Grodzovsky > >>> wrote: > >>

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-22 Thread Andrey Grodzovsky
On 2021-09-21 11:32 p.m., Rob Clark wrote: On Tue, Sep 21, 2021 at 7:18 PM Andrey Grodzovsky wrote: On 2021-09-21 4:47 p.m., Rob Clark wrote: On Tue, Sep 21, 2021 at 1:09 PM Andrey Grodzovsky wrote: On 2021-09-03 2:47 p.m., Rob Clark wrote: From: Rob Clark As the finished fence is the

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Rob Clark
On Tue, Sep 21, 2021 at 7:18 PM Andrey Grodzovsky wrote: > > > On 2021-09-21 4:47 p.m., Rob Clark wrote: > > On Tue, Sep 21, 2021 at 1:09 PM Andrey Grodzovsky > > wrote: > >> On 2021-09-03 2:47 p.m., Rob Clark wrote: > >> > >>> From: Rob Clark > >>> > >>> As the finished fence is the one that is

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Andrey Grodzovsky
On 2021-09-21 4:47 p.m., Rob Clark wrote: On Tue, Sep 21, 2021 at 1:09 PM Andrey Grodzovsky wrote: On 2021-09-03 2:47 p.m., Rob Clark wrote: From: Rob Clark As the finished fence is the one that is exposed to userspace, and therefore the one that other operations, like atomic update, woul

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Rob Clark
On Tue, Sep 21, 2021 at 1:09 PM Andrey Grodzovsky wrote: > > On 2021-09-03 2:47 p.m., Rob Clark wrote: > > > From: Rob Clark > > > > As the finished fence is the one that is exposed to userspace, and > > therefore the one that other operations, like atomic update, would > > block on, we need to p

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Andrey Grodzovsky
On 2021-09-03 2:47 p.m., Rob Clark wrote: From: Rob Clark As the finished fence is the one that is exposed to userspace, and therefore the one that other operations, like atomic update, would block on, we need to propagate the deadline from from the finished fence to the actual hw fence. v2:

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Christian König
Am 21.09.21 um 18:35 schrieb Rob Clark: On Tue, Sep 21, 2021 at 8:57 AM Rob Clark wrote: On Wed, Sep 8, 2021 at 10:45 AM Daniel Vetter wrote: On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: From: Rob Clark As the finished fence is the one that is exposed to userspace, and theref

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Rob Clark
On Tue, Sep 21, 2021 at 8:57 AM Rob Clark wrote: > > On Wed, Sep 8, 2021 at 10:45 AM Daniel Vetter wrote: > > > > On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: > > > From: Rob Clark > > > > > > As the finished fence is the one that is exposed to userspace, and > > > therefore the on

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-21 Thread Rob Clark
On Wed, Sep 8, 2021 at 10:45 AM Daniel Vetter wrote: > > On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: > > From: Rob Clark > > > > As the finished fence is the one that is exposed to userspace, and > > therefore the one that other operations, like atomic update, would > > block on, w

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-14 Thread Daniel Vetter
On Thu, Sep 09, 2021 at 08:22:59AM +0200, Christian König wrote: > Am 08.09.21 um 19:45 schrieb Daniel Vetter: > > On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: > > > From: Rob Clark > > > > > > As the finished fence is the one that is exposed to userspace, and > > > therefore the on

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-08 Thread Christian König
Am 08.09.21 um 19:45 schrieb Daniel Vetter: On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: From: Rob Clark As the finished fence is the one that is exposed to userspace, and therefore the one that other operations, like atomic update, would block on, we need to propagate the deadli

Re: [PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-08 Thread Daniel Vetter
On Fri, Sep 03, 2021 at 11:47:55AM -0700, Rob Clark wrote: > From: Rob Clark > > As the finished fence is the one that is exposed to userspace, and > therefore the one that other operations, like atomic update, would > block on, we need to propagate the deadline from from the finished > fence to

[PATCH v3 4/9] drm/scheduler: Add fence deadline support

2021-09-03 Thread Rob Clark
From: Rob Clark As the finished fence is the one that is exposed to userspace, and therefore the one that other operations, like atomic update, would block on, we need to propagate the deadline from from the finished fence to the actual hw fence. v2: Split into drm_sched_fence_set_parent() (ckoe