All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-23  5:14 ` Hong Zhiguo
  0 siblings, 0 replies; 18+ messages in thread
From: Hong Zhiguo @ 2013-03-23  5:14 UTC (permalink / raw)
  To: netdev; +Cc: bridge, davem, stephen, herbert, zhiguo.hong, Hong Zhiguo

When neither IFF_BRIDGE_PORT or IFF_BRIDGE_PORT is set,
and afspec == NULL but  protinfo != NULL, we run into
"if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
random value in ret.

Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
---
 net/bridge/br_netlink.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 84c3b7d..b96e02e 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -357,7 +357,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	struct nlattr *afspec;
 	struct net_bridge_port *p;
 	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
-	int err;
+	int err = 0;
 
 	ifm = nlmsg_data(nlh);
 
@@ -370,7 +370,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	/* We want to accept dev as bridge itself if the AF_SPEC
 	 * is set to see if someone is setting vlan info on the brigde
 	 */
-	if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec))
+	if (!p && !afspec)
 		return -EINVAL;
 
 	if (p && protinfo) {
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-23  5:14 ` Hong Zhiguo
  0 siblings, 0 replies; 18+ messages in thread
From: Hong Zhiguo @ 2013-03-23  5:14 UTC (permalink / raw)
  To: netdev; +Cc: bridge, zhiguo.hong, Hong Zhiguo, stephen, herbert, davem

When neither IFF_BRIDGE_PORT or IFF_BRIDGE_PORT is set,
and afspec == NULL but  protinfo != NULL, we run into
"if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
random value in ret.

Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
---
 net/bridge/br_netlink.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 84c3b7d..b96e02e 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -357,7 +357,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	struct nlattr *afspec;
 	struct net_bridge_port *p;
 	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
-	int err;
+	int err = 0;
 
 	ifm = nlmsg_data(nlh);
 
@@ -370,7 +370,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	/* We want to accept dev as bridge itself if the AF_SPEC
 	 * is set to see if someone is setting vlan info on the brigde
 	 */
