<p dir="ltr">Hi Daniel, <br>
On 29-Feb-2016 9:18 pm, "Daniel Vetter" <<a href="mailto:daniel@ffwll.ch">daniel@ffwll.ch</a>> wrote:<br>
><br>
> On Tue, Feb 23, 2016 at 11:04:57AM +0900, Michel Dänzer wrote:<br>
> > On 23.02.2016 04:32, Alex Deucher wrote:<br>
> > > From: Christian König <<a href="mailto:christian.koenig@amd.com">christian.koenig@amd.com</a>><br>
> > ><br>
> > > A fence is never later than itself. This caused a bunch of overhead for AMDGPU.<br>
> > ><br>
> > > v2: simplify check as suggested by Michel.<br>
> > ><br>
> > > Signed-off-by: Christian König <<a href="mailto:christian.koenig@amd.com">christian.koenig@amd.com</a>><br>
> > > Reviewed-by: Michel Dänzer <<a href="mailto:michel.daenzer@amd.com">michel.daenzer@amd.com</a>><br>
> > > Reviewed-by: Alex Deucher <<a href="mailto:alexander.deucher@amd.com">alexander.deucher@amd.com</a>><br>
> > > Signed-off-by: Alex Deucher <<a href="mailto:alexander.deucher@amd.com">alexander.deucher@amd.com</a>><br>
> > > ---<br>
> > >  include/linux/fence.h | 2 +-<br>
> > >  1 file changed, 1 insertion(+), 1 deletion(-)<br>
> > ><br>
> > > diff --git a/include/linux/fence.h b/include/linux/fence.h<br>
> > > index bb52201..5aa95eb 100644<br>
> > > --- a/include/linux/fence.h<br>
> > > +++ b/include/linux/fence.h<br>
> > > @@ -292,7 +292,7 @@ static inline bool fence_is_later(struct fence *f1, struct fence *f2)<br>
> > >     if (WARN_ON(f1->context != f2->context))<br>
> > >             return false;<br>
> > ><br>
> > > -   return f1->seqno - f2->seqno < INT_MAX;<br>
> > > +   return (int)(f1->seqno - f2->seqno) > 0;<br>
> > >  }<br>
> > ><br>
> > >  /**<br>
> > ><br>
> ><br>
> > According to<br>
> ><br>
> >  scripts/<a href="http://get_maintainer.pl">get_maintainer.pl</a> include/linux/fence.h<br>
> ><br>
> > this patch should be sent to:<br>
> ><br>
> > Sumit Semwal <<a href="mailto:sumit.semwal@linaro.org">sumit.semwal@linaro.org</a>> (maintainer:DMA BUFFER SHARING FRAMEWORK)<br>
> > <a href="mailto:linux-media@vger.kernel.org">linux-media@vger.kernel.org</a> (open list:DMA BUFFER SHARING FRAMEWORK)<br>
> > <a href="mailto:dri-devel@lists.freedesktop.org">dri-devel@lists.freedesktop.org</a> (open list:DMA BUFFER SHARING FRAMEWORK)<br>
> > <a href="mailto:linaro-mm-sig@lists.linaro.org">linaro-mm-sig@lists.linaro.org</a> (moderated list:DMA BUFFER SHARING FRAMEWORK)<br>
> > <a href="mailto:linux-kernel@vger.kernel.org">linux-kernel@vger.kernel.org</a> (open list)<br>
> ><br>
> > I'd add at least Sumit and the linaro-mm-sig list.<br>
><br>
> Plus Maarten Lankhorst please, and Gustavo Padovan maybe. Not sure Sumit<br>
> is still all that active on dma-buf/fence maintainership ...<br>
Am here very much, though I do apologize I haven't actively provided review comments on the fence related series. I'll improve on that for sure! </p>
<p dir="ltr">Yes, it is still a good idea to add Maarten for fence stuff in the least.<br>
> -Daniel<br>
> --<br>
> Daniel Vetter<br>
> Software Engineer, Intel Corporation<br>
> <a href="http://blog.ffwll.ch">http://blog.ffwll.ch</a><br>
> _______________________________________________<br>
> dri-devel mailing list<br>
> <a href="mailto:dri-devel@lists.freedesktop.org">dri-devel@lists.freedesktop.org</a><br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/dri-devel">https://lists.freedesktop.org/mailman/listinfo/dri-devel</a><br>
</p>