Browse Source

[PATCH] sky2: ring distance optimization

Faster way to compute ring distance.

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Stephen Hemminger 19 years ago
parent
commit
129372d052
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/net/sky2.c

+ 1 - 1
drivers/net/sky2.c

@@ -1039,7 +1039,7 @@ err_out:
 /* Modular subtraction in ring */
 static inline int tx_dist(unsigned tail, unsigned head)
 {
-	return (head >= tail ? head : head + TX_RING_SIZE) - tail;
+	return (head - tail) % TX_RING_SIZE;
 }
 
 /* Number of list elements available for next tx */