Staging: hv: netvsc_drv: Directly invoke the function rndis_filter_receive()
Directly invoke the function rndis_filter_receive(). Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Abhishek Kane <v-abkane@microsoft.com> Signed-off-by: Hank Janssen <hjanssen@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
a25e1dbe9e
commit
ac6f785901
1 changed files with 1 additions and 3 deletions
|
@ -820,8 +820,6 @@ static void netvsc_receive(struct hv_device *device,
|
|||
int i, j;
|
||||
int count = 0, bytes_remain = 0;
|
||||
unsigned long flags;
|
||||
struct netvsc_driver *netvsc_drv =
|
||||
drv_to_netvscdrv(device->device.driver);
|
||||
|
||||
LIST_HEAD(listHead);
|
||||
|
||||
|
@ -983,7 +981,7 @@ static void netvsc_receive(struct hv_device *device,
|
|||
}
|
||||
|
||||
/* Pass it to the upper layer */
|
||||
netvsc_drv->recv_cb(device, netvsc_packet);
|
||||
rndis_filter_receive(device, netvsc_packet);
|
||||
|
||||
netvsc_receive_completion(netvsc_packet->
|
||||
completion.recv.recv_completion_ctx);
|
||||
|
|
Loading…
Reference in a new issue