From: Vitaly Kuznetsov Date: Fri, 3 Jun 2016 15:50:58 +0000 (+0200) Subject: hv_netvsc: remove redundant assignment in netvsc_recv_callback() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4baa994dc93287321c1b712d98cb6f721652891b;p=linux-beck.git hv_netvsc: remove redundant assignment in netvsc_recv_callback() net_device_ctx is assigned in the very beginning of the function and 'net' pointer doesn't change. Signed-off-by: Vitaly Kuznetsov Signed-off-by: David S. Miller --- diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv/netvsc_drv.c index 5ac1267b393f..58cb5fedb41f 100644 --- a/drivers/net/hyperv/netvsc_drv.c +++ b/drivers/net/hyperv/netvsc_drv.c @@ -701,7 +701,6 @@ int netvsc_recv_callback(struct hv_device *device_obj, } vf_injection_done: - net_device_ctx = netdev_priv(net); rx_stats = this_cpu_ptr(net_device_ctx->rx_stats); /* Allocate a skb - TODO direct I/O to pages? */