patch-2.4.9 linux/drivers/net/de600.c
Next file: linux/drivers/net/depca.c
Previous file: linux/drivers/net/ariadne.c
Back to the patch index
Back to the overall index
- Lines: 17
- Date:
Wed Aug 15 01:22:15 2001
- Orig file:
v2.4.8/linux/drivers/net/de600.c
- Orig date:
Wed Jul 25 17:10:21 2001
diff -u --recursive --new-file v2.4.8/linux/drivers/net/de600.c linux/drivers/net/de600.c
@@ -801,7 +801,6 @@
* This differs from the standard function, that can return an
* arbitrarily small window!
*/
-#define min(a,b) ((a)<(b)?(a):(b))
static unsigned long
de600_rspace(struct sock *sk)
{
@@ -815,7 +814,7 @@
*/
if (atomic_read(&sk->rmem_alloc) >= sk->rcvbuf-2*DE600_MIN_WINDOW) return(0);
- amt = min((sk->rcvbuf-atomic_read(&sk->rmem_alloc))/2/*-DE600_MIN_WINDOW*/, DE600_MAX_WINDOW);
+ amt = min(int, (sk->rcvbuf-atomic_read(&sk->rmem_alloc))/2/*-DE600_MIN_WINDOW*/, DE600_MAX_WINDOW);
if (amt < 0) return(0);
return(amt);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)