staging: hv: fix netvsc sleeping while atomic
The channel callbacks are called directly from vmbus_event_dpc which runs in tasklet context. These callbacks need to use GFP_ATOMIC. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=16701 Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Timo Teräs <timo.teras@iki.fi> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
268eff909a
commit
d70c673153
|
@ -1279,7 +1279,7 @@ static void netvsc_channel_cb(void *context)
|
|||
/* ASSERT(device); */
|
||||
|
||||
packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char),
|
||||
GFP_KERNEL);
|
||||
GFP_ATOMIC);
|
||||
if (!packet)
|
||||
return;
|
||||
buffer = packet;
|
||||
|
|
Loading…
Reference in New Issue