linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iwlwifi: Make injection of non-broadcast frames work again
@ 2009-08-20 22:08 Gábor Stefanik
  2009-08-21  8:21 ` Johannes Berg
  2009-08-21 16:33 ` reinette chatre
  0 siblings, 2 replies; 11+ messages in thread
From: Gábor Stefanik @ 2009-08-20 22:08 UTC (permalink / raw)
  To: John Linville, Reinette Chatre, Zhu Yi
  Cc: Wey-Yi Guy, Rafael Laufer, ipw3945-devel, linux-wireless

Commit 1ccb84d87d04df3c76cd4352fe69786d8c7cf016 by Wey-Yi Guy
("iwlwifi: clean up unused NL80211_IFTYPE_MONITOR for Monitor mode")
broke injection of non-broadcast frames to unassociated stations
(causing a SYSASSERT for all such injected frames), due to injected
frames no longer automatically getting a broadcast station ID assigned,
and instead ending up with invalid station IDs.
This patch restores the old behavior, fixing the aforementioned
regression.

Signed-off-by: Gábor Stefanik <netrolller.3d@gmail.com>
---
This fixes a regression introduced between 2.6.30 and 2.6.31-rc1.
Please apply to 2.6.31.

 drivers/net/wireless/iwlwifi/iwl-sta.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/iwlwifi/iwl-sta.c b/drivers/net/wireless/iwlwifi/iwl-sta.c
index c6633fe..81a656f 100644
--- a/drivers/net/wireless/iwlwifi/iwl-sta.c
+++ b/drivers/net/wireless/iwlwifi/iwl-sta.c
@@ -1054,7 +1054,8 @@ int iwl_get_sta_id(struct iwl_priv *priv, struct ieee80211_hdr *hdr)
 	__le16 fc = hdr->frame_control;
 
 	/* If this frame is broadcast or management, use broadcast station id */
-	if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
+	if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
+	    iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
 		return priv->hw_params.bcast_sta_id;
 
 	switch (priv->iw_mode) {
-- 
1.6.2.4




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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-20 22:08 [PATCH] iwlwifi: Make injection of non-broadcast frames work again Gábor Stefanik
@ 2009-08-21  8:21 ` Johannes Berg
  2009-08-21 13:21   ` Gábor Stefanik
  2009-08-21 16:33 ` reinette chatre
  1 sibling, 1 reply; 11+ messages in thread
From: Johannes Berg @ 2009-08-21  8:21 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: John Linville, Reinette Chatre, Zhu Yi, Wey-Yi Guy,
	Rafael Laufer, ipw3945-devel, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 781 bytes --]

On Fri, 2009-08-21 at 00:08 +0200, Gábor Stefanik wrote:

>  	/* If this frame is broadcast or management, use broadcast station id */
> -	if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
> +	if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
> +	    iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
>  		return priv->hw_params.bcast_sta_id;

Now you still can't transmit frames to another AP when connected to one,
which will, for example, be required for 11r. IMHO that code should, in
STATION mode, be checking the RA against the BSSID, and if they match
use the AP ID, otherwise the bcast ID. And remove the warning in the
default case, since that's what happens if in pure monitor mode afaict.

johannes

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21  8:21 ` Johannes Berg
@ 2009-08-21 13:21   ` Gábor Stefanik
  2009-08-21 13:28     ` Johannes Berg
  0 siblings, 1 reply; 11+ messages in thread
From: Gábor Stefanik @ 2009-08-21 13:21 UTC (permalink / raw)
  To: Johannes Berg
  Cc: John Linville, Reinette Chatre, Zhu Yi, Wey-Yi Guy,
	Rafael Laufer, ipw3945-devel, linux-wireless

2009/8/21 Johannes Berg <johannes@sipsolutions.net>:
> On Fri, 2009-08-21 at 00:08 +0200, Gábor Stefanik wrote:
>
>>       /* If this frame is broadcast or management, use broadcast station id */
>> -     if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
>> +     if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
>> +         iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
>>               return priv->hw_params.bcast_sta_id;
>
> Now you still can't transmit frames to another AP when connected to one,
> which will, for example, be required for 11r. IMHO that code should, in
> STATION mode, be checking the RA against the BSSID, and if they match
> use the AP ID, otherwise the bcast ID.

I'll probably do that, in a separate patch. This patch is a regression
fix targeted at the next 2.6.31-rc (injection of non-broadcasts works
fine in 2.6.30, but causes an ucode SYSASSERT in 2.6.31 and up). The
problem you are describing is not a regression AFAIK, it's something
that never worked; so it should be targeted @ 2.6.32.

> And remove the warning in the
> default case, since that's what happens if in pure monitor mode afaict.

>From my limited testing, in monitor mode, the vif type will be
IFTYPE_STATION, so the default case is never hit. (Is this a bug?)

(BTW now that in mac80211, we internally use IFTYPE_MONITOR in monitor
mode, as opposed to just checking for a missing STA - why can't we
propagate this to the drivers, and have a much saner way of informing
the driver of monitor mode? This is especially a problem for zd1211rw,
where to get proper monitor mode, ZD_SNIFFER_ON needs to be turned
on.)

>
> johannes
>



-- 
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 13:21   ` Gábor Stefanik
@ 2009-08-21 13:28     ` Johannes Berg
  0 siblings, 0 replies; 11+ messages in thread
From: Johannes Berg @ 2009-08-21 13:28 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: John Linville, Reinette Chatre, Zhu Yi, Wey-Yi Guy,
	Rafael Laufer, ipw3945-devel, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 831 bytes --]

