All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stephen Hemminger <shemminger@linux-foundation.org>
To: Ian Campbell <ian.campbell@citrix.com>
Cc: bridge@lists.linux-foundation.org,
	Ian Campbell <ian.campbell@citrix.com>
Subject: Re: [Bridge] [PATCH] BRIDGE: Do not suppress FDB learning after topology change when forward_delay is 0.
Date: Thu, 14 May 2009 08:35:23 -0700	[thread overview]
Message-ID: <20090514083523.643b640b@nehalam> (raw)
In-Reply-To: <1242298904-31325-1-git-send-email-ian.campbell@citrix.com>

On Thu, 14 May 2009 12:01:44 +0100
Ian Campbell <ian.campbell@citrix.com> wrote:

> I recently noticed that my bridges were flooding traffic for a period of time
> after a topology change. These bridges are part of a Xen host and therefore
> have spanning tree disabled and forward_delay of zero. In this situation there
> is no reason not to begin relearning immediately after a topology change.
> 
> The existing code uses hold_time == 0 to suppress learning in br_fdb_update.
> hold_time() returns forward_delay if a topology change has recently occurred
> and ageing_time if not. Setting each of those to zero has slightly different
> semantics: Setting forward_delay to zero effectively means forward immediately
> while setting ageing_time to zero effectively means do not learn.
> 
> The solution is to not learn after a topology change only if forward_delay is
> non-zero but to retain the existing behaviour based on ageing_time if a
> topology change has not occured.


Unless STP is enabled, br_topology_change is bogus.  It looks like,
the following would avoid the problem?

--- a/net/bridge/br_stp.c	2009-05-14 08:33:01.795909321 -0700
+++ b/net/bridge/br_stp.c	2009-05-14 08:34:32.839883992 -0700
@@ -375,7 +375,8 @@ static void br_make_forwarding(struct ne
 
 	if (br->forward_delay == 0) {
 		p->state = BR_STATE_FORWARDING;
-		br_topology_change_detection(br);
+		if (p->br->stp_enable == BR_KERNEL_STP)
+			br_topology_change_detection(br);
 		del_timer(&p->forward_delay_timer);
 	}
 	else if (p->br->stp_enabled == BR_KERNEL_STP)



  parent reply	other threads:[~2009-05-14 15:35 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-14 11:01 [Bridge] [PATCH] BRIDGE: Do not suppress FDB learning after topology change when forward_delay is 0 Ian Campbell
2009-05-14 14:37 ` Ian Campbell
2009-05-14 15:35 ` Stephen Hemminger [this message]
2009-05-15  9:34   ` Ian Campbell
2009-05-15 10:08   ` Uli Luckas
2009-05-15 17:04   ` richardvoigt

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=20090514083523.643b640b@nehalam \
    --to=shemminger@linux-foundation.org \
    --cc=bridge@lists.linux-foundation.org \
    --cc=ian.campbell@citrix.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.