This is a note to let you know that I've just added the patch titled USB: cdc-acm: fix runtime PM imbalance at shutdown to the 3.10-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-cdc-acm-fix-runtime-pm-imbalance-at-shutdown.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 5292afa657d0e790b7479ad8eef9450c1e040b3d Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Mon, 26 May 2014 19:23:45 +0200 Subject: USB: cdc-acm: fix runtime PM imbalance at shutdown From: Johan Hovold <jhovold@xxxxxxxxx> commit 5292afa657d0e790b7479ad8eef9450c1e040b3d upstream. Make sure only to decrement the PM counters if they were actually incremented. Note that the USB PM counter, but not necessarily the driver core PM counter, is reset when the interface is unbound. Fixes: 11ea859d64b6 ("USB: additional power savings for cdc-acm devices that support remote wakeup") Signed-off-by: Johan Hovold <jhovold@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/class/cdc-acm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -604,12 +604,13 @@ static void acm_port_shutdown(struct tty struct urb *urb; struct acm_wb *wb; int i; + int pm_err; dev_dbg(&acm->control->dev, "%s\n", __func__); mutex_lock(&acm->mutex); if (!acm->disconnected) { - usb_autopm_get_interface(acm->control); + pm_err = usb_autopm_get_interface(acm->control); acm_set_control(acm, acm->ctrlout = 0); for (;;) { @@ -627,7 +628,8 @@ static void acm_port_shutdown(struct tty for (i = 0; i < acm->rx_buflimit; i++) usb_kill_urb(acm->read_urbs[i]); acm->control->needs_remote_wakeup = 0; - usb_autopm_put_interface(acm->control); + if (!pm_err) + usb_autopm_put_interface(acm->control); } mutex_unlock(&acm->mutex); } Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.10/usb-cdc-acm-fix-i-o-after-failed-open.patch queue-3.10/usb-cdc-acm-fix-write-and-resume-race.patch queue-3.10/usb-cdc-acm-fix-runtime-pm-for-control-messages.patch queue-3.10/usb-cdc-acm-fix-broken-runtime-suspend.patch queue-3.10/usb-cdc-acm-fix-runtime-pm-imbalance-at-shutdown.patch queue-3.10/usb-cdc-acm-fix-shutdown-and-suspend-race.patch queue-3.10/usb-cdc-acm-fix-write-and-suspend-race.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