On Fri, 2009-08-21 at 15:21 +0200, Gábor Stefanik wrote:

> > And remove the warning in the
> > default case, since that's what happens if in pure monitor mode afaict.
> 
> From my limited testing, in monitor mode, the vif type will be
> IFTYPE_STATION, so the default case is never hit. (Is this a bug?)

It's the way iwlwifi handles things I guess.

> (BTW now that in mac80211, we internally use IFTYPE_MONITOR in monitor
> mode, as opposed to just checking for a missing STA - why can't we
> propagate this to the drivers, and have a much saner way of informing
> the driver of monitor mode? This is especially a problem for zd1211rw,
> where to get proper monitor mode, ZD_SNIFFER_ON needs to be turned
> on.)

Think about it again (hint: multiple interfaces), and then ask the
question again.

johannes

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-20 22:08 [PATCH] iwlwifi: Make injection of non-broadcast frames work again Gábor Stefanik
  2009-08-21  8:21 ` Johannes Berg
@ 2009-08-21 16:33 ` reinette chatre
  2009-08-21 16:43   ` John W. Linville
  2009-08-21 17:24   ` Gábor Stefanik
  1 sibling, 2 replies; 11+ messages in thread
From: reinette chatre @ 2009-08-21 16:33 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

Hi Gábor,

On Thu, 2009-08-20 at 15:08 -0700, Gábor Stefanik wrote:
> Commit 1ccb84d87d04df3c76cd4352fe69786d8c7cf016 by Wey-Yi Guy
> ("iwlwifi: clean up unused NL80211_IFTYPE_MONITOR for Monitor mode")
> broke injection of non-broadcast frames to unassociated stations
> (causing a SYSASSERT for all such injected frames), due to injected
> frames no longer automatically getting a broadcast station ID assigned,
> and instead ending up with invalid station IDs.
> This patch restores the old behavior, fixing the aforementioned
> regression.

The patch you are quoting cannot be the culprit here. As that commit
message indicates we never set NL80211_IFTYPE_MONITOR for the interface
type, so when that code removed the test for this interface type in
iwl_get_sta_id it essentially removed dead code.
 
>  	/* If this frame is broadcast or management, use broadcast station id */
> -	if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
> +	if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
> +	    iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
>  		return priv->hw_params.bcast_sta_id;

I think my comment ties in with what Johannes said. When we are
associated (whether in station, adhoc, or AP mode) we want this function
to return the correct station ID. We also know that an interface can be
in monitor mode while it is in any of these other modes. When this
happens we do not want to return the broadcast station id ... we still
want to return the station id. Your patch changes this behavior and will
in this case always return the broadcast station id.

