All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eric Dumazet <dada1@cosmosbay.com>
To: Stephen Hemminger <shemminger@osdl.org>
Cc: netdev@vger.kernel.org, lartc@mailman.ds9a.nl,
	linux-kernel@vger.kernel.org
Subject: Re: [ANNOUNCE] iproute2 util update
Date: Wed, 17 Aug 2005 05:23:01 +0200	[thread overview]
Message-ID: <4302AD95.20704@cosmosbay.com> (raw)
In-Reply-To: <20050816143416.61c10513@dxpl.pdx.osdl.net>

[-- 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;
 		}

      reply	other threads:[~2005-08-17  3:23 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-08-16 21:34 [LARTC] [ANNOUNCE] iproute2 util update Stephen Hemminger
2005-08-16 21:34 ` Stephen Hemminger
2005-08-17  3:23 ` Eric Dumazet [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4302AD95.20704@cosmosbay.com \
    --to=dada1@cosmosbay.com \
    --cc=lartc@mailman.ds9a.nl \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=shemminger@osdl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.