]> git.baikalelectronics.ru Git - kernel.git/commit
usbnet: fix memory allocation in helpers
authorOliver Neukum <oneukum@suse.com>
Tue, 28 Jun 2022 09:35:17 +0000 (11:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 7 Jul 2022 15:53:26 +0000 (17:53 +0200)
commit4621e67d88c6329a89eff55bd61aaea102296c60
tree2a009857c5393561b8ddb1441eec147193125c0e
parentd8cbe91af5ebb93fc9e4042de27f3c2154cd2287
usbnet: fix memory allocation in helpers

commit 7931e0915b36ab79fe90a2c2c41c9fd4c4234876 upstream.

usbnet provides some helper functions that are also used in
the context of reset() operations. During a reset the other
drivers on a device are unable to operate. As that can be block
drivers, a driver for another interface cannot use paging
in its memory allocations without risking a deadlock.
Use GFP_NOIO in the helpers.

Fixes: f950829cdcc42 ("usbnet: introduce usbnet 3 command helpers")
Signed-off-by: Oliver Neukum <oneukum@suse.com>
Link: https://lore.kernel.org/r/20220628093517.7469-1-oneukum@suse.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/usb/usbnet.c