diff options
author | hselasky <hselasky@FreeBSD.org> | 2010-10-04 21:24:10 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2010-10-04 21:24:10 +0000 |
commit | 8e57696cc5a2bf240a5f04faf5b49fcf3db430dc (patch) | |
tree | f15be4e9bc7fd86a065085ee838b83f3eb974396 /sys/dev/usb/controller/usb_controller.c | |
parent | 8b6b2864aad85b9ff6f9f508f8092ebf8e32850e (diff) | |
download | FreeBSD-src-8e57696cc5a2bf240a5f04faf5b49fcf3db430dc.zip FreeBSD-src-8e57696cc5a2bf240a5f04faf5b49fcf3db430dc.tar.gz |
The root mount hold reference was not released on USB controller
attach failures during boot. Fix this.
Approved by: thompsa (mentor)
Diffstat (limited to 'sys/dev/usb/controller/usb_controller.c')
-rw-r--r-- | sys/dev/usb/controller/usb_controller.c | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/sys/dev/usb/controller/usb_controller.c b/sys/dev/usb/controller/usb_controller.c index 1a9b474..46e4513 100644 --- a/sys/dev/usb/controller/usb_controller.c +++ b/sys/dev/usb/controller/usb_controller.c @@ -121,6 +121,16 @@ usb_probe(device_t dev) return (0); } +static void +usb_root_mount_rel(struct usb_bus *bus) +{ + if (bus->bus_roothold != NULL) { + DPRINTF("Releasing root mount hold %p\n", bus->bus_roothold); + root_mount_rel(bus->bus_roothold); + bus->bus_roothold = NULL; + } +} + /*------------------------------------------------------------------------* * usb_attach *------------------------------------------------------------------------*/ @@ -164,10 +174,7 @@ usb_detach(device_t dev) usb_callout_drain(&bus->power_wdog); /* Let the USB explore process detach all devices. */ - if (bus->bus_roothold != NULL) { - root_mount_rel(bus->bus_roothold); - bus->bus_roothold = NULL; - } + usb_root_mount_rel(bus); USB_BUS_LOCK(bus); if (usb_proc_msignal(&bus->explore_proc, @@ -244,10 +251,7 @@ usb_bus_explore(struct usb_proc_msg *pm) (udev->hub->explore) (udev); USB_BUS_LOCK(bus); } - if (bus->bus_roothold != NULL) { - root_mount_rel(bus->bus_roothold); - bus->bus_roothold = NULL; - } + usb_root_mount_rel(bus); } /*------------------------------------------------------------------------* @@ -353,6 +357,7 @@ usb_bus_attach(struct usb_proc_msg *pm) default: device_printf(bus->bdev, "Unsupported USB revision\n"); + usb_root_mount_rel(bus); return; } @@ -394,6 +399,7 @@ usb_bus_attach(struct usb_proc_msg *pm) if (err) { device_printf(bus->bdev, "Root HUB problem, error=%s\n", usbd_errstr(err)); + usb_root_mount_rel(bus); } /* set softc - we are ready */ |