Commit a00848cc authored by Jean Tourrilhes's avatar Jean Tourrilhes Committed by Linus Torvalds

[PATCH] irda-usb probe fix

ir260_usb_probe-4.diff :
~~~~~~~~~~~~~~~~~~~~~~
		<Patch from Oliver Neukum and Daniele Bellucci>
	o [CORRECT] minor fix to the probe failure path of irda-usb.
parent 1f51b62a
...@@ -1410,8 +1410,8 @@ static inline struct irda_class_desc *irda_usb_find_class_desc(struct usb_interf ...@@ -1410,8 +1410,8 @@ static inline struct irda_class_desc *irda_usb_find_class_desc(struct usb_interf
* This routine is called by the USB subsystem for each new device * This routine is called by the USB subsystem for each new device
* in the system. We need to check if the device is ours, and in * in the system. We need to check if the device is ours, and in
* this case start handling it. * this case start handling it.
* Note : it might be worth protecting this function by a global * The USB layer protect us from reentrancy (via BKL), so we don't need
* spinlock... Or not, because maybe USB already deal with that... * to spinlock in there... Jean II
*/ */
static int irda_usb_probe(struct usb_interface *intf, static int irda_usb_probe(struct usb_interface *intf,
const struct usb_device_id *id) const struct usb_device_id *id)
...@@ -1421,7 +1421,7 @@ static int irda_usb_probe(struct usb_interface *intf, ...@@ -1421,7 +1421,7 @@ static int irda_usb_probe(struct usb_interface *intf,
struct usb_host_interface *interface; struct usb_host_interface *interface;
struct irda_class_desc *irda_desc; struct irda_class_desc *irda_desc;
int ret; int ret;
int i; int i; /* Driver instance index / Rx URB index */
/* Note : the probe make sure to call us only for devices that /* Note : the probe make sure to call us only for devices that
* matches the list of dongle (top of the file). So, we * matches the list of dongle (top of the file). So, we
...@@ -1467,30 +1467,26 @@ static int irda_usb_probe(struct usb_interface *intf, ...@@ -1467,30 +1467,26 @@ static int irda_usb_probe(struct usb_interface *intf,
for (i = 0; i < IU_MAX_RX_URBS; i++) { for (i = 0; i < IU_MAX_RX_URBS; i++) {
self->rx_urb[i] = usb_alloc_urb(0, GFP_KERNEL); self->rx_urb[i] = usb_alloc_urb(0, GFP_KERNEL);
if (!self->rx_urb[i]) { if (!self->rx_urb[i]) {
int j; ret = -ENOMEM;
for (j = 0; j < i; j++) goto err_out_1;
usb_free_urb(self->rx_urb[j]);
return -ENOMEM;
} }
} }
self->tx_urb = usb_alloc_urb(0, GFP_KERNEL); self->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!self->tx_urb) { if (!self->tx_urb) {
for (i = 0; i < IU_MAX_RX_URBS; i++) ret = -ENOMEM;
usb_free_urb(self->rx_urb[i]); goto err_out_1;
return -ENOMEM;
} }
self->speed_urb = usb_alloc_urb(0, GFP_KERNEL); self->speed_urb = usb_alloc_urb(0, GFP_KERNEL);
if (!self->speed_urb) { if (!self->speed_urb) {
for (i = 0; i < IU_MAX_RX_URBS; i++) ret = -ENOMEM;
usb_free_urb(self->rx_urb[i]); goto err_out_2;
usb_free_urb(self->tx_urb);
return -ENOMEM;
} }
/* Is this really necessary? */ /* Is this really necessary? */
if (usb_set_configuration (dev, dev->config[0].desc.bConfigurationValue) < 0) { if (usb_set_configuration (dev, dev->config[0].desc.bConfigurationValue) < 0) {
err("set_configuration failed"); err("set_configuration failed");
return -EIO; ret = -EIO;
goto err_out_3;
} }
/* Is this really necessary? */ /* Is this really necessary? */
...@@ -1510,8 +1506,8 @@ static int irda_usb_probe(struct usb_interface *intf, ...@@ -1510,8 +1506,8 @@ static int irda_usb_probe(struct usb_interface *intf,
break; break;
default: default:
IRDA_DEBUG(0, "%s(), Unknown error %d\n", __FUNCTION__, ret); IRDA_DEBUG(0, "%s(), Unknown error %d\n", __FUNCTION__, ret);
return -EIO; ret = -EIO;
break; goto err_out_3;
} }
/* Find our endpoints */ /* Find our endpoints */
...@@ -1519,13 +1515,15 @@ static int irda_usb_probe(struct usb_interface *intf, ...@@ -1519,13 +1515,15 @@ static int irda_usb_probe(struct usb_interface *intf,
if(!irda_usb_parse_endpoints(self, interface->endpoint, if(!irda_usb_parse_endpoints(self, interface->endpoint,
interface->desc.bNumEndpoints)) { interface->desc.bNumEndpoints)) {
ERROR("%s(), Bogus endpoints...\n", __FUNCTION__); ERROR("%s(), Bogus endpoints...\n", __FUNCTION__);
return -EIO; ret = -EIO;
goto err_out_3;
} }
/* Find IrDA class descriptor */ /* Find IrDA class descriptor */
irda_desc = irda_usb_find_class_desc(intf); irda_desc = irda_usb_find_class_desc(intf);
ret = -ENODEV;
if (irda_desc == NULL) if (irda_desc == NULL)
return -ENODEV; goto err_out_3;
self->irda_desc = irda_desc; self->irda_desc = irda_desc;
self->present = 1; self->present = 1;
...@@ -1535,10 +1533,23 @@ static int irda_usb_probe(struct usb_interface *intf, ...@@ -1535,10 +1533,23 @@ static int irda_usb_probe(struct usb_interface *intf,
self->usbintf = intf; self->usbintf = intf;
ret = irda_usb_open(self); ret = irda_usb_open(self);
if (ret) if (ret)
return -ENOMEM; goto err_out_3;
usb_set_intfdata(intf, self); usb_set_intfdata(intf, self);
return 0; return 0;
err_out_3:
/* Free all urbs that we may have created */
usb_free_urb(self->speed_urb);
err_out_2:
usb_free_urb(self->tx_urb);
err_out_1:
for (i = 0; i < IU_MAX_RX_URBS; i++) {
if (self->rx_urb[i])
usb_free_urb(self->rx_urb[i]);
}
return ret;
} }
/*------------------------------------------------------------------*/ /*------------------------------------------------------------------*/
...@@ -1630,10 +1641,13 @@ static struct usb_driver irda_driver = { ...@@ -1630,10 +1641,13 @@ static struct usb_driver irda_driver = {
/* /*
* Module insertion * Module insertion
*/ */
int __init usb_irda_init(void) static int __init usb_irda_init(void)
{ {
if (usb_register(&irda_driver) < 0) int ret;
return -1;
ret = usb_register(&irda_driver);
if (ret < 0)
return ret;
MESSAGE("USB IrDA support registered\n"); MESSAGE("USB IrDA support registered\n");
return 0; return 0;
...@@ -1644,7 +1658,7 @@ module_init(usb_irda_init); ...@@ -1644,7 +1658,7 @@ module_init(usb_irda_init);
/* /*
* Module removal * Module removal
*/ */
void __exit usb_irda_cleanup(void) static void __exit usb_irda_cleanup(void)
{ {
struct irda_usb_cb *irda = NULL; struct irda_usb_cb *irda = NULL;
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment