Staging: hv: netvsc_drv: Directly invoke the function rndis_filter_receive()
authorK. Y. Srinivasan <kys@microsoft.com>
Fri, 13 May 2011 02:34:58 +0000 (19:34 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 17 May 2011 19:27:17 +0000 (12:27 -0700)
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>
drivers/staging/hv/netvsc.c

index 5ca35ad..85e7ea6 100644 (file)
@@ -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);