-	if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec))
+	if (!p && !afspec)
 		return -EINVAL;
 
 	if (p && protinfo) {
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-23  5:14 ` [Bridge] " Hong Zhiguo
@ 2013-03-23 15:06   ` Sergei Shtylyov
  -1 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-23 15:06 UTC (permalink / raw)
  To: Hong Zhiguo; +Cc: netdev, bridge, davem, stephen, herbert, zhiguo.hong

Hello.

On 23-03-2013 9:14, Hong Zhiguo wrote:

> When neither IFF_BRIDGE_PORT or IFF_BRIDGE_PORT is set,

    That is the same flag repeated twice.

> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.

> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-23 15:06   ` Sergei Shtylyov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-23 15:06 UTC (permalink / raw)
  To: Hong Zhiguo; +Cc: netdev, bridge, zhiguo.hong, stephen, herbert, davem

Hello.

On 23-03-2013 9:14, Hong Zhiguo wrote:

> When neither IFF_BRIDGE_PORT or IFF_BRIDGE_PORT is set,

    That is the same flag repeated twice.

> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.

> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

WBR, Sergei


^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-23  5:14 ` [Bridge] " Hong Zhiguo
@ 2013-03-24 13:26   ` Hong Zhiguo
  -1 siblings, 0 replies; 18+ messages in thread
From: Hong Zhiguo @ 2013-03-24 13:26 UTC (permalink / raw)
  To: netdev
  Cc: bridge, davem, stephen, herbert, sergei.shtylyov, zhiguo.hong,
	Hong Zhiguo

When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
and afspec == NULL but  protinfo != NULL, we run into
"if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
random value in ret.

Thanks to Sergei for pointing out the error in commit comments.

Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
---
 net/bridge/br_netlink.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 84c3b7d..b96e02e 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -357,7 +357,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	struct nlattr *afspec;
 	struct net_bridge_port *p;
 	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
-	int err;
+	int err = 0;
 
 	ifm = nlmsg_data(nlh);
 
@@ -370,7 +370,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	/* We want to accept dev as bridge itself if the AF_SPEC
 	 * is set to see if someone is setting vlan info on the brigde
 	 */
-	if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec))
+	if (!p && !afspec)
 		return -EINVAL;
 
 	if (p && protinfo) {
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-24 13:26   ` Hong Zhiguo
  0 siblings, 0 replies; 18+ messages in thread
From: Hong Zhiguo @ 2013-03-24 13:26 UTC (permalink / raw)
  To: netdev
  Cc: sergei.shtylyov, bridge, zhiguo.hong, Hong Zhiguo, stephen,
	herbert, davem

When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
and afspec == NULL but  protinfo != NULL, we run into
"if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
random value in ret.

Thanks to Sergei for pointing out the error in commit comments.

Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
---
 net/bridge/br_netlink.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c
index 84c3b7d..b96e02e 100644
--- a/net/bridge/br_netlink.c
+++ b/net/bridge/br_netlink.c
@@ -357,7 +357,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	struct nlattr *afspec;
 	struct net_bridge_port *p;
 	struct nlattr *tb[IFLA_BRPORT_MAX + 1];
-	int err;
+	int err = 0;
 
 	ifm = nlmsg_data(nlh);
 
@@ -370,7 +370,7 @@ int br_setlink(struct net_device *dev, struct nlmsghdr *nlh)
 	/* We want to accept dev as bridge itself if the AF_SPEC
 	 * is set to see if someone is setting vlan info on the brigde
 	 */
-	if (!p && ((dev->priv_flags & IFF_EBRIDGE) && !afspec))
+	if (!p && !afspec)
 		return -EINVAL;
 
 	if (p && protinfo) {
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-24 13:26   ` [Bridge] " Hong Zhiguo
@ 2013-03-24 14:34     ` Sergei Shtylyov
  -1 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-24 14:34 UTC (permalink / raw)
  To: Hong Zhiguo; +Cc: netdev, bridge, davem, stephen, herbert, zhiguo.hong

Hello.

On 03/24/2013 04:26 PM, Hong Zhiguo wrote:

> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.
>
> Thanks to Sergei for pointing out the error in commit comments.
>
> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

     For the future, if you post the revised version of the patch, you
should indicate in the subject it like this: [PATCH v2].

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-24 14:34     ` Sergei Shtylyov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-24 14:34 UTC (permalink / raw)
  To: Hong Zhiguo; +Cc: netdev, bridge, zhiguo.hong, stephen, herbert, davem

Hello.

On 03/24/2013 04:26 PM, Hong Zhiguo wrote:

> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.
>
> Thanks to Sergei for pointing out the error in commit comments.
>
> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

     For the future, if you post the revised version of the patch, you
should indicate in the subject it like this: [PATCH v2].

WBR, Sergei


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-24 14:34     ` [Bridge] " Sergei Shtylyov
@ 2013-03-24 21:15       ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-24 21:15 UTC (permalink / raw)
  To: sergei.shtylyov; +Cc: honkiko, netdev, bridge, stephen, herbert, zhiguo.hong

From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Sun, 24 Mar 2013 17:34:47 +0300

> Hello.
> 
> On 03/24/2013 04:26 PM, Hong Zhiguo wrote:
> 
>> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
>> and afspec == NULL but  protinfo != NULL, we run into
>> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
>> random value in ret.
>>
>> Thanks to Sergei for pointing out the error in commit comments.
>>
>> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
> 
>     For the future, if you post the revised version of the patch, you
> should indicate in the subject it like this: [PATCH v2].

I'm disappointed that you have enough energy to point out such a lower
priority omission, but you lack the time for something more important,
which is giving this patch your explicit ACK if it fixes all of the
issues you pointed out to him.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-24 21:15       ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-24 21:15 UTC (permalink / raw)
  To: sergei.shtylyov; +Cc: netdev, bridge, zhiguo.hong, honkiko, stephen, herbert

From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Sun, 24 Mar 2013 17:34:47 +0300

> Hello.
> 
> On 03/24/2013 04:26 PM, Hong Zhiguo wrote:
> 
>> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
>> and afspec == NULL but  protinfo != NULL, we run into
>> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
>> random value in ret.
>>
>> Thanks to Sergei for pointing out the error in commit comments.
>>
>> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>
> 
>     For the future, if you post the revised version of the patch, you
> should indicate in the subject it like this: [PATCH v2].

I'm disappointed that you have enough energy to point out such a lower
priority omission, but you lack the time for something more important,
which is giving this patch your explicit ACK if it fixes all of the
issues you pointed out to him.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-24 13:26   ` [Bridge] " Hong Zhiguo
@ 2013-03-24 21:18     ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-24 21:18 UTC (permalink / raw)
  To: honkiko; +Cc: sergei.shtylyov, netdev, bridge, zhiguo.hong, stephen, herbert

From: Hong Zhiguo <honkiko@gmail.com>
Date: Sun, 24 Mar 2013 21:26:47 +0800

> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.
> 
> Thanks to Sergei for pointing out the error in commit comments.
> 
> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-24 21:18     ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-24 21:18 UTC (permalink / raw)
  To: honkiko; +Cc: sergei.shtylyov, netdev, bridge, zhiguo.hong, stephen, herbert

From: Hong Zhiguo <honkiko@gmail.com>
Date: Sun, 24 Mar 2013 21:26:47 +0800

> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
> and afspec == NULL but  protinfo != NULL, we run into
> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
> random value in ret.
> 
> Thanks to Sergei for pointing out the error in commit comments.
> 
> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

Applied.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-24 21:15       ` [Bridge] " David Miller
@ 2013-03-25 15:32         ` Sergei Shtylyov
  -1 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-25 15:32 UTC (permalink / raw)
  To: David Miller; +Cc: honkiko, netdev, bridge, stephen, herbert, zhiguo.hong

Hello.

On 25-03-2013 1:15, David Miller wrote:

>>> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
>>> and afspec == NULL but  protinfo != NULL, we run into
>>> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
>>> random value in ret.

>>> Thanks to Sergei for pointing out the error in commit comments.

>>> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

>>      For the future, if you post the revised version of the patch, you
>> should indicate in the subject it like this: [PATCH v2].

> I'm disappointed that you have enough energy to point out such a lower
> priority omission, but you lack the time for something more important,
> which is giving this patch your explicit ACK if it fixes all of the
> issues you pointed out to him.

    Sorry, I don't usuallly ACK patches in an area I'm not closely familiar 
with. Though I can add:

Reviewed-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-25 15:32         ` Sergei Shtylyov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-25 15:32 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, bridge, zhiguo.hong, honkiko, stephen, herbert

Hello.

On 25-03-2013 1:15, David Miller wrote:

>>> When neither IFF_BRIDGE nor IFF_BRIDGE_PORT is set,
>>> and afspec == NULL but  protinfo != NULL, we run into
>>> "if (err == 0) br_ifinfo_notify(RTM_NEWLINK, p);" with
>>> random value in ret.

>>> Thanks to Sergei for pointing out the error in commit comments.

>>> Signed-off-by: Hong Zhiguo <honkiko@gmail.com>

>>      For the future, if you post the revised version of the patch, you
>> should indicate in the subject it like this: [PATCH v2].

> I'm disappointed that you have enough energy to point out such a lower
> priority omission, but you lack the time for something more important,
> which is giving this patch your explicit ACK if it fixes all of the
> issues you pointed out to him.

    Sorry, I don't usuallly ACK patches in an area I'm not closely familiar 
with. Though I can add:

Reviewed-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

WBR, Sergei


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-25 15:32         ` [Bridge] " Sergei Shtylyov
@ 2013-03-25 16:08           ` David Miller
  -1 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-25 16:08 UTC (permalink / raw)
  To: sergei.shtylyov; +Cc: honkiko, netdev, bridge, stephen, herbert, zhiguo.hong

From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Mon, 25 Mar 2013 19:32:14 +0400

>    Sorry, I don't usuallly ACK patches in an area I'm not closely
>    familiar with. Though I can add:

If you feel confident enough to ask for corrections, you better be
ready to ACK the result when your requests have been met.

You can't hold other people accountable yet take none of the
same responsibility yourself.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-25 16:08           ` David Miller
  0 siblings, 0 replies; 18+ messages in thread
From: David Miller @ 2013-03-25 16:08 UTC (permalink / raw)
  To: sergei.shtylyov; +Cc: netdev, bridge, zhiguo.hong, honkiko, stephen, herbert

From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Mon, 25 Mar 2013 19:32:14 +0400

>    Sorry, I don't usuallly ACK patches in an area I'm not closely
>    familiar with. Though I can add:

If you feel confident enough to ask for corrections, you better be
ready to ACK the result when your requests have been met.

You can't hold other people accountable yet take none of the
same responsibility yourself.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
  2013-03-25 16:08           ` [Bridge] " David Miller
@ 2013-03-25 16:31             ` Sergei Shtylyov
  -1 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-25 16:31 UTC (permalink / raw)
  To: David Miller; +Cc: honkiko, netdev, bridge, stephen, herbert, zhiguo.hong

Hello.

On 25-03-2013 20:08, David Miller wrote:

>>     Sorry, I don't usuallly ACK patches in an area I'm not closely
>>     familiar with. Though I can add:

> If you feel confident enough to ask for corrections, you better be
> ready to ACK the result when your requests have been met.

   Come on, I only asked to correct an evident cut and paste typo in the 
description. That's too little a correction to ACK the whole patch. To ACK it, 
I should know well the code it's patching and be confident that the whole 
patch is correct. I have neither knowledge.

> You can't hold other people accountable yet take none of the
> same responsibility yourself.

    I don't hold anyone accountable, I just provide my comments which might as 
well be ignored by the submitter/maintainer.

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [Bridge] [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed
@ 2013-03-25 16:31             ` Sergei Shtylyov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2013-03-25 16:31 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, bridge, zhiguo.hong, honkiko, stephen, herbert

Hello.

On 25-03-2013 20:08, David Miller wrote:

>>     Sorry, I don't usuallly ACK patches in an area I'm not closely
>>     familiar with. Though I can add:

> If you feel confident enough to ask for corrections, you better be
> ready to ACK the result when your requests have been met.

   Come on, I only asked to correct an evident cut and paste typo in the 
description. That's too little a correction to ACK the whole patch. To ACK it, 
I should know well the code it's patching and be confident that the whole 
patch is correct. I have neither knowledge.

> You can't hold other people accountable yet take none of the
> same responsibility yourself.

    I don't hold anyone accountable, I just provide my comments which might as 
well be ignored by the submitter/maintainer.

WBR, Sergei


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-03-25 16:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-23  5:14 [PATCH net-next] bridge: avoid br_ifinfo_notify when nothing changed Hong Zhiguo
2013-03-23  5:14 ` [Bridge] " Hong Zhiguo
2013-03-23 15:06 ` Sergei Shtylyov
2013-03-23 15:06   ` [Bridge] " Sergei Shtylyov
2013-03-24 13:26 ` Hong Zhiguo
2013-03-24 13:26   ` [Bridge] " Hong Zhiguo
2013-03-24 14:34   ` Sergei Shtylyov
2013-03-24 14:34     ` [Bridge] " Sergei Shtylyov
2013-03-24 21:15     ` David Miller
2013-03-24 21:15       ` [Bridge] " David Miller
2013-03-25 15:32       ` Sergei Shtylyov
2013-03-25 15:32         ` [Bridge] " Sergei Shtylyov
2013-03-25 16:08         ` David Miller
2013-03-25 16:08           ` [Bridge] " David Miller
2013-03-25 16:31           ` Sergei Shtylyov
2013-03-25 16:31             ` [Bridge] " Sergei Shtylyov
2013-03-24 21:18   ` David Miller
2013-03-24 21:18     ` [Bridge] " David Miller

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.