Reinette





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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 16:33 ` reinette chatre
@ 2009-08-21 16:43   ` John W. Linville
  2009-08-21 17:24   ` Gábor Stefanik
  1 sibling, 0 replies; 11+ messages in thread
From: John W. Linville @ 2009-08-21 16:43 UTC (permalink / raw)
  To: reinette chatre
  Cc: Gábor Stefanik, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

On Fri, Aug 21, 2009 at 09:33:53AM -0700, reinette chatre wrote:
> Hi Gábor,
> 
> On Thu, 2009-08-20 at 15:08 -0700, Gábor Stefanik wrote:
> > Commit 1ccb84d87d04df3c76cd4352fe69786d8c7cf016 by Wey-Yi Guy
> > ("iwlwifi: clean up unused NL80211_IFTYPE_MONITOR for Monitor mode")
> > broke injection of non-broadcast frames to unassociated stations
> > (causing a SYSASSERT for all such injected frames), due to injected
> > frames no longer automatically getting a broadcast station ID assigned,
> > and instead ending up with invalid station IDs.
> > This patch restores the old behavior, fixing the aforementioned
> > regression.
> 
> The patch you are quoting cannot be the culprit here. As that commit
> message indicates we never set NL80211_IFTYPE_MONITOR for the interface
> type, so when that code removed the test for this interface type in
> iwl_get_sta_id it essentially removed dead code.
>  
> >  	/* If this frame is broadcast or management, use broadcast station id */
> > -	if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
> > +	if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
> > +	    iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
> >  		return priv->hw_params.bcast_sta_id;
> 
> I think my comment ties in with what Johannes said. When we are
> associated (whether in station, adhoc, or AP mode) we want this function
> to return the correct station ID. We also know that an interface can be
> in monitor mode while it is in any of these other modes. When this
> happens we do not want to return the broadcast station id ... we still
> want to return the station id. Your patch changes this behavior and will
> in this case always return the broadcast station id.

Dropping on the basis of this.  Please repost when/if this is resolved.

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 16:33 ` reinette chatre
  2009-08-21 16:43   ` John W. Linville
@ 2009-08-21 17:24   ` Gábor Stefanik
  2009-08-21 17:59     ` reinette chatre
  1 sibling, 1 reply; 11+ messages in thread
From: Gábor Stefanik @ 2009-08-21 17:24 UTC (permalink / raw)
  To: reinette chatre
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

2009/8/21 reinette chatre <reinette.chatre@intel.com>:
> Hi Gábor,
>
> On Thu, 2009-08-20 at 15:08 -0700, Gábor Stefanik wrote:
>> Commit 1ccb84d87d04df3c76cd4352fe69786d8c7cf016 by Wey-Yi Guy
>> ("iwlwifi: clean up unused NL80211_IFTYPE_MONITOR for Monitor mode")
>> broke injection of non-broadcast frames to unassociated stations
>> (causing a SYSASSERT for all such injected frames), due to injected
>> frames no longer automatically getting a broadcast station ID assigned,
>> and instead ending up with invalid station IDs.
>> This patch restores the old behavior, fixing the aforementioned
>> regression.
>
> The patch you are quoting cannot be the culprit here. As that commit
> message indicates we never set NL80211_IFTYPE_MONITOR for the interface
> type, so when that code removed the test for this interface type in
> iwl_get_sta_id it essentially removed dead code.

For some odd reason, reverting Wei-Yi Guy's patch makes the bug go
away... should we do that instead for 2.6.31? (I'm all for it, if this
patch is not the right thing to do, as Wey-Yi's patch was not a bug
fix, just a cleanup.) My guess is that the "default to MONITOR mode"
change is the culprit.

>
>>       /* If this frame is broadcast or management, use broadcast station id */
>> -     if (!ieee80211_is_data(fc) ||  is_multicast_ether_addr(hdr->addr1))
>> +     if (!ieee80211_is_data(fc) || is_multicast_ether_addr(hdr->addr1) ||
>> +         iwl_is_monitor_mode(priv)) /* Injected frames need broadcast too */
>>               return priv->hw_params.bcast_sta_id;
>
> I think my comment ties in with what Johannes said. When we are
> associated (whether in station, adhoc, or AP mode) we want this function
> to return the correct station ID. We also know that an interface can be
> in monitor mode while it is in any of these other modes. When this
> happens we do not want to return the broadcast station id ... we still
> want to return the station id. Your patch changes this behavior and will
> in this case always return the broadcast station id.

Maybe we should check info->flags & IEEE80211_TX_CTL_INJECTED
instead... is there a way to access the ieee80211_tx_info structure
from this function (e.g. through priv)?

>
> Reinette
>
>
>
>
>



-- 
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 17:24   ` Gábor Stefanik
@ 2009-08-21 17:59     ` reinette chatre
  2009-08-21 18:10       ` Gábor Stefanik
  0 siblings, 1 reply; 11+ messages in thread
