USB: fix interface sysfs file-creation bug
authorAlan Stern <stern@rowland.harvard.edu>
Fri, 19 Oct 2007 13:51:58 +0000 (09:51 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 25 Oct 2007 19:18:44 +0000 (12:18 -0700)
commit439a903a9663c0caa8094f3907ca60069d6c36e7
treeed6da5090918e824a2376f518a605e78ab0e5758
parentb22817b3c81cdb18ffe3d2debfee968731a8b5f4
USB: fix interface sysfs file-creation bug

This patch (as1005) fixes a rather subtle problem.  When
usb_set_configuration() registers the interfaces and their files in
sysfs, it doesn't expect those files to exist already.  But when an
interface is registered, its driver may call usb_set_interface() and
thereby cause the sysfs files to be created.  The result is an error
when usb_set_configuration() goes on to create those same files again.

The (not-so-great) solution is to have usb_set_configuration() remove
any existing files before creating them.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/core/message.c