public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] iproute2 util update
@ 2005-08-16 21:34 Stephen Hemminger
  2005-08-17  3:23 ` Eric Dumazet
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2005-08-16 21:34 UTC (permalink / raw)
  To: netdev, lartc; +Cc: linux-kernel

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.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ANNOUNCE] iproute2 util update
  2005-08-16 21:34 [ANNOUNCE] iproute2 util update Stephen Hemminger
@ 2005-08-17  3:23 ` Eric Dumazet
  0 siblings, 0 replies; 2+ messages in thread
From: Eric Dumazet @ 2005-08-17  3:23 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, lartc, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 742 bytes --]

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 <dada1@cosmosbay.com>



[-- Attachment #2: lnstat_util.diff --]
[-- Type: text/plain, Size: 396 bytes --]

--- iproute2-050816-orig/misc/lnstat_util.c	2005-03-18 20:40:19.000000000 +0100
+++ iproute2-050816/misc/lnstat_util.c	2005-08-17 05:21:04.000000000 +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;
 		}

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-08-17  3:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-16 21:34 [ANNOUNCE] iproute2 util update Stephen Hemminger
2005-08-17  3:23 ` Eric Dumazet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox