OSDN Git Service

Revert "drm/etnaviv: reject timeouts with tv_nsec >= NSEC_PER_SEC"
authorArnd Bergmann <arnd@arndb.de>
Tue, 28 Jan 2020 13:01:52 +0000 (14:01 +0100)
committerArnd Bergmann <arnd@arndb.de>
Tue, 28 Jan 2020 22:24:23 +0000 (23:24 +0100)
This reverts commit 245595e83fbedda9e107eb0b37cec0ad07733778.

Guido Günther reported issues with this patch that broke existing
user space. Let's revert it for now and fix it properly later on.

Link: https://patchwork.kernel.org/patch/11291089/
https://lore.kernel.org/lkml/20200121114553.2667556-1-arnd@arndb.de/
Cc: Guido Günther <agx@sigxcpu.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/gpu/drm/etnaviv/etnaviv_drv.c

index 3eb0f92..ac26c08 100644 (file)
@@ -292,9 +292,6 @@ static int etnaviv_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
        if (args->op & ~(ETNA_PREP_READ | ETNA_PREP_WRITE | ETNA_PREP_NOSYNC))
                return -EINVAL;
 
-       if (args->timeout.tv_nsec > NSEC_PER_SEC)
-               return -EINVAL;
-
        obj = drm_gem_object_lookup(file, args->handle);
        if (!obj)
                return -ENOENT;
@@ -358,9 +355,6 @@ static int etnaviv_ioctl_wait_fence(struct drm_device *dev, void *data,
        if (args->flags & ~(ETNA_WAIT_NONBLOCK))
                return -EINVAL;
 
-       if (args->timeout.tv_nsec > NSEC_PER_SEC)
-               return -EINVAL;
-
        if (args->pipe >= ETNA_MAX_PIPES)
                return -EINVAL;
 
@@ -412,9 +406,6 @@ static int etnaviv_ioctl_gem_wait(struct drm_device *dev, void *data,
        if (args->flags & ~(ETNA_WAIT_NONBLOCK))
                return -EINVAL;
 
-       if (args->timeout.tv_nsec > NSEC_PER_SEC)
-               return -EINVAL;
-
        if (args->pipe >= ETNA_MAX_PIPES)
                return -EINVAL;