On Tuesday, June 18, 2013 5:43 AM Wei Yongjun wrote:
> From: Wei Yongjun <yongjun_...@trendmicro.com.cn>
> 
> Add the missing unlock before return from function ncm_alloc() in the
> error handling case.
> 
> Introduced by commit e730660378be92b83288b59b824ccdace5cd2652.
> (usb: gadget: f_ncm: add configfs support)
> 
> Signed-off-by: Wei Yongjun <yongjun_...@trendmicro.com.cn>

Thank you for pointing this out,

Acked-by: Andrzej Pietrasiewicz <andrze...@samsung.com>

> ---
>  drivers/usb/gadget/f_ncm.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/usb/gadget/f_ncm.c b/drivers/usb/gadget/f_ncm.c index
> 47a5724..952177f 100644
> --- a/drivers/usb/gadget/f_ncm.c
> +++ b/drivers/usb/gadget/f_ncm.c
> @@ -1403,6 +1403,7 @@ struct usb_function *ncm_alloc(struct
> usb_function_instance *fi)
>                                     sizeof(ncm->ethaddr));
>       if (status < 12) { /* strlen("01234567890a") */
>               kfree(ncm);
> +             mutex_unlock(&opts->lock);
>               return ERR_PTR(-EINVAL);
>       }
>       ncm_string_defs[STRING_MAC_IDX].s = ncm->ethaddr;


--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to