[igt-dev] [PATCH i-g-t v2 2/4] lib/xe_ioctl: Return remaining timeout of user fence wait
Zbigniew Kempczyński
zbigniew.kempczynski at intel.com
Mon Jun 19 04:58:57 UTC 2023
On Wed, Jun 14, 2023 at 12:34:54PM +0200, Kamil Konieczny wrote:
> Hi Zbigniew,
>
> On 2023-06-02 at 18:20:09 +0200, Zbigniew Kempczyński wrote:
> > When user fence is signalled we may want to be aware how long did it
> > take. Return remaining timeout after fence was successfully signalled.
> >
> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>
> > Cc: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> > ---
> > lib/xe/xe_ioctl.c | 4 +++-
> > lib/xe/xe_ioctl.h | 2 +-
> > 2 files changed, 4 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c
> > index 3331046b46..e73c581f9f 100644
> > --- a/lib/xe/xe_ioctl.c
> > +++ b/lib/xe/xe_ioctl.c
> > @@ -401,7 +401,7 @@ void xe_exec_wait(int fd, uint32_t engine, uint64_t addr)
> > syncobj_destroy(fd, sync.handle);
> > }
> >
> > -void xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
> > +long xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
> -- ^^^^
> imho this should be uint64_t
Agree, long might be 32bit on 32bit archs.
I'll change it to int64_t as input is s64.
Thank you for the review.
--
Zbigniew
>
> Regards,
> Kamil
>
> > struct drm_xe_engine_class_instance *eci,
> > int64_t timeout)
> > {
> > @@ -417,6 +417,8 @@ void xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
> > };
> >
> > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
> > +
> > + return wait.timeout;
> > }
> >
> > /**
> > diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h
> > index 9b44892fe9..860de9af58 100644
> > --- a/lib/xe/xe_ioctl.h
> > +++ b/lib/xe/xe_ioctl.h
> > @@ -79,7 +79,7 @@ void xe_exec(int fd, struct drm_xe_exec *exec);
> > void xe_exec_sync(int fd, uint32_t engine, uint64_t addr,
> > struct drm_xe_sync *sync, uint32_t num_syncs);
> > void xe_exec_wait(int fd, uint32_t engine, uint64_t addr);
> > -void xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
> > +long xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
> > struct drm_xe_engine_class_instance *eci,
> > int64_t timeout);
> > long xe_wait_ufence_abstime(int fd, uint64_t *addr, uint64_t value,
> > --
> > 2.34.1
> >
More information about the igt-dev
mailing list