From: reinette chatre @ 2009-08-21 17:59 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

Hi Gábor,

On Fri, 2009-08-21 at 10:24 -0700, Gábor Stefanik wrote:

> For some odd reason, reverting Wei-Yi Guy's patch makes the bug go
> away

ah - now I see. The driver defaulted to monitor mode in iwl_mac_start.
This is not correct and this patch rightly removed that code.

> ... should we do that instead for 2.6.31? (I'm all for it, if this
> patch is not the right thing to do, as Wey-Yi's patch was not a bug
> fix, just a cleanup.) 

No, this patch was more than code cleanup - it changed the driver to
behave correctly wrt monitor interface type. Unfortunately the
workaround to get packet injection working was not apparent enough and
was missed.


> My guess is that the "default to MONITOR mode"
> change is the culprit.

yeah ...


> Maybe we should check info->flags & IEEE80211_TX_CTL_INJECTED
> instead... is there a way to access the ieee80211_tx_info structure
> from this function (e.g. through priv)?

No, but it may not be necessary. Why is is necessary to call this
function in the first place if you know this is an injection packet?
Specifically, in iwl_tx_skb and iwl3945_tx_skb (where ieee80211_tx_info)
is known) there could just be a test if this is an injected packet, if
it is, then do not call iwl_get_sta_id, but just use "bcast_sta_id"
directly. Would this work? Is a test for monitor mode still needed in
this case?

Reinette



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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 17:59     ` reinette chatre
@ 2009-08-21 18:10       ` Gábor Stefanik
  2009-08-21 18:24         ` reinette chatre
  0 siblings, 1 reply; 11+ messages in thread
From: Gábor Stefanik @ 2009-08-21 18:10 UTC (permalink / raw)
  To: reinette chatre
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

2009/8/21 reinette chatre <reinette.chatre@intel.com>:
> Hi Gábor,
>
> On Fri, 2009-08-21 at 10:24 -0700, Gábor Stefanik wrote:
>
>> For some odd reason, reverting Wei-Yi Guy's patch makes the bug go
>> away
>
> ah - now I see. The driver defaulted to monitor mode in iwl_mac_start.
> This is not correct and this patch rightly removed that code.
>
>> ... should we do that instead for 2.6.31? (I'm all for it, if this
>> patch is not the right thing to do, as Wey-Yi's patch was not a bug
>> fix, just a cleanup.)
>
> No, this patch was more than code cleanup - it changed the driver to
> behave correctly wrt monitor interface type. Unfortunately the
> workaround to get packet injection working was not apparent enough and
> was missed.
>
>
>> My guess is that the "default to MONITOR mode"
>> change is the culprit.
>
> yeah ...
>
>
>> Maybe we should check info->flags & IEEE80211_TX_CTL_INJECTED
>> instead... is there a way to access the ieee80211_tx_info structure
>> from this function (e.g. through priv)?
>
> No, but it may not be necessary. Why is is necessary to call this
> function in the first place if you know this is an injection packet?
> Specifically, in iwl_tx_skb and iwl3945_tx_skb (where ieee80211_tx_info)
> is known) there could just be a test if this is an injected packet, if
> it is, then do not call iwl_get_sta_id, but just use "bcast_sta_id"
> directly. Would this work? Is a test for monitor mode still needed in
> this case?

That can be done, yes. It is also a good idea to convert
iwl_is_monitor_mode(priv) calls with TX_CTL_INJECTED checks, as
mac80211 will set IEEE80211_TX_CTL_INJECTED if and only if the packet
arrived from a monitor interface. (However, when I submitted the first
patches to iwlwifi to enable injection, they were rejected
specifically because I checked INJECTED in iwl_tx_skb/iwl394_tx_skb,
rather than adding a monitor mode case to iwl_get_sta_id... times
change I guess.) I'll submit a patch for this.

>
> Reinette
>
>
>



-- 
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)

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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 18:10       ` Gábor Stefanik
@ 2009-08-21 18:24         ` reinette chatre
  2009-08-21 18:37           ` Gábor Stefanik
  0 siblings, 1 reply; 11+ messages in thread
