aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2012-01-28 14:57:46 -0500
committerLuis Henriques <luis.henriques@canonical.com>2012-04-05 11:17:24 -0400
commit7ec6f3ae4e2660333eb515f3cf2eaae72516ceab (patch)
treeff2f1cb8889a76899c29f954b1206f12753ee6f5 /include/linux
parentba77a081a838a025b04df49bad6e2302c3e17f35 (diff)
udlfb: remove sysfs framebuffer device with USB .disconnect()
BugLink: http://bugs.launchpad.net/bugs/971808 commit ce880cb860f36694d2cdebfac9e6ae18176fe4c4 upstream. The USB graphics card driver delays the unregistering of the framebuffer device to a workqueue, which breaks the userspace visible remove uevent sequence. Recent userspace tools started to support USB graphics card hotplug out-of-the-box and rely on proper events sent by the kernel. The framebuffer device is a direct child of the USB interface which is removed immediately after the USB .disconnect() callback. But the fb device in /sys stays around until its final cleanup, at a time where all the parent devices have been removed already. To work around that, we remove the sysfs fb device directly in the USB .disconnect() callback and leave only the cleanup of the internal fb data to the delayed work. Before: add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb) add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb) add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/graphics/fb0 (graphics) remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb) remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb) remove /2-1.2:1.0/graphics/fb0 (graphics) After: add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb) add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb) add /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/graphics/fb1 (graphics) remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/graphics/fb1 (graphics) remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb) remove /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb) Tested-by: Bernie Thompson <bernie@plugable.com> Acked-by: Bernie Thompson <bernie@plugable.com> Signed-off-by: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/fb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h
index 6a827487717..f9d013d09bc 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -997,6 +997,7 @@ extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
997/* drivers/video/fbmem.c */ 997/* drivers/video/fbmem.c */
998extern int register_framebuffer(struct fb_info *fb_info); 998extern int register_framebuffer(struct fb_info *fb_info);
999extern int unregister_framebuffer(struct fb_info *fb_info); 999extern int unregister_framebuffer(struct fb_info *fb_info);
1000extern int unlink_framebuffer(struct fb_info *fb_info);
1000extern void remove_conflicting_framebuffers(struct apertures_struct *a, 1001extern void remove_conflicting_framebuffers(struct apertures_struct *a,
1001 const char *name, bool primary); 1002 const char *name, bool primary);
1002extern int fb_prepare_logo(struct fb_info *fb_info, int rotate); 1003extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);