All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ben Greear <greearb@candelatech.com>
To: Felix Radensky <felix@allot.com>
Cc: netdev@oss.sgi.com
Subject: Re: Ethernet bridge performance
Date: Thu, 07 Aug 2003 09:57:14 -0700	[thread overview]
Message-ID: <3F3284EA.5050406@candelatech.com> (raw)
In-Reply-To: <3F3217E7.2080903@allot.com>

Felix Radensky wrote:
> Hi,
> 
> I'm evaluating a performance of a dual port ethernet bridge, and the
> results are a bit disappointing. I would appreciate any hints on improving
> the results.

> c01a13ac 7983     12.5065     eth_type_trans
> c01a1590 7629     11.9519     qdisc_restart
> c0197720 7365     11.5383     skb_release_data
> c010c170 5962      9.3403     do_gettimeofday

If that do_gettimeofday is happening in the skb rx code, then
you could gain ~10% by disabling it somehow..as it should not
matter for a bridge.  I bet Robert's skb-recycle patch would
help here too, especially if you allowed the NICs to save up a large
number of skbs so that alloc was less likely to fail.

Btw, I've considered saving, say, 10k skbs on a list in my module,
allocated by GFP_KERNEL at module load time, and using them when
GFP_ATOMIC skb_alloc fails in the IRQ handling portion of the code....

Anyone think that's a good idea? :)

Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com

  parent reply	other threads:[~2003-08-07 16:57 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-08-07  9:12 Ethernet bridge performance Felix Radensky
2003-08-07 15:59 ` Stephen Hemminger
2003-08-07 16:05   ` Felix Radensky
2003-08-07 16:57 ` Ben Greear [this message]
2003-08-07 17:19   ` Felix Radensky
2003-08-07 19:09     ` Robert Olsson
2003-08-07 19:21       ` jamal
2003-08-07 22:49         ` Robert Olsson
2003-08-10  7:32         ` Felix Radensky
2003-08-11  2:55           ` jamal
2003-08-11  7:52             ` Robert Olsson
     [not found]       ` <3F3601F3.6000001@allot.com>
2003-08-10 18:13         ` Ben Greear
2003-08-10 19:47           ` Andi Kleen
2003-08-10 21:49         ` Robert Olsson
2003-08-07 19:35   ` David S. Miller
2003-08-07 19:50     ` Ben Greear
2003-08-07 19:58       ` David S. Miller

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=3F3284EA.5050406@candelatech.com \
    --to=greearb@candelatech.com \
    --cc=felix@allot.com \
    --cc=netdev@oss.sgi.com \
    /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.