Skip to content

Commit

Permalink
USB: gadget: core: adjust uevent timing on gadget unbind
Browse files Browse the repository at this point in the history
The KOBJ_CHANGE uevent is sent before gadget unbind is actually
executed, resulting in inaccurate uevent emitted at incorrect timing
(the uevent would have USB_UDC_DRIVER variable set while it would
soon be removed).
Move the KOBJ_CHANGE uevent to the end of the unbind function so that
uevent is sent only after the change has been made.

Fixes: 2ccea03 ("usb: gadget: introduce UDC Class")
Cc: [email protected]
Signed-off-by: Roy Luo <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Roy Luo authored and gregkh committed Dec 4, 2023
1 parent 33cc938 commit 73ea73a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/usb/gadget/udc/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1646,8 +1646,6 @@ static void gadget_unbind_driver(struct device *dev)

dev_dbg(&udc->dev, "unbinding gadget driver [%s]\n", driver->function);

kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE);

udc->allow_connect = false;
cancel_work_sync(&udc->vbus_work);
mutex_lock(&udc->connect_lock);
Expand All @@ -1667,6 +1665,8 @@ static void gadget_unbind_driver(struct device *dev)
driver->is_bound = false;
udc->driver = NULL;
mutex_unlock(&udc_lock);

kobject_uevent(&udc->dev.kobj, KOBJ_CHANGE);
}

/* ------------------------------------------------------------------------- */
Expand Down

0 comments on commit 73ea73a

Please sign in to comment.