staging: most: usb: move allocation of URB out of critical section
authorChristian Gromm <christian.gromm@microchip.com>
Wed, 27 May 2020 09:06:22 +0000 (11:06 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 May 2020 10:24:46 +0000 (12:24 +0200)
commit8bf56cfafac12de3087633470b25cada5bdfc7aa
tree77d9901782bc401befc09075048fa9546c0c04c1
parent2c069b61a843dc9c3d2296b54c4baa9730286530
staging: most: usb: move allocation of URB out of critical section

This patch puts the call to usb_alloc_urb() before the critical
section starts that is protected with the io_mutex lock. This is
to make the section as short as possible and to use the regular
GFP_KERNEL flag.

Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Link: https://lore.kernel.org/r/1590570387-27069-6-git-send-email-christian.gromm@microchip.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/usb/usb.c