Re: [ANNOUNCE] iproute2 util update

2005-08-16 Thread Eric Dumazet

Stephen Hemminger a écrit :

http://developer.osdl.org/dev/iproute2/download/iproute2-050816.tar.gz

Update to iproute2 to include:
* Limit ip neigh flush to 10 rounds
* tc ematch support (thomas)
* build cleanups (thomas, et al)
* Fix for options process with ipt (jamal)
* Fix array overflow in paretonormal distribution build
* Update include files to 2.6.13
* Decnet doc update (Steven Whithouse)

Note: the ematch support won't build on really old versions of bison (1.28),
  but the kernel on those systems wouldn't support it anyway.
-

Thank you

Could you please apply this patch.

* Fix lnstat : First column should not be summed

Thank you

Signed-off-by: Eric Dumazet <[EMAIL PROTECTED]>


--- iproute2-050816-orig/misc/lnstat_util.c 2005-03-18 20:40:19.0 
+0100
+++ iproute2-050816/misc/lnstat_util.c  2005-08-17 05:21:04.0 +0200
@@ -55,7 +55,7 @@
for (j = 0; j < lf->num_fields; j++) {
unsigned long f = strtoul(ptr, &ptr, 16);
if (j == 0) 
-   lf->fields[j].values[i] += f;
+   lf->fields[j].values[i] = f;
else
lf->fields[j].values[i] += f;
}


[ANNOUNCE] iproute2 util update

2005-08-16 Thread Stephen Hemminger
http://developer.osdl.org/dev/iproute2/download/iproute2-050816.tar.gz

Update to iproute2 to include:
* Limit ip neigh flush to 10 rounds
* tc ematch support (thomas)
* build cleanups (thomas, et al)
* Fix for options process with ipt (jamal)
* Fix array overflow in paretonormal distribution build
* Update include files to 2.6.13
* Decnet doc update (Steven Whithouse)

Note: the ematch support won't build on really old versions of bison (1.28),
  but the kernel on those systems wouldn't support it anyway.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/