This is a note to let you know that I've just added the patch titled USB: mos7840: fix memory leak in open to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-mos7840-fix-memory-leak-in-open.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 3c574b0665d5f20a7e67a96e3ed7cdfaa46c39b7 Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Mon, 1 Jul 2013 14:03:33 +0200 Subject: USB: mos7840: fix memory leak in open From: Johan Hovold <jhovold@xxxxxxxxx> commit 5f8a2e68b679b41cc8e9b642f2f5aa45dd678641 upstream. Allocated urbs and buffers were never freed on errors in open. Signed-off-by: Johan Hovold <jhovold@xxxxxxxxx> [bwh: Backported to 3.2: adjust context] Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Cc: Yang Yingliang <yangyingliang@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/mos7840.c | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -923,20 +923,20 @@ static int mos7840_open(struct tty_struc status = mos7840_get_reg_sync(port, mos7840_port->SpRegOffset, &Data); if (status < 0) { dbg("Reading Spreg failed"); - return -1; + goto err; } Data |= 0x80; status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data); if (status < 0) { dbg("writing Spreg failed"); - return -1; + goto err; } Data &= ~0x80; status = mos7840_set_reg_sync(port, mos7840_port->SpRegOffset, Data); if (status < 0) { dbg("writing Spreg failed"); - return -1; + goto err; } /* End of block to be checked */ @@ -945,7 +945,7 @@ static int mos7840_open(struct tty_struc &Data); if (status < 0) { dbg("Reading Controlreg failed"); - return -1; + goto err; } Data |= 0x08; /* Driver done bit */ Data |= 0x20; /* rx_disable */ @@ -953,7 +953,7 @@ static int mos7840_open(struct tty_struc mos7840_port->ControlRegOffset, Data); if (status < 0) { dbg("writing Controlreg failed"); - return -1; + goto err; } /* do register settings here */ /* Set all regs to the device default values. */ @@ -964,21 +964,21 @@ static int mos7840_open(struct tty_struc status = mos7840_set_uart_reg(port, INTERRUPT_ENABLE_REGISTER, Data); if (status < 0) { dbg("disabling interrupts failed"); - return -1; + goto err; } /* Set FIFO_CONTROL_REGISTER to the default value */ Data = 0x00; status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data); if (status < 0) { dbg("Writing FIFO_CONTROL_REGISTER failed"); - return -1; + goto err; } Data = 0xcf; status = mos7840_set_uart_reg(port, FIFO_CONTROL_REGISTER, Data); if (status < 0) { dbg("Writing FIFO_CONTROL_REGISTER failed"); - return -1; + goto err; } Data = 0x03; @@ -1134,7 +1134,15 @@ static int mos7840_open(struct tty_struc dbg ("%s leave", __func__); return 0; - +err: + for (j = 0; j < NUM_URBS; ++j) { + urb = mos7840_port->write_urb_pool[j]; + if (!urb) + continue; + kfree(urb->transfer_buffer); + usb_free_urb(urb); + } + return status; } /***************************************************************************** Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.4/usb-mos7840-fix-memory-leak-in-open.patch queue-3.4/usb-oti6858-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_ti-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-pl2303-fix-device-initialisation-at-open.patch queue-3.4/usb-ch341-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_edgeport-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ftdi_sio-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ark3116-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-pl2303-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-cypress_m8-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ssu100-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-keyspan-fix-null-deref-at-disconnect-and-release.patch queue-3.4/usb-mct_u232-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-spcp8x5-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-adutux-fix-big-endian-device-type-reporting.patch queue-3.4/usb-ti_usb_3410_5052-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-spcp8x5-fix-device-initialisation-at-open.patch queue-3.4/usb-mos7840-fix-race-in-register-handling.patch queue-3.4/usb-ftdi_sio-fixed-handling-of-unsupported-csize-setting.patch queue-3.4/usb-mos7840-fix-broken-tiocmiwait.patch queue-3.4/usb-serial-fix-hang-when-opening-port.patch queue-3.4/usb-mos7840-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ti_usb_3410_5052-fix-big-endian-firmware-handling.patch queue-3.4/usb-serial-add-modem-status-change-wait-queue.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html