From: reinette chatre @ 2009-08-21 18:24 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

Hi Gábor,

On Fri, 2009-08-21 at 11:10 -0700, Gábor Stefanik wrote:

> That can be done, yes. It is also a good idea to convert
> iwl_is_monitor_mode(priv) calls with TX_CTL_INJECTED checks, as
> mac80211 will set IEEE80211_TX_CTL_INJECTED if and only if the packet
> arrived from a monitor interface.

I don't think that is the intention of that function.
iwl_is_monitor_mode() needs to return whether the interface is in
monitor mode or not and being in monitor mode is specifically when some
filter flags are set up. This is what is tested in this function. 

>  (However, when I submitted the first
> patches to iwlwifi to enable injection, they were rejected
> specifically because I checked INJECTED in iwl_tx_skb/iwl394_tx_skb,
> rather than adding a monitor mode case to iwl_get_sta_id... times
> change I guess.) I'll submit a patch for this.

Sure - you can move the check to iwl_get_sta_id. You will need to
indicate to that function that the frame is being injected.

Reinette






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

* Re: [PATCH] iwlwifi: Make injection of non-broadcast frames work again
  2009-08-21 18:24         ` reinette chatre
@ 2009-08-21 18:37           ` Gábor Stefanik
  0 siblings, 0 replies; 11+ messages in thread
From: Gábor Stefanik @ 2009-08-21 18:37 UTC (permalink / raw)
  To: reinette chatre
  Cc: John Linville, Zhu, Yi, Guy, Wey-Yi W, Rafael Laufer,
	ipw3945-devel, linux-wireless

2009/8/21 reinette chatre <reinette.chatre@intel.com>:
> Hi Gábor,
>
> On Fri, 2009-08-21 at 11:10 -0700, Gábor Stefanik wrote:
>
>> That can be done, yes. It is also a good idea to convert
>> iwl_is_monitor_mode(priv) calls with TX_CTL_INJECTED checks, as
>> mac80211 will set IEEE80211_TX_CTL_INJECTED if and only if the packet
>> arrived from a monitor interface.
>
> I don't think that is the intention of that function.
> iwl_is_monitor_mode() needs to return whether the interface is in
> monitor mode or not and being in monitor mode is specifically when some
> filter flags are set up. This is what is tested in this function.

Thanks for the clarification. Will submit a corrected patch soon.

>
>>  (However, when I submitted the first
>> patches to iwlwifi to enable injection, they were rejected
>> specifically because I checked INJECTED in iwl_tx_skb/iwl394_tx_skb,
>> rather than adding a monitor mode case to iwl_get_sta_id... times
>> change I guess.) I'll submit a patch for this.
>
> Sure - you can move the check to iwl_get_sta_id. You will need to
> indicate to that function that the frame is being injected.
>
> Reinette
>
>
>
>
>
>



-- 
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)

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

end of thread, other threads:[~2009-08-21 18:37 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-20 22:08 [PATCH] iwlwifi: Make injection of non-broadcast frames work again Gábor Stefanik
2009-08-21  8:21 ` Johannes Berg
2009-08-21 13:21   ` Gábor Stefanik
2009-08-21 13:28     ` Johannes Berg
2009-08-21 16:33 ` reinette chatre
2009-08-21 16:43   ` John W. Linville
2009-08-21 17:24   ` Gábor Stefanik
2009-08-21 17:59     ` reinette chatre
2009-08-21 18:10       ` Gábor Stefanik
2009-08-21 18:24         ` reinette chatre
2009-08-21 18:37           ` Gábor Stefanik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).