<div dir="ltr"><div><span class="">Regarding the following comment:</span></div><div><span class=""><br></span></div><div><span class="">> diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c<br>> index 1ea8790..b4332d4 100644<br>> --- a/drivers/gpu/drm/drm_fops.c<br>> +++ b/drivers/gpu/drm/drm_fops.c<br>> @@ -497,8 +497,6 @@ int drm_release(struct inode *inode, struct file *filp)<br>><br>>         if (!--dev->open_count) {<br>>                 retcode = drm_lastclose(dev);<br>> -               if (drm_device_is_unplugged(dev))<br>> -                       drm_put_dev(dev);<br><br></span>>Again, you cannot drop this without replacement! In this case, you<br>>really should wrap fops.release() from UDL and call into drm_release()<br>>before copying this unplug-logic.<br></div><div><br></div><div>Does this really work? drm_release() will release minor at the end, regardless of dev->open_count.</div><div><br></div><div>If minor is released, can I still safely get dev and call drm_put_dev(dev) afterwards?</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 9, 2016 at 4:44 AM, David Herrmann <span dir="ltr"><<a href="mailto:dh.herrmann@gmail.com" target="_blank">dh.herrmann@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi<br>
<span class=""><br>
On Fri, Feb 5, 2016 at 10:57 PM, Haixia Shi <<a href="mailto:hshi@chromium.org">hshi@chromium.org</a>> wrote:<br>
> Remove the general drm_device_is_unplugged() checks, and move the unplugged<br>
> flag handling logic into drm/udl. In general we want to keep driver-specific<br>
> logic out of common drm code.<br>
<br>
</span>I like the idea of moving this hack into udl. However, I don't think<br>
this patch is sufficient, see below for comments.<br>
<br>
Btw., hotplug might happen on other buses as well. It just happens<br>
that no-one tried pci/platform unplugging so far.. We used to have<br>
some patches flying around to make it work properly (with enter/leave<br>
markers), but no-one picked those up. But I like the idea of moving<br>
this unplugged marker into UDL, to make clear if someone else needs<br>
it, they better do it properly.<br>
<div><div class="h5"><br>
> Signed-off-by: Haixia Shi <<a href="mailto:hshi@chromium.org">hshi@chromium.org</a>><br>
> Reviewed-by: Stéphane Marchesin <<a href="mailto:marcheu@chromium.org">marcheu@chromium.org</a>><br>
> ---<br>
>  drivers/gpu/drm/drm_drv.c           |  6 ------<br>
>  drivers/gpu/drm/drm_fops.c          |  2 --<br>
>  drivers/gpu/drm/drm_gem.c           |  3 ---<br>
>  drivers/gpu/drm/drm_ioctl.c         |  3 ---<br>
>  drivers/gpu/drm/drm_vm.c            |  3 ---<br>
>  drivers/gpu/drm/udl/udl_connector.c |  2 +-<br>
>  drivers/gpu/drm/udl/udl_drv.c       |  1 +<br>
>  drivers/gpu/drm/udl/udl_drv.h       |  3 +++<br>
>  drivers/gpu/drm/udl/udl_fb.c        |  2 +-<br>
>  drivers/gpu/drm/udl/udl_main.c      | 15 +++++++++++++++<br>
>  include/drm/drmP.h                  | 14 --------------<br>
>  11 files changed, 21 insertions(+), 33 deletions(-)<br>
><br>
> diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c<br>
> index 167c8d3..f93ee12 100644<br>
> --- a/drivers/gpu/drm/drm_drv.c<br>
> +++ b/drivers/gpu/drm/drm_drv.c<br>
> @@ -376,9 +376,6 @@ struct drm_minor *drm_minor_acquire(unsigned int minor_id)<br>
><br>
>         if (!minor) {<br>
>                 return ERR_PTR(-ENODEV);<br>
> -       } else if (drm_device_is_unplugged(minor->dev)) {<br>
> -               drm_dev_unref(minor->dev);<br>
> -               return ERR_PTR(-ENODEV);<br>
>         }<br>
<br>
</div></div>You cannot just drop this without a replacement. You should add a<br>
drm_driver.open callback to UDL which checks for this.<br>
drm_minor_acquire() is only ever called from drm_stub_open(), and as<br>
such only from drm_open().<br>
<br>
Alternatively, you can provide fops.open from UDL and wrap drm_open().<br>
<span class=""><br>
><br>
>         return minor;<br>
> @@ -464,9 +461,6 @@ void drm_unplug_dev(struct drm_device *dev)<br>
>         drm_minor_unregister(dev, DRM_MINOR_CONTROL);<br>
><br>
>         mutex_lock(&drm_global_mutex);<br>
> -<br>
> -       drm_device_set_unplugged(dev);<br>
> -<br>
<br>
</span>You replace this by moving it into the caller of drm_unplug_dev().<br>
Sounds good to me. There has never been a real reason to put it<br>
underneath the global mutex, anyway.<br>
<span class=""><br>
>         if (dev->open_count == 0) {<br>
>                 drm_put_dev(dev);<br>
>         }<br>
> diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c<br>
> index 1ea8790..b4332d4 100644<br>
> --- a/drivers/gpu/drm/drm_fops.c<br>
> +++ b/drivers/gpu/drm/drm_fops.c<br>
> @@ -497,8 +497,6 @@ int drm_release(struct inode *inode, struct file *filp)<br>
><br>
>         if (!--dev->open_count) {<br>
>                 retcode = drm_lastclose(dev);<br>
> -               if (drm_device_is_unplugged(dev))<br>
> -                       drm_put_dev(dev);<br>
<br>
</span>Again, you cannot drop this without replacement! In this case, you<br>
really should wrap fops.release() from UDL and call into drm_release()<br>
before copying this unplug-logic.<br>
<span class=""><br>
>         }<br>
>         mutex_unlock(&drm_global_mutex);<br>
><br>
> diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c<br>
> index 2e8c77e..c622e32 100644<br>
> --- a/drivers/gpu/drm/drm_gem.c<br>
> +++ b/drivers/gpu/drm/drm_gem.c<br>
> @@ -900,9 +900,6 @@ int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma)<br>
>         struct drm_vma_offset_node *node;<br>
>         int ret;<br>
><br>
> -       if (drm_device_is_unplugged(dev))<br>
> -               return -ENODEV;<br>
> -<br>
<br>
</span>Rather than just dropping it, you better move it into udl_drm_gem_mmap().<br>
<span class=""><br>
>         drm_vma_offset_lock_lookup(dev->vma_offset_manager);<br>
>         node = drm_vma_offset_exact_lookup_locked(dev->vma_offset_manager,<br>
>                                                   vma->vm_pgoff,<br>
> diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c<br>
> index 8ce2a0c..f959074 100644<br>
> --- a/drivers/gpu/drm/drm_ioctl.c<br>
> +++ b/drivers/gpu/drm/drm_ioctl.c<br>
> @@ -695,9 +695,6 @@ long drm_ioctl(struct file *filp,<br>
><br>
>         dev = file_priv->minor->dev;<br>
><br>
> -       if (drm_device_is_unplugged(dev))<br>
> -               return -ENODEV;<br>
> -<br>
<br>
</span>You *must* provide a wrapper for fops.ioctl() in udl which does this check.<br>
<span class=""><br>
>         is_driver_ioctl = nr >= DRM_COMMAND_BASE && nr < DRM_COMMAND_END;<br>
><br>
>         if (is_driver_ioctl) {<br>
> diff --git a/drivers/gpu/drm/drm_vm.c b/drivers/gpu/drm/drm_vm.c<br>
> index f90bd5f..3a68be4 100644<br>
> --- a/drivers/gpu/drm/drm_vm.c<br>
> +++ b/drivers/gpu/drm/drm_vm.c<br>
> @@ -657,9 +657,6 @@ int drm_legacy_mmap(struct file *filp, struct vm_area_struct *vma)<br>
>         struct drm_device *dev = priv->minor->dev;<br>
>         int ret;<br>
><br>
> -       if (drm_device_is_unplugged(dev))<br>
> -               return -ENODEV;<br>
> -<br>
<br>
</span>This looks fine to me.<br>
<span class=""><br>
>         mutex_lock(&dev->struct_mutex);<br>
>         ret = drm_mmap_locked(filp, vma);<br>
>         mutex_unlock(&dev->struct_mutex);<br>
> diff --git a/drivers/gpu/drm/udl/udl_connector.c b/drivers/gpu/drm/udl/udl_connector.c<br>
> index 4709b54..b168f2c 100644<br>
> --- a/drivers/gpu/drm/udl/udl_connector.c<br>
> +++ b/drivers/gpu/drm/udl/udl_connector.c<br>
> @@ -96,7 +96,7 @@ static int udl_mode_valid(struct drm_connector *connector,<br>
>  static enum drm_connector_status<br>
>  udl_detect(struct drm_connector *connector, bool force)<br>
>  {<br>
> -       if (drm_device_is_unplugged(connector->dev))<br>
> +       if (udl_device_is_unplugged(connector->dev))<br>
>                 return connector_status_disconnected;<br>
>         return connector_status_connected;<br>
>  }<br>
> diff --git a/drivers/gpu/drm/udl/udl_drv.c b/drivers/gpu/drm/udl/udl_drv.c<br>
> index d5728ec..3cbafe7 100644<br>
> --- a/drivers/gpu/drm/udl/udl_drv.c<br>
> +++ b/drivers/gpu/drm/udl/udl_drv.c<br>
> @@ -97,6 +97,7 @@ static void udl_usb_disconnect(struct usb_interface *interface)<br>
>         drm_connector_unplug_all(dev);<br>
>         udl_fbdev_unplug(dev);<br>
>         udl_drop_usb(dev);<br>
> +       udl_device_set_unplugged(dev);<br>
>         drm_unplug_dev(dev);<br>
<br>
</span>This looks good.<br>
<div><div class="h5"><br>
>  }<br>
><br>
> diff --git a/drivers/gpu/drm/udl/udl_drv.h b/drivers/gpu/drm/udl/udl_drv.h<br>
> index 4a064ef..61e117a 100644<br>
> --- a/drivers/gpu/drm/udl/udl_drv.h<br>
> +++ b/drivers/gpu/drm/udl/udl_drv.h<br>
> @@ -65,6 +65,7 @@ struct udl_device {<br>
>         atomic_t bytes_identical; /* saved effort with backbuffer comparison */<br>
>         atomic_t bytes_sent; /* to usb, after compression including overhead */<br>
>         atomic_t cpu_kcycles_used; /* transpired during pixel processing */<br>
> +       atomic_t unplugged; /* device has been unplugged or gone away */<br>
>  };<br>
><br>
>  struct udl_gem_object {<br>
> @@ -140,6 +141,8 @@ int udl_handle_damage(struct udl_framebuffer *fb, int x, int y,<br>
>                       int width, int height);<br>
><br>
>  int udl_drop_usb(struct drm_device *dev);<br>
> +void udl_device_set_unplugged(struct drm_device *dev);<br>
> +int udl_device_is_unplugged(struct drm_device *dev);<br>
><br>
>  #define CMD_WRITE_RAW8   "\xAF\x60" /**< 8 bit raw write command. */<br>
>  #define CMD_WRITE_RL8    "\xAF\x61" /**< 8 bit run length command. */<br>
> diff --git a/drivers/gpu/drm/udl/udl_fb.c b/drivers/gpu/drm/udl/udl_fb.c<br>
> index 200419d..df1d53e 100644<br>
> --- a/drivers/gpu/drm/udl/udl_fb.c<br>
> +++ b/drivers/gpu/drm/udl/udl_fb.c<br>
> @@ -325,7 +325,7 @@ static int udl_fb_open(struct fb_info *info, int user)<br>
>         struct udl_device *udl = dev->dev_private;<br>
><br>
>         /* If the USB device is gone, we don't accept new opens */<br>
> -       if (drm_device_is_unplugged(udl->ddev))<br>
> +       if (udl_device_is_unplugged(udl->ddev))<br>
>                 return -ENODEV;<br>
><br>
>         ufbdev->fb_count++;<br>
> diff --git a/drivers/gpu/drm/udl/udl_main.c b/drivers/gpu/drm/udl/udl_main.c<br>
> index 33dbfb2..f6028a4 100644<br>
> --- a/drivers/gpu/drm/udl/udl_main.c<br>
> +++ b/drivers/gpu/drm/udl/udl_main.c<br>
> @@ -350,3 +350,18 @@ int udl_driver_unload(struct drm_device *dev)<br>
>         kfree(udl);<br>
>         return 0;<br>
>  }<br>
> +<br>
> +void udl_device_set_unplugged(struct drm_device *dev)<br>
> +{<br>
> +       struct udl_device *udl = dev->dev_private;<br>
> +       smp_wmb();<br>
> +       atomic_set(&udl->unplugged, 1);<br>
> +}<br>
> +<br>
> +int udl_device_is_unplugged(struct drm_device *dev)<br>
> +{<br>
> +       struct udl_device *udl = dev->dev_private;<br>
> +       int ret = atomic_read(&udl->unplugged);<br>
> +       smp_rmb();<br>
> +       return ret;<br>
> +}<br>
<br>
</div></div>This looks fine to me.<br>
<br>
Please make sure to wrap most of the file_operations callbacks in UDL<br>
and protect them with the "unplugged" check. Yes, we all know that<br>
this is racy, and always has been. However, it is still better than<br>
nothing. So please don't just drop them without any explanation!<br>
<br>
Thanks<br>
David<br>
<div><div class="h5"><br>
> diff --git a/include/drm/drmP.h b/include/drm/drmP.h<br>
> index d7162cf..40c6099 100644<br>
> --- a/include/drm/drmP.h<br>
> +++ b/include/drm/drmP.h<br>
> @@ -748,7 +748,6 @@ struct drm_device {<br>
>         struct drm_minor *control;              /**< Control node */<br>
>         struct drm_minor *primary;              /**< Primary node */<br>
>         struct drm_minor *render;               /**< Render node */<br>
> -       atomic_t unplugged;                     /**< Flag whether dev is dead */<br>
>         struct inode *anon_inode;               /**< inode for private address-space */<br>
>         char *unique;                           /**< unique name of the device */<br>
>         /*@} */<br>
> @@ -879,19 +878,6 @@ static __inline__ int drm_core_check_feature(struct drm_device *dev,<br>
>         return ((dev->driver->driver_features & feature) ? 1 : 0);<br>
>  }<br>
><br>
> -static inline void drm_device_set_unplugged(struct drm_device *dev)<br>
> -{<br>
> -       smp_wmb();<br>
> -       atomic_set(&dev->unplugged, 1);<br>
> -}<br>
> -<br>
> -static inline int drm_device_is_unplugged(struct drm_device *dev)<br>
> -{<br>
> -       int ret = atomic_read(&dev->unplugged);<br>
> -       smp_rmb();<br>
> -       return ret;<br>
> -}<br>
> -<br>
>  static inline bool drm_is_render_client(const struct drm_file *file_priv)<br>
>  {<br>
>         return file_priv->minor->type == DRM_MINOR_RENDER;<br>
> --<br>
> 2.7.0.rc3.207.g0ac5344<br>
><br>
</div></div>> _______________________________________________<br>
> dri-devel mailing list<br>
> <a href="mailto:dri-devel@lists.freedesktop.org">dri-devel@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/dri-devel" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/dri-devel</a><br>
</blockquote></div><br></div></div>