]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
Staging: hv: moved assignments out of if conditions
authorTimo von Holtz <tvh@informatik.uni-kiel.de>
Tue, 8 Feb 2011 14:55:49 +0000 (15:55 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 9 Feb 2011 20:11:55 +0000 (12:11 -0800)
Moved all assignments in if conditions to the preceeding line

Signed-off-by: Timo von Holtz <tvh@informatik.uni-kiel.de>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/netvsc_drv.c

index 95fa810255edd0b0bdef8a68fcdd971c644c70c6..6b8fd0c2b0da0248ec193a134c5bf0a7bbe77edb 100644 (file)
@@ -126,7 +126,8 @@ static void netvsc_xmit_completion(void *context)
 
                dev_kfree_skb_any(skb);
 
-               if ((net_device_ctx->avail += num_pages) >= PACKET_PAGES_HIWATER)
+               net_device_ctx->avail += num_pages;
+               if (net_device_ctx->avail >= PACKET_PAGES_HIWATER)
                        netif_wake_queue(net);
        }
 }
@@ -207,7 +208,8 @@ static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net)
                           net->stats.tx_packets,
                           net->stats.tx_bytes);
 
-               if ((net_device_ctx->avail -= num_pages) < PACKET_PAGES_LOWATER)
+               net_device_ctx->avail -= num_pages;
+               if (net_device_ctx->avail < PACKET_PAGES_LOWATER)
                        netif_stop_queue(net);
        } else {
                /* we are shutting down or bus overloaded, just drop packet */