* [PATCH] usbnet: fix memory allocation in helpers
@ 2022-06-28 9:35 Oliver Neukum
2022-06-30 3:40 ` patchwork-bot+netdevbpf
0 siblings, 1 reply; 2+ messages in thread
From: Oliver Neukum @ 2022-06-28 9:35 UTC (permalink / raw)
To: davem, netdev, kuba, linux-usb; +Cc: Oliver Neukum
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: 877bd862f32b8 ("usbnet: introduce usbnet 3 command helpers")
Signed-off-by: Oliver Neukum <oneukum@suse.com>
---
drivers/net/usb/usbnet.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
index c66d2a097b0c..02b915b1e142 100644
--- a/drivers/net/usb/usbnet.c
+++ b/drivers/net/usb/usbnet.c
@@ -2004,7 +2004,7 @@ static int __usbnet_read_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
cmd, reqtype, value, index, size);
if (size) {
- buf = kmalloc(size, GFP_KERNEL);
+ buf = kmalloc(size, GFP_NOIO);
if (!buf)
goto out;
}
@@ -2036,7 +2036,7 @@ static int __usbnet_write_cmd(struct usbnet *dev, u8 cmd, u8 reqtype,
cmd, reqtype, value, index, size);
if (data) {
- buf = kmemdup(data, size, GFP_KERNEL);
+ buf = kmemdup(data, size, GFP_NOIO);
if (!buf)
goto out;
} else {
--
2.35.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] usbnet: fix memory allocation in helpers
2022-06-28 9:35 [PATCH] usbnet: fix memory allocation in helpers Oliver Neukum
@ 2022-06-30 3:40 ` patchwork-bot+netdevbpf
0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-06-30 3:40 UTC (permalink / raw)
To: Oliver Neukum; +Cc: davem, netdev, kuba, linux-usb
Hello:
This patch was applied to netdev/net.git (master)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 28 Jun 2022 11:35:17 +0200 you wrote:
> 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.
>
> [...]
Here is the summary with links:
- usbnet: fix memory allocation in helpers
https://git.kernel.org/netdev/net/c/e65af5403e46
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-06-30 3:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-28 9:35 [PATCH] usbnet: fix memory allocation in helpers Oliver Neukum
2022-06-30 3:40 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).