On Fri, 2013-03-08 at 10:31 +0800, Herbert Xu wrote: > On Fri, Mar 08, 2013 at 10:07:03AM +0800, Cong Wang wrote: > > From: Cong Wang <amwang@xxxxxxxxxx> > > > > This is a long-standing bug and reported several times: > > https://bugzilla.redhat.com/show_bug.cgi?id=880035 > > http://marc.info/?l=linux-netdev&m=136164389416341&w=2 > > > > This bug can be observed in virt environment, when a KVM guest > > communicates with the host via multicast. After some time (should > > be 260 sec, I didn't measure), the multicast traffic suddenly > > terminates. > > > > This is due to the mdb entry for bridge itself expires automatically, > > it should not expire as long as the bridge still generates multicast > > traffic. It should expire when the bridge leaves the multicast group, > > OR when there is no multicast traffic on this bridge. > > > > I fix this by adding another bool which is set when there is > > multicast traffic goes to the bridge, cleared in the expire timer and > > when IGMP leave is received. I ran omping for 15 minutes, everything > > looks good now. > > I gather from the bugzilla entry that this happens where there is > no querier in the network. > > So my question is why does this only affect the bridge port and > not other ports on the bridge? > This is a good question. It is due to inside br_handle_frame_finish() we use 'skb2' to decide if we deliver packets to bridge itself, and in this case 'skb2' is non-NULL only when: if (mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) { if ((mdst && mdst->mglist) || br_multicast_is_router(br)) skb2 = skb; // <======== HERE br_multicast_forward(mdst, skb, skb2); For other ports, br_multicast_forward() will always forward 'skb' to them. Thanks.