Re: [PATCH net] bridge: fix br_multicast_query_expired() bug

2015-05-30 Thread David Miller
From: Eric Dumazet Date: Thu, 28 May 2015 04:42:54 -0700 > From: Eric Dumazet > > br_multicast_query_expired() querier argument is a pointer to > a struct bridge_mcast_querier : > > struct bridge_mcast_querier { > struct br_ip addr; > struct net_bridge_port __rcu*port; > };

Re: [PATCH net] bridge: fix br_multicast_query_expired() bug

2015-05-28 Thread Linus Lüssing
On Thu, May 28, 2015 at 04:42:54AM -0700, Eric Dumazet wrote: > Intent of the code was to clear port field, not the pointer to querier. Acked-by: Linus Lüssing -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo

Re: [PATCH net] bridge: fix br_multicast_query_expired() bug

2015-05-28 Thread Thadeu Lima de Souza Cascardo
On Thu, May 28, 2015 at 04:42:54AM -0700, Eric Dumazet wrote: > From: Eric Dumazet > > br_multicast_query_expired() querier argument is a pointer to > a struct bridge_mcast_querier : > > struct bridge_mcast_querier { > struct br_ip addr; > struct net_bridge_port __rcu*port; >

[PATCH net] bridge: fix br_multicast_query_expired() bug

2015-05-28 Thread Eric Dumazet
From: Eric Dumazet br_multicast_query_expired() querier argument is a pointer to a struct bridge_mcast_querier : struct bridge_mcast_querier { struct br_ip addr; struct net_bridge_port __rcu*port; }; Intent of the code was to clear port field, not the pointer to querier. Fi