* Re: [PATCH 1/2] wil6210: set vring index for all descriptors
From: Vladimir Kondratiev @ 2013-06-20 13:55 UTC (permalink / raw)
To: Kirshenbaum Erez; +Cc: linux-wireless
In-Reply-To: <1371732325-4112-1-git-send-email-erezk@wilocity.com>
On Thursday, June 20, 2013 03:45:25 PM Kirshenbaum Erez wrote:
> The vring index (MAC queue id) must be set in all TX descriptors
> otherwise HW will fail to release descriptors for a specific vring
> (disconnect or vring switch flows).
> This is normally occurs when fragmentation required, if vring index
> will not be the same for all SKB descriptors HW will fail to flush this
> MAC queue.
>
> Signed-off-by: Kirshenbaum Erez <erezk@wilocity.com>
> ---
> drivers/net/wireless/ath/wil6210/txrx.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c
> index e1c492b..b79ba10 100644
> --- a/drivers/net/wireless/ath/wil6210/txrx.c
> +++ b/drivers/net/wireless/ath/wil6210/txrx.c
> @@ -621,7 +621,8 @@ static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
> return NULL;
> }
>
> -static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len)
> +static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
> + int vring_index)
> {
> wil_desc_addr_set(&d->dma.addr, pa);
> d->dma.ip_length = 0;
> @@ -631,6 +632,7 @@ static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len)
> d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
> d->dma.length = cpu_to_le16((u16)len);
> d->dma.d0 = 0;
Then, remove line above
> + d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
> d->mac.d[0] = 0;
> d->mac.d[1] = 0;
> d->mac.d[2] = 0;
<skip>
The rest looks fine
Thanks, Vladimir
^ permalink raw reply
* [PATCH 2/2] wil6210: add HW write-back option in TX descriptor
From: Kirshenbaum Erez @ 2013-06-20 12:45 UTC (permalink / raw)
To: qca_vkondrat; +Cc: linux-wireless, Kirshenbaum Erez
Map BIT 9 in TX DMA DWARD 0 as HW write back option.
We must turn on this option in the last TX descriptor,
this is required for old HW compatability.
This option indicate to HW that WB is required for this descriptor.
Signed-off-by: Kirshenbaum Erez <erezk@wilocity.com>
---
drivers/net/wireless/ath/wil6210/txrx.c | 2 +-
drivers/net/wireless/ath/wil6210/txrx.h | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c
index b79ba10..c3e763c 100644
--- a/drivers/net/wireless/ath/wil6210/txrx.c
+++ b/drivers/net/wireless/ath/wil6210/txrx.c
@@ -709,7 +709,7 @@ static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
}
/* for the last seg only */
d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
- d->dma.d0 |= BIT(9); /* BUG: undocumented bit */
+ d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS);
d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
*_d = *d;
diff --git a/drivers/net/wireless/ath/wil6210/txrx.h b/drivers/net/wireless/ath/wil6210/txrx.h
index 23c0781..859aea6 100644
--- a/drivers/net/wireless/ath/wil6210/txrx.h
+++ b/drivers/net/wireless/ath/wil6210/txrx.h
@@ -201,6 +201,10 @@ struct vring_tx_mac {
#define DMA_CFG_DESC_TX_0_CMD_EOP_LEN 1
#define DMA_CFG_DESC_TX_0_CMD_EOP_MSK 0x100
+#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS 9
+#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_LEN 1
+#define DMA_CFG_DESC_TX_0_CMD_MARK_WB_MSK 0x200
+
#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS 10
#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_LEN 1
#define DMA_CFG_DESC_TX_0_CMD_DMA_IT_MSK 0x400
--
1.7.11.7
^ permalink raw reply related
* [PATCH 1/2] wil6210: set vring index for all descriptors
From: Kirshenbaum Erez @ 2013-06-20 12:45 UTC (permalink / raw)
To: qca_vkondrat; +Cc: linux-wireless, Kirshenbaum Erez
The vring index (MAC queue id) must be set in all TX descriptors
otherwise HW will fail to release descriptors for a specific vring
(disconnect or vring switch flows).
This is normally occurs when fragmentation required, if vring index
will not be the same for all SKB descriptors HW will fail to flush this
MAC queue.
Signed-off-by: Kirshenbaum Erez <erezk@wilocity.com>
---
drivers/net/wireless/ath/wil6210/txrx.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c
index e1c492b..b79ba10 100644
--- a/drivers/net/wireless/ath/wil6210/txrx.c
+++ b/drivers/net/wireless/ath/wil6210/txrx.c
@@ -621,7 +621,8 @@ static struct vring *wil_find_tx_vring(struct wil6210_priv *wil,
return NULL;
}
-static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len)
+static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len,
+ int vring_index)
{
wil_desc_addr_set(&d->dma.addr, pa);
d->dma.ip_length = 0;
@@ -631,6 +632,7 @@ static int wil_tx_desc_map(struct vring_tx_desc *d, dma_addr_t pa, u32 len)
d->dma.status = 0; /* BIT(0) should be 0 for HW_OWNED */
d->dma.length = cpu_to_le16((u16)len);
d->dma.d0 = 0;
+ d->dma.d0 = (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
d->mac.d[0] = 0;
d->mac.d[1] = 0;
d->mac.d[2] = 0;
@@ -684,7 +686,7 @@ static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
if (unlikely(dma_mapping_error(dev, pa)))
return -EINVAL;
/* 1-st segment */
- wil_tx_desc_map(d, pa, skb_headlen(skb));
+ wil_tx_desc_map(d, pa, skb_headlen(skb), vring_index);
d->mac.d[2] |= ((nr_frags + 1) <<
MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS);
if (nr_frags)
@@ -701,7 +703,7 @@ static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
DMA_TO_DEVICE);
if (unlikely(dma_mapping_error(dev, pa)))
goto dma_error;
- wil_tx_desc_map(d, pa, len);
+ wil_tx_desc_map(d, pa, len, vring_index);
vring->ctx[i] = NULL;
*_d = *d;
}
@@ -709,7 +711,6 @@ static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_EOP_POS);
d->dma.d0 |= BIT(9); /* BUG: undocumented bit */
d->dma.d0 |= BIT(DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS);
- d->dma.d0 |= (vring_index << DMA_CFG_DESC_TX_0_QID_POS);
*_d = *d;
wil_hex_dump_txrx("Tx ", DUMP_PREFIX_NONE, 32, 4,
--
1.7.11.7
^ permalink raw reply related
* Patch availability
From: Ricardo @ 2013-06-20 13:11 UTC (permalink / raw)
To: linux-wireless
Hi,
My name is Ricardo and I am very interested on these patches, are them
available for download?
Currently, I am working with ath5k patched with GCDC patches, but I prefer
to work with an ath9k patched driver since it is easier to get ath9k cards
nowadays.
If I can help in anything (development, testing), just let me know.
Regards, Ricardo.
^ permalink raw reply
* [PATCH] ath9k: fix queue depth accounting in ath_tx_txqaddbuf
From: Felix Fietkau @ 2013-06-20 13:11 UTC (permalink / raw)
To: linux-wireless; +Cc: linville
ath_tx_txqaddbuf assumes that all the linked buffers in the queue passed
to it are part of the same A-MPDU or MPDU. The CAB queue rework violates
this assumption, which can cause the internal queue depth to go
negative.
Fix this by increasing the counter for all slots of [bf, bf->bf_lastbf]
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
---
drivers/net/wireless/ath/ath9k/xmit.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/xmit.c b/drivers/net/wireless/ath/ath9k/xmit.c
index 7e19d9b..bfb58a5 100644
--- a/drivers/net/wireless/ath/ath9k/xmit.c
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
@@ -1778,9 +1778,13 @@ static void ath_tx_txqaddbuf(struct ath_softc *sc, struct ath_txq *txq,
}
if (!internal) {
- txq->axq_depth++;
- if (bf_is_ampdu_not_probing(bf))
- txq->axq_ampdu_depth++;
+ while (bf) {
+ txq->axq_depth++;
+ if (bf_is_ampdu_not_probing(bf))
+ txq->axq_ampdu_depth++;
+
+ bf = bf->bf_lastbf->bf_next;
+ }
}
}
--
1.8.0.2
^ permalink raw reply related
* Re: BCM4331 deauthenticates every five minutes
From: Arend van Spriel @ 2013-06-20 8:36 UTC (permalink / raw)
To: Chris Adams
Cc: Rafał Miłecki, Larry Finger, b43-dev, linux-wireless
In-Reply-To: <51C2BE54.20509@broadcom.com>
On 06/20/2013 10:33 AM, Arend van Spriel wrote:
> On 06/19/2013 11:11 PM, Chris Adams wrote:
>> Once upon a time, Arend van Spriel <arend@broadcom.com> said:
>>> Can you make a capture using a wireless sniffer (using your thinkpad
>>> maybe)?
>>
>> How would I go about doing that? I've done lots of network debugging
>> with tcpdump and such, but not much wireless stuff.
>>
>
> I use wireshark these days. If you install that you can use the steps
> below and select the wireless interface in wireshark to capture. I use
> wlan0 as interface name, but it may be different for you.
>
> 1. disable network-manager so it won't interfere.
> 2. bring the interface down
> $ sudo ifconfig wlan0 down
> 3. change interface type to monitor
> $ sudo iw dev wlan0 set type monitor
> 4. bring up the interface
> $ sudo ifconfig wlan0 up
> 5. start wireshark and select wlan0
> $ gksudo wireshark
>
> It will complain that running wireshark as root is not secure. If you
> care about that, you should read [1].
Forgot a step. You need to select a channel. You can do that before
starting a capture in wireshark: $ sudo iw dev wlan0 set channel 5
> Regards,
> Arend
>
> [1]
> http://wiki.wireshark.org/Security#Administrator.2Froot_account_not_required.21
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe
> linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply
* Re: BCM4331 deauthenticates every five minutes
From: Arend van Spriel @ 2013-06-20 8:33 UTC (permalink / raw)
To: Chris Adams
Cc: Rafał Miłecki, Larry Finger, b43-dev, linux-wireless
In-Reply-To: <20130619211108.GG4784@cmadams.net>
On 06/19/2013 11:11 PM, Chris Adams wrote:
> Once upon a time, Arend van Spriel <arend@broadcom.com> said:
>> Can you make a capture using a wireless sniffer (using your thinkpad maybe)?
>
> How would I go about doing that? I've done lots of network debugging
> with tcpdump and such, but not much wireless stuff.
>
I use wireshark these days. If you install that you can use the steps
below and select the wireless interface in wireshark to capture. I use
wlan0 as interface name, but it may be different for you.
1. disable network-manager so it won't interfere.
2. bring the interface down
$ sudo ifconfig wlan0 down
3. change interface type to monitor
$ sudo iw dev wlan0 set type monitor
4. bring up the interface
$ sudo ifconfig wlan0 up
5. start wireshark and select wlan0
$ gksudo wireshark
It will complain that running wireshark as root is not secure. If you
care about that, you should read [1].
Regards,
Arend
[1]
http://wiki.wireshark.org/Security#Administrator.2Froot_account_not_required.21
^ permalink raw reply
* [PATCH 3.9/3.10] ath9k_htc: Handle IDLE state transition properly
From: Sujith Manoharan @ 2013-06-20 8:27 UTC (permalink / raw)
To: John Linville; +Cc: linux-wireless, stable
From: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Make sure that a chip reset is done when IDLE is turned
off - this fixes authentication timeouts.
Cc: stable@vger.kernel.org
Reported-by: Ignacy Gawedzki <i@lri.fr>
Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
---
drivers/net/wireless/ath/ath9k/htc_drv_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wireless/ath/ath9k/htc_drv_main.c b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
index eaa94fe..fba6ea7 100644
--- a/drivers/net/wireless/ath/ath9k/htc_drv_main.c
+++ b/drivers/net/wireless/ath/ath9k/htc_drv_main.c
@@ -1183,7 +1183,7 @@ static int ath9k_htc_config(struct ieee80211_hw *hw, u32 changed)
mutex_lock(&priv->htc_pm_lock);
priv->ps_idle = !!(conf->flags & IEEE80211_CONF_IDLE);
- if (priv->ps_idle)
+ if (!priv->ps_idle)
chip_reset = true;
mutex_unlock(&priv->htc_pm_lock);
--
1.8.3.1
^ permalink raw reply related
* [PATCH] ath6kl: Fix race in heart beat polling
From: Mohammed Shafi Shajakhan @ 2013-06-20 7:17 UTC (permalink / raw)
To: linux-wireless
Cc: Kalle Valo, Vasanthakumar Thiagarajan, Mohammed Shafi Shajakhan
From: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Make sure to cancel heart beat timer before
freeing wmi to avoid potential NULL pointer
dereference.
Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
---
drivers/net/wireless/ath/ath6kl/init.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c
index 6a67881..4f316bd 100644
--- a/drivers/net/wireless/ath/ath6kl/init.c
+++ b/drivers/net/wireless/ath/ath6kl/init.c
@@ -1836,6 +1836,9 @@ void ath6kl_stop_txrx(struct ath6kl *ar)
clear_bit(WMI_READY, &ar->flag);
+ if (ar->fw_recovery.enable)
+ del_timer_sync(&ar->fw_recovery.hb_timer);
+
/*
* After wmi_shudown all WMI events will be dropped. We
* need to cleanup the buffers allocated in AP mode and
--
1.7.9.5
^ permalink raw reply related
* Re: [ath9k-devel] ath9k_htc: station unable to authenticate
From: Oleksij Rempel @ 2013-06-20 6:47 UTC (permalink / raw)
To: Ignacy Gawedzki, Johannes Berg, ath9k-devel@lists.ath9k.org,
linux-wireless@vger.kernel.org, Corey Richardson
In-Reply-To: <20130620063925.GA3885@zenon.in.qult.net>
Am 20.06.2013 08:39, schrieb Ignacy Gawedzki:
> On Thu, Jun 20, 2013 at 07:33:30AM +0200, thus spake Oleksij Rempel:
>> Am 19.06.2013 21:33, schrieb Ignacy Gawedzki:
>>> I tested the thing with at least three different APs:
>>>
>>> - Netgear DG834Gv4 with latest firmware.
>>
>> this one is BG with Broadcom BCM4318. Is here original firmware or openwrt?
>
> Original firmware, since OpenWRT doesn't support the ADSL chip.
>
>>> - Netgear DG834Gv5 (don't know which firmware and can't check at this time).
>>
>> this is BG with Conexant CX94610
>>
>>> - hostapd (can't say which version at this time either) with the same
>>> ath9k_htc.
>>
>> this one is actually BGN, did you configured it for N? Can you
>> please provide your hostapd.conf.
>
> I'll manage to get the configuration as soon as possible. It seems the
> association problem went away since I patched the drivers on the AP too, so
> "unpatching" the drivers on the station is not enough to reproduce the
> problem. I'll unpatch the drivers on the AP and re-run the test.
>
>> Do you have problems on all 3 configurations?
>
> On both Netgears for sure. For hostapd I'll confirm that in a little while.
>
>> Can you please test it
>> with some N (HT) capable AP. But please, not with N-draft certified
>> AP.
>
> Is ath9k_htc N-capable?
Yes, if hostapd configured properly.
Question to Corey,
i assume your old AP was supporting only BG networks. And your new one,
which is working fine, supports N?
--
Regards,
Oleksij
^ permalink raw reply
* Re: [ath9k-devel] ath9k_htc: station unable to authenticate
From: Ignacy Gawedzki @ 2013-06-20 6:39 UTC (permalink / raw)
To: Oleksij Rempel
Cc: Johannes Berg, ath9k-devel@lists.ath9k.org,
linux-wireless@vger.kernel.org, Corey Richardson
In-Reply-To: <51C2942A.2080706@rempel-privat.de>
On Thu, Jun 20, 2013 at 07:33:30AM +0200, thus spake Oleksij Rempel:
> Am 19.06.2013 21:33, schrieb Ignacy Gawedzki:
> >I tested the thing with at least three different APs:
> >
> > - Netgear DG834Gv4 with latest firmware.
>
> this one is BG with Broadcom BCM4318. Is here original firmware or openwrt?
Original firmware, since OpenWRT doesn't support the ADSL chip.
> > - Netgear DG834Gv5 (don't know which firmware and can't check at this time).
>
> this is BG with Conexant CX94610
>
> > - hostapd (can't say which version at this time either) with the same
> > ath9k_htc.
>
> this one is actually BGN, did you configured it for N? Can you
> please provide your hostapd.conf.
I'll manage to get the configuration as soon as possible. It seems the
association problem went away since I patched the drivers on the AP too, so
"unpatching" the drivers on the station is not enough to reproduce the
problem. I'll unpatch the drivers on the AP and re-run the test.
> Do you have problems on all 3 configurations?
On both Netgears for sure. For hostapd I'll confirm that in a little while.
> Can you please test it
> with some N (HT) capable AP. But please, not with N-draft certified
> AP.
Is ath9k_htc N-capable?
--
I used to have a sig, but I've stopped smoking now.
^ permalink raw reply
* Re: [GIT] net merged into net-next
From: Johannes Berg @ 2013-06-20 5:37 UTC (permalink / raw)
To: David Miller; +Cc: netdev, linux-wireless, stephen
In-Reply-To: <20130619.165713.2010181145193961339.davem@davemloft.net>
On Wed, 2013-06-19 at 16:57 -0700, David Miller wrote:
>
> 'net' has been merged into 'net-next', the only non-trivial merge
> conflict was in wireless.
>
> It has to do with the bug fix that went recently into 'net' to fix the
> race that Linus discovered, which overlaps with the 'net-next' locking
> changes to nl80211.
>
> I am pretty sure I fixed a bug in those locking changes in my merge
> commit, in that the RTNL mutex was not released in all return paths of
> nl80211_dump_wiphy().
Yes.
> Please double-check my work.
Looks good, thanks.
We had a fix for the RTNL mutex bug on its way to you (currently in
wireless-next), but this way is good too :-)
johannes
^ permalink raw reply
* Re: [ath9k-devel] ath9k_htc: station unable to authenticate
From: Oleksij Rempel @ 2013-06-20 5:33 UTC (permalink / raw)
To: Ignacy Gawedzki, Johannes Berg, ath9k-devel@lists.ath9k.org,
linux-wireless@vger.kernel.org, Corey Richardson
In-Reply-To: <20130619193316.GA29582@zenon.in.qult.net>
Am 19.06.2013 21:33, schrieb Ignacy Gawedzki:
> On Wed, Jun 19, 2013 at 08:37:42PM +0200, thus spake Oleksij Rempel:
>> Can you please tell more about your access point:
>> - hardware
>> - firmware
>> - configuration
>> - "iw dev wlan0 scan dump"
>
> I tested the thing with at least three different APs:
>
> - Netgear DG834Gv4 with latest firmware.
this one is BG with Broadcom BCM4318. Is here original firmware or openwrt?
> - Netgear DG834Gv5 (don't know which firmware and can't check at this time).
this is BG with Conexant CX94610
> - hostapd (can't say which version at this time either) with the same
> ath9k_htc.
this one is actually BGN, did you configured it for N? Can you please
provide your hostapd.conf.
Do you have problems on all 3 configurations? Can you please test it
with some N (HT) capable AP. But please, not with N-draft certified AP.
--
Regards,
Oleksij
^ permalink raw reply
* Re: BCM4331 deauthenticates every five minutes
From: Chris Adams @ 2013-06-20 0:28 UTC (permalink / raw)
To: Rafał Miłecki, Larry Finger, b43-dev, linux-wireless
In-Reply-To: <20130619175850.GD4784@cmadams.net>
Once upon a time, Chris Adams <cma@cmadams.net> said:
> The AP appears to be an Adtran (don't know the model).
The issue appears to be specific to the Adtran AP combined with the b43
device. I have a D-Link DIR-625 at home (running OpenWRT 12.09, using
ath9k wireless driver), and the MacBook seems to stay connected to it
okay.
--
Chris Adams <cma@cmadams.net>
^ permalink raw reply
* Re: Howto remove rfkill from kernel
From: rlwkayaker @ 2013-06-20 0:21 UTC (permalink / raw)
To: Jason Cooper; +Cc: Dan Williams, linux-wireless
In-Reply-To: <20130620000941.GL31667@titan.lakedaemon.net>
On Wed, 19 Jun 2013 20:09:41 -0400
Jason Cooper <jason@lakedaemon.net> wrote:
> On Wed, Jun 19, 2013 at 08:03:56PM -0400, rlwkayaker wrote:
> > rfkill has a hard block on the wireless.
>
> Is this system dual-boot with windows? If so, boot into
> windows and enable wireless via the usual mechanisms. Then
> reboot into Linux.
>
> hth,
>
> Jason.
No, there is nothing on this system but Linux. At the moment,
only antiX-13.
Richard
^ permalink raw reply
* Re: Howto remove rfkill from kernel
From: Jason Cooper @ 2013-06-20 0:09 UTC (permalink / raw)
To: rlwkayaker; +Cc: Dan Williams, linux-wireless
In-Reply-To: <20130619200356.741ec084@compuzoo>
On Wed, Jun 19, 2013 at 08:03:56PM -0400, rlwkayaker wrote:
> rfkill has a hard block on the wireless.
Is this system dual-boot with windows? If so, boot into windows and
enable wireless via the usual mechanisms. Then reboot into Linux.
hth,
Jason.
^ permalink raw reply
* Re: Howto remove rfkill from kernel
From: rlwkayaker @ 2013-06-20 0:03 UTC (permalink / raw)
To: Dan Williams; +Cc: linux-wireless
In-Reply-To: <1371682734.1051.0.camel@dcbw.foobar.com>
On Wed, 19 Jun 2013 17:58:54 -0500
Dan Williams <dcbw@redhat.com> wrote:
> On Wed, 2013-06-19 at 13:36 -0400, rlwkayaker wrote:
> > The rfkill "feature" has rendered the internal wireless of my
> > Averatec 3260 laptop unusable. It works fine with earlier
> > kernels without this "feature". How do I remove the rfkill
> > "feature" from a custom built kernel?
>
> Best thing to do is figure out why this is happening, and fix
> it. What kernels worked? What kernels fail? What wifi card
> do you have, and was it the card the laptop originally came
> with?
>
> Dan
>
I have been using 2.6.32-5-686 successfully with Debian
Squeeze. Earlier kernels native to Debian Lenny and Etch also
worked well. I tried to update to Debian Wheezy which uses
3.2.0.4 and ran into many problems, including the rfkill
"feature". I gave up on Wheezy and I tried Gentoo, with it's
3.? kernel and the same rfkill problem, among others. I am
currently using 3.7.10-antiX which works very well in this
laptop, except for rfkill "feature". rfkill has a hard block on
the wireless. The internal card is original and uses the
rt2500pci module. I can, and do, temporarily, use a PCMCIA
wireless card in that laptop successfully and rfkill doesn't
interfere. I don't find this to be a good solution. I would
rather go back to the internal card without the PCMCIA appendage
protruding from the side of the machine.
I have spent a lot of time trying various "fixes" identified on
the Internet. I'm left with building a kernel without rfkill,
using the PCMCIA card or scrapping my favorite laptop because
somebody decided to put this "feature" in the kernel with
inadequate information.
Richard
^ permalink raw reply
* [GIT] net merged into net-next
From: David Miller @ 2013-06-19 23:57 UTC (permalink / raw)
To: netdev; +Cc: linux-wireless, johannes, stephen
'net' has been merged into 'net-next', the only non-trivial merge
conflict was in wireless.
It has to do with the bug fix that went recently into 'net' to fix the
race that Linus discovered, which overlaps with the 'net-next' locking
changes to nl80211.
I am pretty sure I fixed a bug in those locking changes in my merge
commit, in that the RTNL mutex was not released in all return paths of
nl80211_dump_wiphy().
Please double-check my work.
Thanks.
^ permalink raw reply
* Re: Howto remove rfkill from kernel
From: Dan Williams @ 2013-06-19 22:58 UTC (permalink / raw)
To: rlwkayaker; +Cc: linux-wireless
In-Reply-To: <20130619133638.3d183a00@compuzoo>
On Wed, 2013-06-19 at 13:36 -0400, rlwkayaker wrote:
> The rfkill "feature" has rendered the internal wireless of my
> Averatec 3260 laptop unusable. It works fine with earlier
> kernels without this "feature". How do I remove the rfkill
> "feature" from a custom built kernel?
Best thing to do is figure out why this is happening, and fix it. What
kernels worked? What kernels fail? What wifi card do you have, and was
it the card the laptop originally came with?
Dan
^ permalink raw reply
* Re: pull request: wireless 2013-06-19
From: David Miller @ 2013-06-19 22:50 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, netdev, linux-kernel
In-Reply-To: <20130619194141.GH12079@tuxdriver.com>
From: "John W. Linville" <linville@tuxdriver.com>
Date: Wed, 19 Jun 2013 15:41:41 -0400
> One more late-breaking fix in the nl80211 code, the fix for the
> nl80211_fam.attrbuf race Linus ran into and analysed. Hopefully it
> looks familiar... :-)
>
> Let me know if there are problems!
Easiest pull request ever :-) Pulled, thanks John.
^ permalink raw reply
* Ralink RT2870: LED on device does not blink with 3.10-rc6+
From: Paul Menzel @ 2013-06-19 22:41 UTC (permalink / raw)
To: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 482 bytes --]
Dear Linux Wireless folks,
with a self-built Linux 3.10-rc6+
$ git describe
v3.10-rc6-84-gc069114
and a TRENDnet TEW624UB USB WLAN device
$ lsusb -s 001:005
Bus 001 Device 005: ID 148f:2870 Ralink Technology, Corp. RT2870 Wireless Adapter
everything works fine, *but* in comparison to 3.9.6 the LED on the
device is not working/blinking during traffic.
Do I miss a Kconfig option or is this a regression?
Thanks,
Paul
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply
* Re: Connection not established with Realtek RTL8188CUS based USB device (EDIMAX)
From: Paul Menzel @ 2013-06-19 22:36 UTC (permalink / raw)
To: Larry Finger; +Cc: linux-wireless
In-Reply-To: <51BCD7BA.1040900@lwfinger.net>
[-- Attachment #1.1: Type: text/plain, Size: 4881 bytes --]
Am Samstag, den 15.06.2013, 16:08 -0500 schrieb Larry Finger:
> On 06/15/2013 02:57 PM, Paul Menzel wrote:
> > hopefully I am contacting the correct list. I am not able to use the
> > Realtek RTL8188CUS based USB WLAN device Edimax EW-7811Un.
> >
> > Bus 002 Device 005: ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
> >
> > The device did not work with Debian Wheezy with Linux 3.2.x, Debian
> > Sid/unstable with Linux 3.9.x, Ubuntu 12.04 with Linux 3.2.12 to 3.5 and
> > Ubuntu 13.04 with Linux 3.8. The person, from whom the device is from,
> > claims the device once worked with Ubuntu, but I do not know which
> > version and what WLAN type(?) this was with.
> >
> > The behavior is always the same. The device is detected and the
> > NetworkManager applet `nm-applet` is also able to detect the available
> > networks. But wanting to connect to one and entering the correct
> > password, the connection cannot be established and I am asked for the
> > password again. I tested this with different systems and different
> > networks and also with wpa_supplicant. A Ralink based WLAN USB device
> > works just fine.
> >
> > The Realtek RTL8188CUS WLAN device works also fine under Microsoft
> > Windows, so the device is functional.
>
> Use a compat-wireless package from 3.10-rc1 or later. If that fails, then I will
> give you a debug sequence to run.
I just built Linux 3.10-rc6+ (containing the patch you attached in your
other reply)
$ git describe
v3.10-rc6-84-gc069114
and it still fails. Though with a different error message.
kernel: [ 174.729668] rtlwifi:rtl_watchdog_wq_callback():<0-0> AP off, try to reconnect now
kernel: [ 174.729753] wlan1: Connection to AP yy:yy:yy:yy:yy:yy lost
wpa_supplicant[5247]: wlan1: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
wpa_supplicant[5247]: wlan1: CTRL-EVENT-DISCONNECTED bssid=yy:yy:yy:yy:yy:yy reason=4
I am pretty sure I am using a WPA2 WLAN. The NetworkManager developer
Dan Williams confirmed that [1].
Please find the parts from `/var/log/syslog` attached.
It also contains a backtrace, which I reported a bug about already
somewhere. (I’ll get the reference later.)
[ 168.601781] ------------[ cut here ]------------
[ 168.601805] WARNING: at kernel/workqueue.c:1365 __queue_work+0x177/0x1d1()
[ 168.601809] Modules linked in: arc4 rtl8192cu rtlwifi mac80211 cfg80211 rtl8192c_common ip6table_filter ip6_tables iptable_filter ip_tables x_tables binfmt_misc reiserfs xfs crc32c libcrc32c w83627ehf hwmon_vid loop firewire_sbp2 firewire_core crc_itu_t fuse radeon snd_hda_codec_realtek snd_hda_intel snd_hda_codec backlight snd_hwdep drm_kms_helper snd_pcm snd_page_alloc ttm snd_seq_midi snd_seq_midi_event snd_rawmidi drm snd_seq snd_seq_device snd_timer kvm_amd kvm snd i2c_algo_bit soundcore psmouse processor button serio_raw evdev ext3 mbcache jbd sha256_generic cbc dm_crypt dm_mod raid1 md_mod usbhid sd_mod crc_t10dif r8169 mii fan thermal thermal_sys ahci libahci libata scsi_mod sp5100_tco
[ 168.601896] CPU: 1 PID: 39 Comm: kworker/1:2 Not tainted 3.10.0-rc6+ #103
[ 168.601900] Hardware name: ASROCK E350M1, BIOS 4.0-4334-geca6d02 06/19/2013
[ 168.601912] Workqueue: rtl92c_usb rtl_watchdog_wq_callback [rtlwifi]
[ 168.601916] f66e17b8 c1023f9b c10364f3 f66e6f00 f4032840 f2c51084 00000001 c1023fbb
[ 168.601925] 00000009 00000000 c10364f3 f66d8f80 00000008 00000297 f2c51084 00000008
[ 168.601933] f2c50e00 c1036585 f4032840 f2c50d80 00000000 00000000 f8429287 00000000
[ 168.601942] Call Trace:
[ 168.601952] [<c1023f9b>] ? warn_slowpath_common+0x4d/0x60
[ 168.601958] [<c10364f3>] ? __queue_work+0x177/0x1d1
[ 168.601964] [<c1023fbb>] ? warn_slowpath_null+0xd/0x10
[ 168.601969] [<c10364f3>] ? __queue_work+0x177/0x1d1
[ 168.601975] [<c1036585>] ? queue_work_on+0x2b/0x36
[ 168.601984] [<f8429287>] ? rtl_watchdog_wq_callback+0x1d9/0x37f [rtlwifi]
[ 168.601992] [<c1042a00>] ? finish_task_switch+0x37/0x89
[ 168.601998] [<c12fe282>] ? __schedule+0x441/0x4c7
[ 168.602004] [<c1037459>] ? process_one_work+0x14c/0x230
[ 168.602010] [<c1037871>] ? worker_thread+0x107/0x1bd
[ 168.602015] [<c103776a>] ? rescuer_thread+0x210/0x210
[ 168.602021] [<c103b099>] ? kthread+0x68/0x6d
[ 168.602027] [<c1302f37>] ? ret_from_kernel_thread+0x1b/0x28
[ 168.602032] [<c103b031>] ? __kthread_parkme+0x50/0x50
[ 168.602036] ---[ end trace 40aa884081d482ce ]---
Thanks,
Paul
[1] https://mail.gnome.org/archives/networkmanager-list/2013-June/msg00112.html
[-- Attachment #1.2: 20130620--edimax-rtl8192cu.syslog --]
[-- Type: text/plain, Size: 115623 bytes --]
Jun 20 00:04:25 myhostname kernel: [ 162.307190] usb usb1: usb wakeup-resume
Jun 20 00:04:25 myhostname kernel: [ 162.307211] usb usb1: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 162.307290] ehci-pci 0000:00:12.2: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 162.329895] hub 1-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 162.329934] ehci-pci 0000:00:12.2: GetStatus port:3 status 001803 0 ACK POWER sig=j CSC CONNECT
Jun 20 00:04:25 myhostname kernel: [ 162.329941] hub 1-0:1.0: port 3: status 0501 change 0001
Jun 20 00:04:25 myhostname kernel: [ 162.433986] hub 1-0:1.0: state 7 ports 5 chg 0008 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 162.434090] hub 1-0:1.0: port 3, status 0501, change 0000, 480 Mb/s
Jun 20 00:04:25 myhostname kernel: [ 162.489933] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
Jun 20 00:04:25 myhostname kernel: [ 162.489951] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0 ACK POWER sig=se0 PE CONNECT
Jun 20 00:04:25 myhostname kernel: [ 162.545915] usb 1-3: new high-speed USB device number 4 using ehci-pci
Jun 20 00:04:25 myhostname kernel: [ 162.601911] ehci-pci 0000:00:12.2: port 3 reset complete, port enabled
Jun 20 00:04:25 myhostname kernel: [ 162.601927] ehci-pci 0000:00:12.2: GetStatus port:3 status 001005 0 ACK POWER sig=se0 PE CONNECT
Jun 20 00:04:25 myhostname kernel: [ 162.679761] usb 1-3: default language 0x0409
Jun 20 00:04:25 myhostname kernel: [ 162.681038] usb 1-3: udev 4, busnum 1, minor = 3
Jun 20 00:04:25 myhostname kernel: [ 162.681056] usb 1-3: New USB device found, idVendor=7392, idProduct=7811
Jun 20 00:04:25 myhostname kernel: [ 162.681067] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 20 00:04:25 myhostname kernel: [ 162.681078] usb 1-3: Product: 802.11n WLAN Adapter
Jun 20 00:04:25 myhostname kernel: [ 162.681087] usb 1-3: Manufacturer: Realtek
Jun 20 00:04:25 myhostname kernel: [ 162.681095] usb 1-3: SerialNumber: 00e04c000001
Jun 20 00:04:25 myhostname kernel: [ 162.681499] usb 1-3: usb_probe_device
Jun 20 00:04:25 myhostname kernel: [ 162.681538] usb 1-3: configuration #1 chosen from 1 choice
Jun 20 00:04:25 myhostname kernel: [ 162.682481] usb 1-3: adding 1-3:1.0 (config #1, interface 0)
Jun 20 00:04:25 myhostname mtp-probe: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:12.2/usb1/1-3"
Jun 20 00:04:25 myhostname mtp-probe: bus: 1, device: 4 was not an MTP device
Jun 20 00:04:25 myhostname kernel: [ 162.895736] usb usb5: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 162.895821] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 162.958017] hub 5-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 162.958207] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 162.958254] hub 5-0:1.0: hub_suspend
Jun 20 00:04:25 myhostname kernel: [ 162.958267] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:25 myhostname kernel: [ 162.958343] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:25 myhostname kernel: [ 162.958415] usb usb4: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 162.958492] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 163.021637] hub 4-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 163.022026] usb usb2: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 163.022103] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 163.022130] hub 2-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 163.022696] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 163.022719] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 163.022733] hub 4-0:1.0: hub_suspend
Jun 20 00:04:25 myhostname kernel: [ 163.022747] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:25 myhostname kernel: [ 163.022824] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:25 myhostname kernel: [ 163.022848] hub 2-0:1.0: hub_suspend
Jun 20 00:04:25 myhostname kernel: [ 163.022854] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:25 myhostname kernel: [ 163.022859] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:25 myhostname kernel: [ 163.023794] usb usb5: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 163.023877] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 163.085977] hub 5-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 163.086032] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 163.086079] hub 5-0:1.0: hub_suspend
Jun 20 00:04:25 myhostname kernel: [ 163.086092] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:25 myhostname kernel: [ 163.086133] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:25 myhostname kernel: [ 163.086243] usb usb5: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 163.097799] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 163.161778] hub 5-0:1.0: hub_resume
Jun 20 00:04:25 myhostname kernel: [ 163.161922] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:25 myhostname kernel: [ 163.161948] hub 5-0:1.0: hub_suspend
Jun 20 00:04:25 myhostname kernel: [ 163.161961] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:25 myhostname kernel: [ 163.162037] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:25 myhostname kernel: [ 163.162136] usb usb4: usb auto-resume
Jun 20 00:04:25 myhostname kernel: [ 163.162214] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:25 myhostname kernel: [ 163.206462] calling cfg80211_init+0x0/0xa6 [cfg80211] @ 5208
Jun 20 00:04:25 myhostname kernel: [ 163.209266] cfg80211: Calling CRDA to update world regulatory domain
Jun 20 00:04:25 myhostname kernel: [ 163.210514] initcall cfg80211_init+0x0/0xa6 [cfg80211] returned 0 after 3853 usecs
Jun 20 00:04:26 myhostname kernel: [ 163.225677] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.226027] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.226105] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.226131] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.226952] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.227032] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.227053] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.227072] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.227087] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.227098] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.227173] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.227196] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.227202] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.227206] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.289596] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.289809] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.289888] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.289914] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.289932] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.289943] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.290019] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.353586] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.353705] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.353764] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.353776] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.353852] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.353944] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.365589] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.429599] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.429671] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.429705] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.429720] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.429796] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.429912] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.429991] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.430017] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.430058] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.430073] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.430080] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.430086] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.442063] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.453592] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.453631] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.453689] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.453723] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.453737] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.453744] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.457414] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.457497] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.517593] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.517656] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.517684] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.517698] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.517775] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.517861] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.529590] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.593722] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.593883] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.593918] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.593939] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.593986] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.594126] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.594205] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.645218] calling ieee80211_init+0x0/0x34 [mac80211] @ 5208
Jun 20 00:04:26 myhostname kernel: [ 163.645497] initcall ieee80211_init+0x0/0x34 [mac80211] returned 0 after 216 usecs
Jun 20 00:04:26 myhostname kernel: [ 163.657604] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.657674] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.657701] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.657716] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.657792] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.657877] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.669622] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.733736] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.733970] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.734006] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.734021] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.734029] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.734171] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.734180] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.734205] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.734247] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.734261] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.734268] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.734273] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.746281] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.757970] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.758006] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.758195] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.758242] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.758256] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.758262] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.771134] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.771219] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.820783] calling rtl_core_module_init+0x0/0x1000 [rtlwifi] @ 5208
Jun 20 00:04:26 myhostname kernel: [ 163.820809] initcall rtl_core_module_init+0x0/0x1000 [rtlwifi] returned 0 after 2 usecs
Jun 20 00:04:26 myhostname kernel: [ 163.833596] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.833789] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.833868] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.833882] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.833911] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.833922] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.833928] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.885387] calling rtl8192cu_driver_init+0x0/0x1000 [rtl8192cu] @ 5208
Jun 20 00:04:26 myhostname kernel: [ 163.885438] rtl8192cu 1-3:1.0: usb_probe_interface
Jun 20 00:04:26 myhostname kernel: [ 163.885446] rtl8192cu 1-3:1.0: usb_probe_interface - got id
Jun 20 00:04:26 myhostname kernel: [ 163.885657] rtl8192cu: Chip version 0x10
Jun 20 00:04:26 myhostname kernel: [ 163.897654] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.897730] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.897756] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.897770] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.897778] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.897868] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.909561] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.973667] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.973729] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.973756] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.973769] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.973777] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.974045] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.974053] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.974078] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.974111] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.974135] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.974148] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.974154] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 163.986106] usb usb2: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 163.997627] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 163.997663] hub 2-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 163.997883] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 163.997919] hub 2-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 163.997931] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 163.997937] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 164.000231] rtl8192cu: MAC address: 80:1f:02:7c:de:7b
Jun 20 00:04:26 myhostname kernel: [ 164.000253] rtl8192cu: Board Type 0
Jun 20 00:04:26 myhostname kernel: [ 164.000698] rtlwifi: rx_max_size 15360, rx_urb_num 8, in_ep 1
Jun 20 00:04:26 myhostname kernel: [ 164.000773] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw.bin
Jun 20 00:04:26 myhostname kernel: [ 164.002590] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 164.002605] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 164.002897] usbcore: registered new interface driver rtl8192cu
Jun 20 00:04:26 myhostname kernel: [ 164.002925] initcall rtl8192cu_driver_init+0x0/0x1000 [rtl8192cu] returned 0 after 114754 usecs
Jun 20 00:04:26 myhostname kernel: [ 164.065735] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 164.065798] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 164.065840] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 164.065853] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 164.065930] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 164.066020] usb usb5: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 164.077713] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 164.098041] calling arc4_init+0x0/0x1000 [arc4] @ 5225
Jun 20 00:04:26 myhostname kernel: [ 164.098668] initcall arc4_init+0x0/0x1000 [arc4] returned 0 after 596 usecs
Jun 20 00:04:26 myhostname kernel: [ 164.101601] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
Jun 20 00:04:26 myhostname kernel: [ 164.105198] rtlwifi: wireless switch is on
Jun 20 00:04:26 myhostname kernel: [ 164.141707] hub 5-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 164.141879] usb usb4: usb auto-resume
Jun 20 00:04:26 myhostname kernel: [ 164.141959] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:26 myhostname kernel: [ 164.141976] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 164.141999] hub 5-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 164.142010] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 164.142086] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): using nl80211 for WiFi device control
Jun 20 00:04:26 myhostname NetworkManager[3094]: <warn> (wlan1): driver supports Access Point (AP) mode
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): new 802.11 WiFi device (driver: 'rtl8192cu' ifindex: 3)
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): exported as /org/freedesktop/NetworkManager/Devices/1
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): now managed
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Jun 20 00:04:26 myhostname NetworkManager[3094]: <info> (wlan1): bringing up device.
Jun 20 00:04:26 myhostname kernel: [ 164.166970] rtl8192cu: MAC auto ON okay!
Jun 20 00:04:26 myhostname kernel: [ 164.211888] hub 4-0:1.0: hub_resume
Jun 20 00:04:26 myhostname kernel: [ 164.211943] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:26 myhostname kernel: [ 164.211987] hub 4-0:1.0: hub_suspend
Jun 20 00:04:26 myhostname kernel: [ 164.211999] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:26 myhostname kernel: [ 164.212076] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:26 myhostname kernel: [ 164.212151] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.221572] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.233659] rtl8192cu: Tx queue select: 0x05
Jun 20 00:04:27 myhostname kernel: [ 164.297783] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.298120] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.298197] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.298224] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.298941] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.298989] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.299006] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.299023] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.299038] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.299048] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.299123] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.299146] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.299152] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.299156] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.361778] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.361981] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.362060] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.362076] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.362100] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.362110] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.362186] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.425794] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.426154] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.426231] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.426258] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.429182] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.429263] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.429283] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.429303] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.429451] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.429463] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.429538] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.429598] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.429605] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.429610] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.489659] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.489872] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.489951] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.489969] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.489991] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.490002] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.490077] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.553788] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.554149] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.554226] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.554253] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.554770] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.554848] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.554862] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.554879] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.555021] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.555032] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.555108] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.555131] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.555137] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.555142] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> (wlan1): preparing device.
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> (wlan1): deactivating device (reason 'managed') [2]
Jun 20 00:04:27 myhostname kernel: [ 164.608263] IPv6: ADDRCONF(NETDEV_UP): wlan1: link is not ready
Jun 20 00:04:27 myhostname dbus[2790]: [system] Activating service name='fi.w1.wpa_supplicant1' (using servicehelper)
Jun 20 00:04:27 myhostname NetworkManager[3094]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/net/wlan1, iface: wlan1)
Jun 20 00:04:27 myhostname NetworkManager[3094]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:12.2/usb1/1-3/1-3:1.0/net/wlan1, iface: wlan1): no ifupdown configuration found.
Jun 20 00:04:27 myhostname kernel: [ 164.617598] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.617646] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.617807] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.617819] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.617827] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.617894] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.629624] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.693788] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.693935] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.693961] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.693971] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.693982] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.693997] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.694004] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.761803] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.761913] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.761952] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.761967] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.761975] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.762027] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.773791] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname dbus[2790]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> wpa_supplicant started
Jun 20 00:04:27 myhostname wpa_supplicant[5247]: rfkill: Cannot open RFKILL control device
Jun 20 00:04:27 myhostname kernel: [ 164.837585] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.837658] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.837691] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.837706] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.837714] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.837916] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.837926] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.837952] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.837994] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.838009] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.838016] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.838021] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: starting -> ready
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> (wlan1): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Jun 20 00:04:27 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: ready -> inactive
Jun 20 00:04:27 myhostname NetworkManager[3094]: <warn> Trying to remove a non-existant call id.
Jun 20 00:04:27 myhostname kernel: [ 164.849982] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.861562] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.861599] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.863373] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.863388] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.863417] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.863448] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.863461] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.863467] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.925631] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.925844] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.925854] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.925870] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.925892] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.925903] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.925909] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.989652] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.990013] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.990022] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.990047] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 164.991533] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 164.991545] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 164.991564] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.991582] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 164.991597] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.991607] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.991614] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 164.991637] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 164.991643] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 164.991648] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 165.053801] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 165.053890] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 165.053937] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 165.053952] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 165.053960] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 165.054013] usb usb5: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 165.065698] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 165.129858] hub 5-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 165.130016] usb usb4: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 165.130026] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 165.130075] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 165.130105] hub 5-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 165.130117] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 165.130125] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 165.193796] hub 4-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 165.194043] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 165.194073] hub 4-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 165.194087] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 165.194096] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:27 myhostname kernel: [ 165.194167] usb usb2: usb auto-resume
Jun 20 00:04:27 myhostname kernel: [ 165.194175] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:27 myhostname kernel: [ 165.194201] hub 2-0:1.0: hub_resume
Jun 20 00:04:27 myhostname kernel: [ 165.194293] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:27 myhostname kernel: [ 165.194338] hub 2-0:1.0: hub_suspend
Jun 20 00:04:27 myhostname kernel: [ 165.194351] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:27 myhostname kernel: [ 165.194357] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Auto-activating connection 'MYWLAN'.
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) starting connection 'MYWLAN'
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> (wlan1): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) scheduled...
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) started...
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) scheduled...
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) complete.
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) starting...
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> (wlan1): device state change: prepare -> config (reason 'none') [40 50 0]
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1/wireless): access point 'MYWLAN' has security, but secrets are required.
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> (wlan1): device state change: config -> need-auth (reason 'none') [50 60 0]
Jun 20 00:04:28 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) complete.
Jun 20 00:04:28 myhostname kernel: [ 166.198512] usb usb5: usb auto-resume
Jun 20 00:04:28 myhostname kernel: [ 166.198528] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.261799] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.262021] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.262031] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.262055] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.262084] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.262098] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.262107] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.325800] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.325950] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.325995] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.326008] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.326015] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.326222] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.326230] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.326254] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.326344] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.326390] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.326405] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.326411] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.327779] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.327793] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.389795] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.389880] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.389928] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.389943] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.389951] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.390002] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.401856] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.465791] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.465953] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.465963] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.466017] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.466040] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.466051] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.466058] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.529794] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.529913] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.529961] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.529976] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.529984] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.530057] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.541706] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.605795] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.606119] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.606133] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.606142] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.606149] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.606163] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.606168] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.606173] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.606205] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.606220] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.606227] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.606233] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.618276] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.629602] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.629637] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.630439] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.630450] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.631123] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.631155] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.631169] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.631175] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.693660] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.693753] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.693830] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.693843] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.693851] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.693907] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.693916] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.757663] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.758025] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.758034] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.758060] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.761187] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.761214] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.761228] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.761243] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.761251] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.761275] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.761282] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.761288] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.763570] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.763584] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.825802] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.825942] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.825986] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.825999] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.826007] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.826066] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.826075] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.893649] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.893730] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.893769] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.893784] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.893792] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.893882] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.905624] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.969824] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.969894] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.969919] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.969933] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.969940] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.970219] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.970227] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 166.970252] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 166.970343] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 166.970389] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 166.970404] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 166.970410] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 166.970627] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 166.970637] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 167.033669] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 167.033773] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 167.033819] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 167.033834] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 167.033842] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 167.033907] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 167.045809] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 167.109609] hub 5-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 167.109780] usb usb4: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 167.109790] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 167.109807] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 167.109829] hub 5-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 167.109839] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 167.109846] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) scheduled...
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) started...
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> (wlan1): device state change: need-auth -> prepare (reason 'none') [60 40 0]
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) scheduled...
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 1 of 5 (Device Prepare) complete.
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) starting...
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> (wlan1): device state change: prepare -> config (reason 'none') [40 50 0]
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1/wireless): connection 'MYWLAN' has security, and secrets exist. No new secrets needed.
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: added 'ssid' value 'MYWLAN 1'
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: added 'scan_ssid' value '1'
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: added 'auth_alg' value 'OPEN'
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: added 'psk' value '<omitted>'
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Activation (wlan1) Stage 2 of 5 (Device Configure) complete.
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> Config: set interface ap_scan to 1
Jun 20 00:04:29 myhostname kernel: [ 167.173625] hub 4-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 167.173978] usb usb2: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 167.173987] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 167.174012] hub 2-0:1.0: hub_resume
Jun 20 00:04:29 myhostname kernel: [ 167.174865] usb usb5: usb auto-resume
Jun 20 00:04:29 myhostname kernel: [ 167.174878] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:29 myhostname kernel: [ 167.174899] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 167.174919] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:29 myhostname kernel: [ 167.174933] hub 4-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 167.174944] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 167.174951] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:29 myhostname kernel: [ 167.174973] hub 2-0:1.0: hub_suspend
Jun 20 00:04:29 myhostname kernel: [ 167.174979] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:29 myhostname kernel: [ 167.174984] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:29 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: inactive -> scanning
Jun 20 00:04:30 myhostname kernel: [ 167.237815] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.237959] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.238003] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.238017] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.238024] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.238084] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.238093] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.301803] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.301900] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.301946] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.301961] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.301969] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.302021] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.313695] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.377798] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.377873] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.377909] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.377921] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.377929] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.378200] usb usb2: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.378207] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.378232] hub 2-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.378330] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.378376] hub 2-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.378390] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.378396] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.379057] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.379068] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.441798] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.441888] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.441936] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.441951] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.441959] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.442005] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.453647] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.517805] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.517974] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.517984] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.518000] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.518021] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.518031] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.518038] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.581802] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.581951] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.581995] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.582008] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.582015] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.582226] usb usb2: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.582234] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.582259] hub 2-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.582349] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.582396] hub 2-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.582411] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.582417] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.584133] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.584146] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.645800] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.645951] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.645977] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.645990] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.645998] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.646060] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.646070] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.709822] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.709885] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.709930] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.709944] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.709952] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.710041] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.721870] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.785817] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.785967] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.786014] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.786028] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.786036] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.786162] usb usb2: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.786171] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.786196] hub 2-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.786289] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.786336] hub 2-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.786350] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.786355] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.788118] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.788133] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.849814] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.849958] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.850002] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.850015] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.850023] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.850081] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.850090] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.917812] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.917920] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.917959] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.917973] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.917981] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.918019] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.929835] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname wpa_supplicant[5247]: wlan1: SME: Trying to authenticate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:30 myhostname kernel: [ 167.967097] wlan1: authenticate with yy:yy:yy:yy:yy:yy
Jun 20 00:04:30 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: scanning -> authenticating
Jun 20 00:04:30 myhostname kernel: [ 167.993879] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.994212] usb usb2: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.994221] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.994247] hub 2-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 167.994758] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 167.994770] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 167.994792] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.994813] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 167.994830] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.994845] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.994854] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.994880] hub 2-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 167.994886] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 167.994892] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 167.997899] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:30 myhostname wpa_supplicant[5247]: wlan1: Trying to associate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:30 myhostname kernel: [ 168.025001] wlan1: authenticated
Jun 20 00:04:30 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: authenticating -> associating
Jun 20 00:04:30 myhostname kernel: [ 168.029594] wlan1: associate with yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:30 myhostname kernel: [ 168.057601] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 168.057797] usb usb4: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 168.057808] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 168.057824] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 168.057848] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 168.057859] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 168.057866] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 168.088883] wlan1: RX AssocResp from yy:yy:yy:yy:yy:yy (capab=0x431 status=0 aid=2)
Jun 20 00:04:30 myhostname kernel: [ 168.088962] wlan1: associated
Jun 20 00:04:30 myhostname wpa_supplicant[5247]: wlan1: Associated with yy:yy:yy:yy:yy:yy
Jun 20 00:04:30 myhostname kernel: [ 168.089975] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready
Jun 20 00:04:30 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: associating -> associated
Jun 20 00:04:30 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: associated -> 4-way handshake
Jun 20 00:04:30 myhostname kernel: [ 168.121598] hub 4-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 168.121974] usb usb2: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 168.121983] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 168.122008] hub 2-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 168.124749] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 168.124764] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:30 myhostname kernel: [ 168.124791] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 168.124812] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 168.124828] hub 4-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 168.124842] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 168.124849] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 168.124872] hub 2-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 168.124879] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 168.124884] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 168.185648] hub 5-0:1.0: hub_resume
Jun 20 00:04:30 myhostname kernel: [ 168.185714] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:30 myhostname kernel: [ 168.185753] hub 5-0:1.0: hub_suspend
Jun 20 00:04:30 myhostname kernel: [ 168.185767] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:30 myhostname kernel: [ 168.185774] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:30 myhostname kernel: [ 168.185865] usb usb5: usb auto-resume
Jun 20 00:04:30 myhostname kernel: [ 168.201596] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.265638] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.265701] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.265748] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.265762] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.265771] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.265800] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.265811] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.329843] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.329965] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.330015] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.330030] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.330038] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.330112] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.341797] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.405797] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.405942] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.405989] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.406003] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.406011] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.406136] usb usb2: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.406145] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.406170] hub 2-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.406258] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.406303] hub 2-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.406317] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.406323] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.406916] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.406927] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.469802] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.469892] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.469936] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.469951] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.469959] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.470008] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.481784] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.545804] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.545966] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.545976] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.545993] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.546015] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.546026] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.546032] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.601781] ------------[ cut here ]------------
Jun 20 00:04:31 myhostname kernel: [ 168.601805] WARNING: at kernel/workqueue.c:1365 __queue_work+0x177/0x1d1()
Jun 20 00:04:31 myhostname kernel: [ 168.601809] Modules linked in: arc4 rtl8192cu rtlwifi mac80211 cfg80211 rtl8192c_common ip6table_filter ip6_tables iptable_filter ip_tables x_tables binfmt_misc reiserfs xfs crc32c libcrc32c w83627ehf hwmon_vid loop firewire_sbp2 firewire_core crc_itu_t fuse radeon snd_hda_codec_realtek snd_hda_intel snd_hda_codec backlight snd_hwdep drm_kms_helper snd_pcm snd_page_alloc ttm snd_seq_midi snd_seq_midi_event snd_rawmidi drm snd_seq snd_seq_device snd_timer kvm_amd kvm snd i2c_algo_bit soundcore psmouse processor button serio_raw evdev ext3 mbcache jbd sha256_generic cbc dm_crypt dm_mod raid1 md_mod usbhid sd_mod crc_t10dif r8169 mii fan thermal thermal_sys ahci libahci libata scsi_mod sp5100_tco
Jun 20 00:04:31 myhostname kernel: [ 168.601896] CPU: 1 PID: 39 Comm: kworker/1:2 Not tainted 3.10.0-rc6+ #103
Jun 20 00:04:31 myhostname kernel: [ 168.601900] Hardware name: ASROCK E350M1, BIOS 4.0-4334-geca6d02 06/19/2013
Jun 20 00:04:31 myhostname kernel: [ 168.601912] Workqueue: rtl92c_usb rtl_watchdog_wq_callback [rtlwifi]
Jun 20 00:04:31 myhostname kernel: [ 168.601916] f66e17b8 c1023f9b c10364f3 f66e6f00 f4032840 f2c51084 00000001 c1023fbb
Jun 20 00:04:31 myhostname kernel: [ 168.601925] 00000009 00000000 c10364f3 f66d8f80 00000008 00000297 f2c51084 00000008
Jun 20 00:04:31 myhostname kernel: [ 168.601933] f2c50e00 c1036585 f4032840 f2c50d80 00000000 00000000 f8429287 00000000
Jun 20 00:04:31 myhostname kernel: [ 168.601942] Call Trace:
Jun 20 00:04:31 myhostname kernel: [ 168.601952] [<c1023f9b>] ? warn_slowpath_common+0x4d/0x60
Jun 20 00:04:31 myhostname kernel: [ 168.601958] [<c10364f3>] ? __queue_work+0x177/0x1d1
Jun 20 00:04:31 myhostname kernel: [ 168.601964] [<c1023fbb>] ? warn_slowpath_null+0xd/0x10
Jun 20 00:04:31 myhostname kernel: [ 168.601969] [<c10364f3>] ? __queue_work+0x177/0x1d1
Jun 20 00:04:31 myhostname kernel: [ 168.601975] [<c1036585>] ? queue_work_on+0x2b/0x36
Jun 20 00:04:31 myhostname kernel: [ 168.601984] [<f8429287>] ? rtl_watchdog_wq_callback+0x1d9/0x37f [rtlwifi]
Jun 20 00:04:31 myhostname kernel: [ 168.601992] [<c1042a00>] ? finish_task_switch+0x37/0x89
Jun 20 00:04:31 myhostname kernel: [ 168.601998] [<c12fe282>] ? __schedule+0x441/0x4c7
Jun 20 00:04:31 myhostname kernel: [ 168.602004] [<c1037459>] ? process_one_work+0x14c/0x230
Jun 20 00:04:31 myhostname kernel: [ 168.602010] [<c1037871>] ? worker_thread+0x107/0x1bd
Jun 20 00:04:31 myhostname kernel: [ 168.602015] [<c103776a>] ? rescuer_thread+0x210/0x210
Jun 20 00:04:31 myhostname kernel: [ 168.602021] [<c103b099>] ? kthread+0x68/0x6d
Jun 20 00:04:31 myhostname kernel: [ 168.602027] [<c1302f37>] ? ret_from_kernel_thread+0x1b/0x28
Jun 20 00:04:31 myhostname kernel: [ 168.602032] [<c103b031>] ? __kthread_parkme+0x50/0x50
Jun 20 00:04:31 myhostname kernel: [ 168.602036] ---[ end trace 40aa884081d482ce ]---
Jun 20 00:04:31 myhostname kernel: [ 168.609797] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.610125] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.610154] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.610169] usb usb2: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.610172] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.610179] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.610186] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.610218] hub 2-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.610289] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.610335] hub 2-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.610350] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.610356] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.611010] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.611022] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.673800] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.674015] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.674026] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.674048] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.674071] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.674082] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.674088] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.737805] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.737932] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.737983] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.737998] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.738007] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.738078] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.749844] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.813716] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.814154] usb usb2: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.814162] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.814187] hub 2-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.815023] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.815034] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.815057] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.815075] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.815095] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.815106] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.815113] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.815135] hub 2-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.815141] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.815146] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.877805] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.877912] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.877952] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.877967] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.877976] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 168.878014] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.889808] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.954035] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 168.954179] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 168.954199] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 168.954210] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 168.954228] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 168.954243] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 168.954252] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 169.017803] hub 4-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 169.018079] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 169.018110] hub 4-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 169.018124] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 169.018133] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 169.018170] usb usb2: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 169.018179] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 169.018204] hub 2-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 169.018297] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 169.018342] hub 2-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 169.018356] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 169.018362] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 169.019052] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 169.019064] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 169.081797] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 169.081886] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 169.081933] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 169.081948] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 169.081957] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:31 myhostname kernel: [ 169.082009] usb usb5: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 169.093780] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 169.157801] hub 5-0:1.0: hub_resume
Jun 20 00:04:31 myhostname kernel: [ 169.157976] usb usb4: usb auto-resume
Jun 20 00:04:31 myhostname kernel: [ 169.157987] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:31 myhostname kernel: [ 169.158062] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:31 myhostname kernel: [ 169.158096] hub 5-0:1.0: hub_suspend
Jun 20 00:04:31 myhostname kernel: [ 169.158109] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:31 myhostname kernel: [ 169.158117] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.221805] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.221953] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.221997] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.222009] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.222017] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.222234] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.222242] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.222267] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.222357] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.222403] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.222417] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.222423] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.224102] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.224115] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.285805] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.285898] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.285942] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.285957] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.285965] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.286018] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.297788] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.361800] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.361976] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.361987] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.362045] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.362069] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.362081] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.362088] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.425801] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.425874] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.425927] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.425939] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.425947] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.426041] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.437800] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.501802] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.502111] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.502141] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.502154] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.502157] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.502164] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.502173] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.502201] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.502267] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.502314] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.502329] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.502335] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.504249] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.504261] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.565800] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.566026] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.566036] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.566077] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.566107] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.566121] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.566129] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.629807] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.629872] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.629920] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.629933] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.629941] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.630030] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.641802] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.705664] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.706019] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.706028] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.706054] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.707156] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.707169] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.707193] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.707219] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.707239] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.707253] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.707260] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.707286] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.707293] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.707298] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.769801] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.770016] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.770027] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.770043] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.770067] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.770081] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.770088] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname avahi-daemon[3024]: Joining mDNS multicast group on interface wlan1.IPv6 with address xxxx::xxxx:xxxx:xxxx:xxxx.
Jun 20 00:04:32 myhostname avahi-daemon[3024]: New relevant interface wlan1.IPv6 for mDNS.
Jun 20 00:04:32 myhostname avahi-daemon[3024]: Registering new address record for xxxx::xxxx:xxxx:xxxx:xxxx on wlan1.*.
Jun 20 00:04:32 myhostname kernel: [ 169.833775] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.834072] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.834101] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.834115] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.834124] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.834149] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.834157] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.834183] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.834245] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.834285] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.834297] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.834303] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.835341] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.835355] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.897794] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.897882] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.897927] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.897942] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.897950] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 169.898002] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.909797] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.973801] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 169.973974] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 169.973984] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 169.974043] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 169.974067] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 169.974077] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 169.974084] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.037799] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 170.038104] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 170.038133] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 170.038147] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 170.038156] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.038168] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 170.038177] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 170.038204] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 170.038270] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 170.038312] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 170.038326] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 170.038332] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.039266] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 170.039277] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 170.101798] hub 5-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 170.102018] usb usb4: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 170.102028] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 170.102068] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 170.102098] hub 5-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 170.102112] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 170.102120] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.165799] hub 4-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 170.166067] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 170.166096] hub 4-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 170.166109] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 170.166118] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.166175] usb usb2: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 170.166185] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:32 myhostname kernel: [ 170.166210] hub 2-0:1.0: hub_resume
Jun 20 00:04:32 myhostname kernel: [ 170.166303] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:32 myhostname kernel: [ 170.166349] hub 2-0:1.0: hub_suspend
Jun 20 00:04:32 myhostname kernel: [ 170.166364] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:32 myhostname kernel: [ 170.166370] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:32 myhostname kernel: [ 170.167444] usb usb5: usb auto-resume
Jun 20 00:04:32 myhostname kernel: [ 170.167456] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:33 myhostname kernel: [ 170.229795] hub 5-0:1.0: hub_resume
Jun 20 00:04:33 myhostname kernel: [ 170.229942] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:33 myhostname kernel: [ 170.229987] hub 5-0:1.0: hub_suspend
Jun 20 00:04:33 myhostname kernel: [ 170.229999] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:33 myhostname kernel: [ 170.230007] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:33 myhostname kernel: [ 170.230066] usb usb4: usb auto-resume
Jun 20 00:04:33 myhostname kernel: [ 170.230075] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:33 myhostname kernel: [ 170.293805] hub 4-0:1.0: hub_resume
Jun 20 00:04:33 myhostname kernel: [ 170.294113] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:33 myhostname kernel: [ 170.294144] hub 4-0:1.0: hub_suspend
Jun 20 00:04:33 myhostname kernel: [ 170.294158] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:33 myhostname kernel: [ 170.294165] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:33 myhostname kernel: [ 170.294175] usb usb2: usb auto-resume
Jun 20 00:04:33 myhostname kernel: [ 170.294185] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:33 myhostname kernel: [ 170.294210] hub 2-0:1.0: hub_resume
Jun 20 00:04:33 myhostname kernel: [ 170.294271] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:33 myhostname kernel: [ 170.294315] hub 2-0:1.0: hub_suspend
Jun 20 00:04:33 myhostname kernel: [ 170.294329] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:33 myhostname kernel: [ 170.294335] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.296875] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.296890] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.357801] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.358016] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.358026] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.358080] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.358114] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.358129] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.358137] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname ntpd[3060]: Listen normally on 4 wlan1 xxxx::xxxx:xxxx:xxxx:xxxx UDP 123
Jun 20 00:04:34 myhostname ntpd[3060]: peers refreshed
Jun 20 00:04:34 myhostname kernel: [ 171.421681] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.422046] usb usb2: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.422054] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.422080] hub 2-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.424015] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.424029] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.424056] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.424076] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.424091] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.424103] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.424110] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.424133] hub 2-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.424139] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.424144] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.485795] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.485939] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.485983] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.485996] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.486004] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.486064] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.486073] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.549806] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.550090] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.550121] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.550135] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.550144] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.550173] usb usb2: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.550182] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.550208] hub 2-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.550300] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.550345] hub 2-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.550360] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.550366] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.552165] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.552179] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.613661] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.613883] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.613893] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.613909] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.613931] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.613942] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.613949] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.677628] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.677946] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.677976] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.677989] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.677995] usb usb2: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.677998] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.678010] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.678037] hub 2-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.678109] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.678156] hub 2-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.678171] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.678177] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.678936] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.678948] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.741806] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.742019] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.742030] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.742088] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.742118] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.742132] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.742140] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.805803] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.806088] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.806117] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.806132] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.806140] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.806180] usb usb2: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.806189] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.806214] hub 2-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.806307] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.806353] hub 2-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.806367] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.806373] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.807576] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.807590] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.869804] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.869900] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.869949] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.869964] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.869972] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 171.870020] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.881789] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.945797] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 171.945970] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 171.945981] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 171.946034] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 171.946059] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 171.946073] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 171.946080] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 172.009802] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 172.009870] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 172.009923] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 172.009935] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 172.009943] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 172.010041] usb usb4: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 172.021792] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 172.085807] hub 4-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 172.086074] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 172.086106] hub 4-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 172.086120] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 172.086129] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 172.086156] usb usb2: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 172.086165] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 172.086192] hub 2-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 172.086283] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 172.086330] hub 2-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 172.086345] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 172.086351] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 172.088735] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 172.088747] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:34 myhostname kernel: [ 172.149825] hub 5-0:1.0: hub_resume
Jun 20 00:04:34 myhostname kernel: [ 172.149944] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:34 myhostname kernel: [ 172.149991] hub 5-0:1.0: hub_suspend
Jun 20 00:04:34 myhostname kernel: [ 172.150005] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:34 myhostname kernel: [ 172.150014] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:34 myhostname kernel: [ 172.150081] usb usb5: usb auto-resume
Jun 20 00:04:34 myhostname kernel: [ 172.161791] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.225805] hub 5-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.225983] usb usb4: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.225993] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.226052] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.226074] hub 5-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.226085] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.226092] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.289842] hub 4-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.289912] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.289968] hub 4-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.289980] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.289987] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.290083] usb usb4: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.301795] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.365821] hub 4-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.366115] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.366146] hub 4-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.366161] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.366166] usb usb2: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.366173] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.366176] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.366211] hub 2-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.366293] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.366362] hub 2-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.366379] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.366385] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.368590] usb usb5: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.368603] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.429802] hub 5-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.429888] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.429934] hub 5-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.429949] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.429957] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.430012] usb usb5: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.441800] ohci_hcd 0000:00:14.5: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.505810] hub 5-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.505981] usb usb4: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.505991] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.506046] hub 5-0:1.0: state 7 ports 2 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.506070] hub 5-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.506081] usb usb5: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.506088] ohci_hcd 0000:00:14.5: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.569799] hub 4-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.569869] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.569925] hub 4-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.569938] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.569946] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.570045] usb usb4: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.581808] ohci_hcd 0000:00:13.0: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.645638] hub 4-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.645709] hub 4-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.645751] hub 4-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.645766] usb usb4: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.645774] ohci_hcd 0000:00:13.0: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.645974] usb usb2: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.645983] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.646009] hub 2-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.646041] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.646058] hub 2-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.646067] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.646072] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:35 myhostname kernel: [ 172.658163] usb usb2: usb auto-resume
Jun 20 00:04:35 myhostname kernel: [ 172.669586] ehci-pci 0000:00:13.2: resume root hub
Jun 20 00:04:35 myhostname kernel: [ 172.669621] hub 2-0:1.0: hub_resume
Jun 20 00:04:35 myhostname kernel: [ 172.669679] hub 2-0:1.0: state 7 ports 5 chg 0000 evt 0000
Jun 20 00:04:35 myhostname kernel: [ 172.669723] hub 2-0:1.0: hub_suspend
Jun 20 00:04:35 myhostname kernel: [ 172.669738] usb usb2: bus auto-suspend, wakeup 1
Jun 20 00:04:35 myhostname kernel: [ 172.669744] ehci-pci 0000:00:13.2: suspend root hub
Jun 20 00:04:37 myhostname kernel: [ 174.729668] rtlwifi:rtl_watchdog_wq_callback():<0-0> AP off, try to reconnect now
Jun 20 00:04:37 myhostname kernel: [ 174.729753] wlan1: Connection to AP yy:yy:yy:yy:yy:yy lost
Jun 20 00:04:37 myhostname wpa_supplicant[5247]: wlan1: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
Jun 20 00:04:37 myhostname wpa_supplicant[5247]: wlan1: CTRL-EVENT-DISCONNECTED bssid=yy:yy:yy:yy:yy:yy reason=4
Jun 20 00:04:37 myhostname kernel: [ 174.759870] cfg80211: Calling CRDA to update world regulatory domain
Jun 20 00:04:37 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: 4-way handshake -> disconnected
Jun 20 00:04:37 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: disconnected -> scanning
Jun 20 00:04:38 myhostname wpa_supplicant[5247]: wlan1: SME: Trying to authenticate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:38 myhostname kernel: [ 175.606794] wlan1: authenticate with yy:yy:yy:yy:yy:yy
Jun 20 00:04:38 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: scanning -> authenticating
Jun 20 00:04:38 myhostname kernel: [ 175.634468] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:38 myhostname kernel: [ 175.737665] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 2/3)
Jun 20 00:04:38 myhostname kernel: [ 175.841789] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 3/3)
Jun 20 00:04:38 myhostname kernel: [ 175.945876] wlan1: authentication with yy:yy:yy:yy:yy:yy timed out
Jun 20 00:04:38 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: authenticating -> disconnected
Jun 20 00:04:38 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: disconnected -> scanning
Jun 20 00:04:45 myhostname wpa_supplicant[5247]: wlan1: SME: Trying to authenticate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:45 myhostname kernel: [ 182.578831] wlan1: authenticate with yy:yy:yy:yy:yy:yy
Jun 20 00:04:45 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: scanning -> authenticating
Jun 20 00:04:45 myhostname kernel: [ 182.605749] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:45 myhostname kernel: [ 182.629269] wlan1: authenticated
Jun 20 00:04:45 myhostname wpa_supplicant[5247]: wlan1: Trying to associate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:45 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: authenticating -> associating
Jun 20 00:04:45 myhostname kernel: [ 182.633693] wlan1: associate with yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:45 myhostname wpa_supplicant[5247]: wlan1: Associated with yy:yy:yy:yy:yy:yy
Jun 20 00:04:45 myhostname kernel: [ 182.656347] wlan1: RX AssocResp from yy:yy:yy:yy:yy:yy (capab=0x431 status=0 aid=2)
Jun 20 00:04:45 myhostname kernel: [ 182.656420] wlan1: associated
Jun 20 00:04:45 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: associating -> associated
Jun 20 00:04:45 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: associated -> 4-way handshake
Jun 20 00:04:53 myhostname kernel: [ 190.651778] rtlwifi:rtl_watchdog_wq_callback():<0-0> AP off, try to reconnect now
Jun 20 00:04:53 myhostname kernel: [ 190.651898] wlan1: Connection to AP yy:yy:yy:yy:yy:yy lost
Jun 20 00:04:53 myhostname wpa_supplicant[5247]: wlan1: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
Jun 20 00:04:53 myhostname wpa_supplicant[5247]: wlan1: CTRL-EVENT-DISCONNECTED bssid=yy:yy:yy:yy:yy:yy reason=4
Jun 20 00:04:53 myhostname kernel: [ 190.710124] cfg80211: Calling CRDA to update world regulatory domain
Jun 20 00:04:53 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: 4-way handshake -> disconnected
Jun 20 00:04:53 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: disconnected -> scanning
Jun 20 00:04:54 myhostname wpa_supplicant[5247]: wlan1: SME: Trying to authenticate with yy:yy:yy:yy:yy:yy (SSID='MYWLAN 1' freq=2457 MHz)
Jun 20 00:04:54 myhostname kernel: [ 191.558832] wlan1: authenticate with yy:yy:yy:yy:yy:yy
Jun 20 00:04:54 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: scanning -> authenticating
Jun 20 00:04:54 myhostname kernel: [ 191.587353] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 1/3)
Jun 20 00:04:54 myhostname kernel: [ 191.689894] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 2/3)
Jun 20 00:04:54 myhostname kernel: [ 191.793838] wlan1: send auth to yy:yy:yy:yy:yy:yy (try 3/3)
Jun 20 00:04:54 myhostname kernel: [ 191.897812] wlan1: authentication with yy:yy:yy:yy:yy:yy timed out
Jun 20 00:04:54 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: authenticating -> disconnected
Jun 20 00:04:54 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: disconnected -> scanning
Jun 20 00:04:54 myhostname NetworkManager[3094]: <warn> Activation (wlan1/wireless): association took too long.
Jun 20 00:04:54 myhostname NetworkManager[3094]: <info> (wlan1): device state change: config -> need-auth (reason 'none') [50 60 0]
Jun 20 00:04:54 myhostname NetworkManager[3094]: <warn> Activation (wlan1/wireless): asking for new secrets
Jun 20 00:04:54 myhostname NetworkManager[3094]: <info> (wlan1): supplicant interface state: scanning -> disconnected
Jun 20 00:04:54 myhostname NetworkManager[3094]: <warn> Couldn't disconnect supplicant interface: This interface is not connected.
Jun 20 00:04:55 myhostname dbus[2790]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
Jun 20 00:04:55 myhostname dbus[2790]: [system] Successfully activated service 'org.freedesktop.UDisks'
Jun 20 00:05:06 myhostname NetworkManager[3094]: <warn> No agents were available for this request.
Jun 20 00:05:06 myhostname NetworkManager[3094]: <info> (wlan1): device state change: need-auth -> failed (reason 'no-secrets') [60 120 7]
Jun 20 00:05:06 myhostname NetworkManager[3094]: <warn> Activation (wlan1) failed for access point (MYWLAN 1)
Jun 20 00:05:06 myhostname NetworkManager[3094]: <info> Marking connection 'MYWLAN' invalid.
Jun 20 00:05:06 myhostname NetworkManager[3094]: <warn> Activation (wlan1) failed.
Jun 20 00:05:06 myhostname NetworkManager[3094]: <info> (wlan1): device state change: failed -> disconnected (reason 'none') [120 30 0]
Jun 20 00:05:06 myhostname NetworkManager[3094]: <info> (wlan1): deactivating device (reason 'none') [0]
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply
* strange b43 problem // 3.9 regression?
From: Martin Zobel-Helas @ 2013-06-19 21:34 UTC (permalink / raw)
To: linux-wireless; +Cc: zobel
[-- Attachment #1: Type: text/plain, Size: 2825 bytes --]
Hi,
i run Debian unstable on my MacBookPro8,2. Since the update to Debian's
3.9 kernel i run into strange problems with my b43 wireless. Still works
perfect with Debian's latest 3.8 kernel from snapshot.debian.org.
Scenario:
Fresh reboot into Linux 3.9 kernel, without loading any wireless driver.
# cat /proc/version
Linux version 3.9-1-amd64 (debian-kernel@lists.debian.org) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Debian 3.9.5-1
Kernel 3.8.13 that stills works perfectly:
# dpkg -l linux-image-3.8-2-amd64 | grep ^ii
ii linux-image-3.8-2-amd64 3.8.13-1 amd64 Linux 3.8 for 64-bit PCs
# lspci -nn | grep 802
03:00.0 Network controller [0280]: Broadcom Corporation BCM4331 802.11a/b/g/n [14e4:4331] (rev 02)
firmware install as per http://homepage.uibk.ac.at/~c705283/archives/2011/09/04/linux_support_for_broadcom_4331_wireless_chip_macbook_pro_81/index.html
# modprobe b43
# iwlist scan
...
wlan0 No scan results
# iwlist wlan0 scan
...
wlan0 No scan results
#
also NetworkManager does not detect any SSID at this point. I wait for
several minutes, still no results.
Now i plug in my wireless USB wlan token from TP-Link
# lsusb | grep TP-Link
Bus 001 Device 028: ID 0cf3:7015 Atheros Communications, Inc. TP-Link TL-WN821N v3 802.11n [Atheros AR7010+AR9287]
# iwlist wlan1 scan | grep Cell
Cell 01 - Address: C4:0A:CB:DE:8C:B0
Cell 02 - Address: C4:0A:CB:DE:8C:B1
Cell 03 - Address: C4:0A:CB:DE:8C:B2
# iwlist wlan0 scan | grep Cell
#
So still no results here. But the interesting part starts now:
If i now do the following:
# iwlist scan | grep Cell
Cell 01 - Address: C4:0A:CB:DE:8C:B0
Cell 02 - Address: C4:0A:CB:DE:8C:B2
Cell 03 - Address: C4:0A:CB:DE:8C:B1
Cell 01 - Address: C4:0A:CB:DE:8C:B0
Cell 02 - Address: C4:0A:CB:DE:8C:B2
Cell 03 - Address: C4:0A:CB:DE:8C:B1
# iwlist wlan0 scan | grep Cell
Cell 01 - Address: C4:0A:CB:DE:8C:B0
Cell 02 - Address: C4:0A:CB:DE:8C:B1
Cell 03 - Address: C4:0A:CB:DE:8C:B2
and NetworkManager immediately sees SSIDs on my wireless wlan0
interface. Running "iwlist wlan0 scan" from now on shows me my SSIDs on
the b43 interface.
Doing the above procedure, works reliable reproducable for me.
"iwlist scan" first scans my wlan1 interface (TP-Link) and then wlan0
(Broadcom). I therefor wonder if this is somewhat a timing problem in
the wireless stack.
I attached detailed information about my hardware of my system to this
mail. If you need any more information, i will provide the needed
information. I need to admit that i am not that deeply involved into
linux kernel.
Cheers,
Martin
--
Martin Zobel-Helas <zobel@ftbfs.de>
GPG Fingerprint: 6B18 5642 8E41 EC89 3D5D BDBB 53B1 AC6D B11B 627B
[-- Attachment #2: lshw --]
[-- Type: text/plain, Size: 26828 bytes --]
kvasir
description: Notebook
product: MacBookPro8,2 (System SKU#)
vendor: Apple Inc.
version: 1.0
serial: C02FK23WDF8Y
width: 64 bits
capabilities: smbios-2.4 dmi-2.4 vsyscall32
configuration: boot=normal chassis=notebook family=MacBook Pro sku=System SKU# uuid=A712F2DF-2839-805E-AEB8-1E1682E1322F
*-core
description: Motherboard
product: Mac-94245A3940C91C80
vendor: Apple Inc.
physical id: 0
version: MacBookPro8,2
serial: C02115500D8DMNVA2
slot: Part Component
*-cpu:0
description: CPU
product: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
vendor: Intel Corp.
physical id: 0
bus info: cpu@0
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 1200MHz
capacity: 1200MHz
width: 64 bits
capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp x86-64 constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm ida arat xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid cpufreq
*-cache:0
description: L1 cache
physical id: 2
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 3
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 4
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:0
description: L1 cache
physical id: 1
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:1
description: CPU
vendor: Intel(R) Corporation
physical id: 5
bus info: cpu@1
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 7
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 8
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 9
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:1
description: L1 cache
physical id: 6
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:2
description: CPU
vendor: Intel(R) Corporation
physical id: a
bus info: cpu@2
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: c
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: d
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: e
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L1 cache
physical id: b
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:3
description: CPU
vendor: Intel(R) Corporation
physical id: f
bus info: cpu@3
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 11
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 12
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 13
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:3
description: L1 cache
physical id: 10
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:4
description: CPU
vendor: Intel(R) Corporation
physical id: 14
bus info: cpu@4
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 16
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 17
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 18
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:4
description: L1 cache
physical id: 15
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:5
description: CPU
vendor: Intel(R) Corporation
physical id: 19
bus info: cpu@5
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 1b
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 1c
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 1d
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:5
description: L1 cache
physical id: 1a
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:6
description: CPU
vendor: Intel(R) Corporation
physical id: 1e
bus info: cpu@6
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 20
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 21
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 22
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:6
description: L1 cache
physical id: 1f
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cpu:7
description: CPU
vendor: Intel(R) Corporation
physical id: 23
bus info: cpu@7
version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
slot: U2E1
size: 800MHz
capacity: 800MHz
capabilities: cpufreq
*-cache:0
description: L1 cache
physical id: 25
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-cache:1
description: L2 cache
physical id: 26
slot: Unknown
size: 256KiB
capacity: 256KiB
capabilities: asynchronous internal write-back instruction
*-cache:2
description: L3 cache
physical id: 27
slot: Unknown
size: 6KiB
capacity: 6KiB
capabilities: asynchronous internal write-back instruction
*-cache:7
description: L1 cache
physical id: 24
slot: Unknown
size: 32KiB
capacity: 32KiB
capabilities: asynchronous internal write-back
*-memory
description: System Memory
physical id: 28
slot: System board or motherboard
size: 8GiB
*-bank:0
description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
product: 9905428-012.A00LF
vendor: AMD
physical id: 0
serial: 0x6D22E49C
slot: DIMM0
size: 4GiB
clock: 1333MHz (0.8ns)
*-bank:1
description: SODIMM DDR3 Synchronous 1333 MHz (0.8 ns)
product: 9905428-012.A00LF
vendor: AMD
physical id: 1
serial: 0x651F7A5B
slot: DIMM0
size: 4GiB
clock: 1333MHz (0.8ns)
*-firmware
description: BIOS
vendor: Apple Inc.
physical id: 2e
version: MBP81.88Z.0047.B27.1201241646
date: 01/24/12
size: 1MiB
capacity: 8128KiB
capabilities: pci upgrade shadowing cdboot bootselect acpi ieee1394boot smartbattery netboot
*-pci
description: Host bridge
product: 2nd Generation Core Processor Family DRAM Controller
vendor: Intel Corporation
physical id: 100
bus info: pci@0000:00:00.0
version: 09
width: 32 bits
clock: 33MHz
*-pci:0
description: PCI bridge
product: Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:00:01.0
version: 09
width: 32 bits
clock: 33MHz
capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:40 ioport:2000(size=4096) memory:b0800000-b08fffff ioport:90000000(size=268435456)
*-display
description: VGA compatible controller
product: Seymour [Radeon HD 6400M/7400M Series]
vendor: Advanced Micro Devices, Inc. [AMD/ATI]
physical id: 0
bus info: pci@0000:01:00.0
version: 00
width: 64 bits
clock: 33MHz
capabilities: pm pciexpress msi vga_controller bus_master cap_list rom
configuration: driver=fglrx_pci latency=0
resources: irq:54 memory:90000000-9fffffff memory:b0800000-b081ffff ioport:2000(size=256) memory:b0820000-b083ffff
*-multimedia
description: Audio device
product: Caicos HDMI Audio [Radeon HD 6400 Series]
vendor: Advanced Micro Devices, Inc. [AMD/ATI]
physical id: 0.1
bus info: pci@0000:01:00.1
version: 00
width: 64 bits
clock: 33MHz
capabilities: pm pciexpress msi bus_master cap_list
configuration: driver=snd_hda_intel latency=0
resources: irq:47 memory:b0840000-b0843fff
*-pci:1
description: PCI bridge
product: Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port
vendor: Intel Corporation
physical id: 1.1
bus info: pci@0000:00:01.1
version: 09
width: 32 bits
clock: 33MHz
capabilities: pci pm msi pciexpress normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:41 ioport:4000(size=4096) memory:b0a00000-b4efffff ioport:b4f00000(size=67108864)
*-communication
description: Communication controller
product: 6 Series/C200 Series Chipset Family MEI Controller #1
vendor: Intel Corporation
physical id: 16
bus info: pci@0000:00:16.0
version: 04
width: 64 bits
clock: 33MHz
capabilities: pm msi bus_master cap_list
configuration: driver=mei latency=0
resources: irq:45 memory:b0907100-b090710f
*-usb:0
description: USB controller
product: 6 Series/C200 Series Chipset Family USB Universal Host Controller #5
vendor: Intel Corporation
physical id: 1a
bus info: pci@0000:00:1a.0
version: 05
width: 32 bits
clock: 33MHz
capabilities: uhci bus_master cap_list
configuration: driver=uhci_hcd latency=0
resources: irq:21 ioport:3120(size=32)
*-usb:1
description: USB controller
product: 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2
vendor: Intel Corporation
physical id: 1a.7
bus info: pci@0000:00:1a.7
version: 05
width: 32 bits
clock: 33MHz
capabilities: pm debug ehci bus_master cap_list
configuration: driver=ehci-pci latency=0
resources: irq:23 memory:b0906c00-b0906fff
*-multimedia
description: Audio device
product: 6 Series/C200 Series Chipset Family High Definition Audio Controller
vendor: Intel Corporation
physical id: 1b
bus info: pci@0000:00:1b.0
version: 05
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: driver=snd_hda_intel latency=0
resources: irq:46 memory:b0900000-b0903fff
*-pci:2
description: PCI bridge
product: 6 Series/C200 Series Chipset Family PCI Express Root Port 1
vendor: Intel Corporation
physical id: 1c
bus info: pci@0000:00:1c.0
version: b5
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:42 memory:b0700000-b07fffff ioport:b0400000(size=1048576)
*-network
description: Ethernet interface
product: NetXtreme BCM57765 Gigabit Ethernet PCIe
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth0
version: 10
serial: c8:2a:14:2e:76:a7
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=tg3 driverversion=3.130 firmware=57765-v1.37 latency=0 link=no multicast=yes port=twisted pair
resources: irq:16 memory:b0400000-b040ffff memory:b0410000-b041ffff
*-generic
description: SD Host controller
product: NetXtreme BCM57765 Memory Card Reader
vendor: Broadcom Corporation
physical id: 0.1
bus info: pci@0000:02:00.1
version: 10
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: driver=sdhci-pci latency=0
resources: irq:17 memory:b0420000-b042ffff
*-pci:3
description: PCI bridge
product: 6 Series/C200 Series Chipset Family PCI Express Root Port 2
vendor: Intel Corporation
physical id: 1c.1
bus info: pci@0000:00:1c.1
version: b5
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:43 memory:b0600000-b06fffff
*-network
description: Network controller
product: BCM4331 802.11a/b/g/n
vendor: Broadcom Corporation
physical id: 0
bus info: pci@0000:03:00.0
version: 02
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: driver=bcma-pci-bridge latency=0
resources: irq:17 memory:b0600000-b0603fff
*-pci:4
description: PCI bridge
product: 6 Series/C200 Series Chipset Family PCI Express Root Port 3
vendor: Intel Corporation
physical id: 1c.2
bus info: pci@0000:00:1c.2
version: b5
width: 32 bits
clock: 33MHz
capabilities: pci pciexpress msi pm normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:44 memory:b0500000-b05fffff
*-firewire
description: FireWire (IEEE 1394)
product: FW643 [TrueFire] PCIe 1394b Controller
vendor: LSI Corporation
physical id: 0
bus info: pci@0000:04:00.0
version: 08
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress ohci bus_master cap_list
configuration: driver=firewire_ohci latency=0
resources: irq:48 memory:b0500000-b0500fff
*-usb:2
description: USB controller
product: 6 Series/C200 Series Chipset Family USB Universal Host Controller #1
vendor: Intel Corporation
physical id: 1d
bus info: pci@0000:00:1d.0
version: 05
width: 32 bits
clock: 33MHz
capabilities: uhci bus_master cap_list
configuration: driver=uhci_hcd latency=0
resources: irq:19 ioport:30c0(size=32)
*-usb:3
description: USB controller
product: 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1
vendor: Intel Corporation
physical id: 1d.7
bus info: pci@0000:00:1d.7
version: 05
width: 32 bits
clock: 33MHz
capabilities: pm debug ehci bus_master cap_list
configuration: driver=ehci-pci latency=0
resources: irq:22 memory:b0906800-b0906bff
*-isa
description: ISA bridge
product: HM65 Express Chipset Family LPC Controller
vendor: Intel Corporation
physical id: 1f
bus info: pci@0000:00:1f.0
version: 05
width: 32 bits
clock: 33MHz
capabilities: isa bus_master cap_list
configuration: driver=lpc_ich latency=0
resources: irq:0
*-ide
description: IDE interface
product: 6 Series/C200 Series Chipset Family 4 port SATA IDE Controller
vendor: Intel Corporation
physical id: 1f.2
bus info: pci@0000:00:1f.2
version: 05
width: 32 bits
clock: 66MHz
capabilities: ide pm bus_master cap_list
configuration: driver=ata_piix latency=0
resources: irq:19 ioport:3148(size=8) ioport:315c(size=4) ioport:3140(size=8) ioport:3158(size=4) ioport:3060(size=16) ioport:ffe0(size=16)
*-serial UNCLAIMED
description: SMBus
product: 6 Series/C200 Series Chipset Family SMBus Controller
vendor: Intel Corporation
physical id: 1f.3
bus info: pci@0000:00:1f.3
version: 05
width: 64 bits
clock: 33MHz
configuration: latency=0
resources: memory:b0907000-b09070ff ioport:efa0(size=32)
*-scsi:0
physical id: 2
logical name: scsi0
capabilities: emulated
*-disk
description: ATA Disk
product: OCZ-VERTEX4
physical id: 0.0.0
bus info: scsi@0:0.0.0
logical name: /dev/sda
version: 1.5
serial: OCZ-C5YY451Z33Z6FL19
size: 476GiB (512GB)
capabilities: partitioned partitioned:dos
configuration: ansiversion=5 sectorsize=512
*-volume:0 UNCLAIMED
description: EFI GPT partition
physical id: 1
bus info: scsi@0:0.0.0,1
capacity: 200MiB
capabilities: primary nofs
*-volume:1
description: Darwin/OS X HFS+ partition
vendor: Mac OS X (journaled)
physical id: 2
bus info: scsi@0:0.0.0,2
logical name: /dev/sda2
version: 5
serial: 237c0928-277c-1a34-0000-0000003ba000
size: 119GiB
capacity: 119GiB
capabilities: primary hfsx journaled bootable osx hfsplus initialized
configuration: boot=osx checked=2012-12-07 21:32:57 created=2012-12-07 12:32:57 filesystem=hfsplus lastmountedby=HFSJ modified=2013-06-11 20:22:44 state=clean
*-volume:2
description: EXT4 volume
vendor: Linux
physical id: 3
bus info: scsi@0:0.0.0,3
logical name: /dev/sda3
logical name: /boot
version: 1.0
serial: 82c5c784-30b6-4db0-bf22-f34c41754f3c
size: 243MiB
capacity: 243MiB
capabilities: primary journaled extended_attributes huge_files dir_nlink recover extents ext4 ext2 initialized
configuration: created=2012-12-08 00:01:57 filesystem=ext4 lastmountpoint=/boot modified=2013-06-17 20:10:12 mount.fstype=ext4 mount.options=rw,relatime,data=ordered mounted=2013-06-17 20:10:12 state=mounted
*-volume:3
description: W95 FAT32 partition
physical id: 4
bus info: scsi@0:0.0.0,4
logical name: /dev/sda4
serial: 9be96758-3dfc-4139-87d6-80bff2c11abd
size: 357GiB
capacity: 357GiB
width: 512 bits
capabilities: primary bootable encrypted luks initialized
configuration: bits=512 cipher=aes filesystem=luks hash=sha1 mode=xts-plain64 version=1
*-scsi:1
physical id: 3
logical name: scsi1
capabilities: emulated
*-cdrom
description: DVD writer
product: DVD-R UJ-898
vendor: MATSHITA
physical id: 0.0.0
bus info: scsi@1:0.0.0
logical name: /dev/cdrom
logical name: /dev/cdrw
logical name: /dev/dvd
logical name: /dev/dvdrw
logical name: /dev/sr0
version: HE13
capabilities: removable audio cd-r cd-rw dvd dvd-r
configuration: ansiversion=5 status=open
*-battery
product: Unknown
vendor: Unknown
physical id: 1
version: Unknown
serial: Unknown
slot: Unknown
*-network:0
description: Wireless interface
physical id: 2
bus info: usb@1:1.3
logical name: wlan1
serial: 64:70:02:24:ec:2e
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=ath9k_htc driverversion=3.9-1-amd64 firmware=1.3 ip=10.9.14.117 link=yes multicast=yes wireless=IEEE 802.11bgn
*-network:1
description: Wireless interface
physical id: 3
logical name: wlan0
serial: e4:ce:8f:0a:f0:72
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=b43 driverversion=3.9-1-amd64 firmware=666.2 ip=10.9.14.10 link=yes multicast=yes wireless=IEEE 802.11bg
[-- Attachment #3: lsmod --]
[-- Type: text/plain, Size: 8882 bytes --]
Module Size Used by
b43 326938 0
ssb 49391 1 b43
brcmsmac 443147 0
cordic 12352 1 brcmsmac
brcmutil 12824 1 brcmsmac
ath9k_htc 52702 0
ath9k_common 12728 1 ath9k_htc
ath9k_hw 345710 2 ath9k_common,ath9k_htc
ath 21417 3 ath9k_common,ath9k_htc,ath9k_hw
bcma 33422 2 b43,brcmsmac
lib80211 12941 0
rng_core 12761 1 b43
pcmcia 32769 2 b43,ssb
pcmcia_core 18471 1 pcmcia
tun 22518 2
ufs 58989 0
qnx4 13069 0
hfsplus 81767 0
hfs 45904 0
minix 27669 0
ntfs 161077 0
vfat 17365 0
msdos 17077 0
fat 46078 2 vfat,msdos
jfs 137973 0
xfs 623636 0
reiserfs 193545 0
ext3 162558 0
jbd 57997 1 ext3
ext2 59601 0
efivars 22834 0
cpuid 12708 0
arc4 12543 4
mac80211 390921 3 b43,brcmsmac,ath9k_htc
cfg80211 366201 5 b43,ath,brcmsmac,mac80211,ath9k_htc
ip6table_filter 12540 0
ip6_tables 22050 1 ip6table_filter
ipt_MASQUERADE 12594 3
iptable_nat 12646 1
nf_nat_ipv4 12950 1 iptable_nat
nf_nat 18378 3 ipt_MASQUERADE,nf_nat_ipv4,iptable_nat
nf_conntrack_ipv4 18549 2
nf_defrag_ipv4 12483 1 nf_conntrack_ipv4
xt_conntrack 12681 1
nf_conntrack 59734 6 ipt_MASQUERADE,nf_nat,nf_nat_ipv4,xt_conntrack,iptable_nat,nf_conntrack_ipv4
ipt_REJECT 12502 2
xt_CHECKSUM 12471 1
iptable_mangle 12536 1
xt_tcpudp 12570 5
iptable_filter 12536 1
ip_tables 22036 3 iptable_filter,iptable_mangle,iptable_nat
x_tables 19041 10 ip6table_filter,xt_CHECKSUM,ip_tables,xt_tcpudp,ipt_MASQUERADE,xt_conntrack,iptable_filter,ipt_REJECT,iptable_mangle,ip6_tables
bridge 77397 0
stp 12437 1 bridge
llc 12822 2 stp,bridge
parport_pc 22409 0
ppdev 12763 0
lp 13064 0
parport 31901 3 lp,ppdev,parport_pc
rfcomm 33696 14
bnep 17574 2
pci_stub 12429 1
vboxpci 19094 0
vboxnetadp 25443 0
vboxnetflt 23648 0
vboxdrv 217306 3 vboxnetadp,vboxnetflt,vboxpci
binfmt_misc 12957 1
uinput 17478 3
deflate 12551 0
ctr 12927 0
twofish_generic 16569 0
twofish_avx_x86_64 45909 0
twofish_x86_64_3way 25556 1 twofish_avx_x86_64
twofish_x86_64 12541 2 twofish_avx_x86_64,twofish_x86_64_3way
twofish_common 20585 4 twofish_generic,twofish_avx_x86_64,twofish_x86_64_3way,twofish_x86_64
camellia_generic 29068 0
camellia_x86_64 50595 0
serpent_avx_x86_64 46053 0
serpent_sse2_x86_64 50185 0
serpent_generic 25044 2 serpent_sse2_x86_64,serpent_avx_x86_64
glue_helper 12672 5 camellia_x86_64,serpent_sse2_x86_64,serpent_avx_x86_64,twofish_avx_x86_64,twofish_x86_64_3way
blowfish_generic 12464 0
blowfish_x86_64 21132 0
blowfish_common 16487 2 blowfish_generic,blowfish_x86_64
cast5_generic 20813 0
cast_common 12313 1 cast5_generic
des_generic 20851 0
cbc 12696 0
xcbc 12759 0
rmd160 16640 0
sha512_generic 12625 0
sha256_generic 16797 0
sha1_ssse3 16872 0
sha1_generic 12582 1 sha1_ssse3
hmac 12921 0
crypto_null 12732 0
af_key 31798 0
xfrm_algo 13064 1 af_key
loop 22908 0
fuse 67160 3
snd_hda_codec_hdmi 31576 1
snd_hda_codec_cirrus 13281 1
snd_hda_intel 35753 11
snd_hda_codec 122569 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_cirrus
snd_hwdep 13189 1 snd_hda_codec
snd_pcm_oss 37079 0
snd_mixer_oss 18035 3 snd_pcm_oss
snd_pcm 68523 4 snd_pcm_oss,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_intel
snd_page_alloc 13018 2 snd_pcm,snd_hda_intel
acpi_cpufreq 13317 -1
mperf 12453 1 acpi_cpufreq
snd_seq_midi 12848 0
snd_seq_midi_event 13316 1 snd_seq_midi
joydev 17317 0
snd_rawmidi 23034 1 snd_seq_midi
fglrx 5171661 117
uvcvideo 70884 0
btusb 17553 0
videobuf2_vmalloc 12860 1 uvcvideo
videobuf2_memops 12519 1 videobuf2_vmalloc
videobuf2_core 31098 1 uvcvideo
bluetooth 168899 24 bnep,btusb,rfcomm
videodev 92442 2 uvcvideo,videobuf2_core
rfkill 19159 6 cfg80211,bluetooth
media 18184 2 uvcvideo,videodev
bcm5974 12886 0
iTCO_wdt 12831 0
evdev 17650 22
snd_seq 45225 2 snd_seq_midi_event,snd_seq_midi
iTCO_vendor_support 12704 1 iTCO_wdt
coretemp 12854 0
kvm_intel 119055 0
snd_seq_device 13176 3 snd_seq,snd_rawmidi,snd_seq_midi
snd_timer 22812 2 snd_pcm,snd_seq
kvm 316100 1 kvm_intel
snd 53077 30 snd_pcm_oss,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_seq,snd_rawmidi,snd_hda_codec,snd_hda_intel,snd_seq_device,snd_mixer_oss,snd_hda_codec_cirrus
mei 37192 0
i2c_i801 17045 0
lpc_ich 16757 0
i2c_core 24040 2 i2c_i801,videodev
mfd_core 12601 1 lpc_ich
apple_gmux 13057 0
applesmc 18571 0
input_polldev 12906 1 applesmc
soundcore 13026 3 snd
processor 28422 1 acpi_cpufreq
video 17686 1 apple_gmux
thermal_sys 22879 2 video,processor
pcspkr 12632 0
battery 13146 0
apple_bl 12872 1 apple_gmux
ac 12624 0
button 12944 1 fglrx
ext4 410146 9
crc16 12343 2 ext4,bluetooth
jbd2 80811 1 ext4
mbcache 13082 3 ext2,ext3,ext4
btrfs 652178 0
xor 16985 1 btrfs
zlib_deflate 25638 2 deflate,btrfs
raid6_pq 95431 1 btrfs
libcrc32c 12426 2 xfs,btrfs
dm_crypt 18372 1
dm_mod 64002 38 dm_crypt
sg 26095 0
sr_mod 21988 0
sd_mod 40549 3
cdrom 35212 1 sr_mod
crc_t10dif 12348 1 sd_mod
ata_generic 12490 0
hid_generic 12393 0
hid_apple 12633 0
usbhid 40792 0
hid 81763 3 hid_generic,usbhid,hid_apple
crc32c_intel 21850 1
ghash_clmulni_intel 13062 0
aesni_intel 50700 7
aes_x86_64 16719 1 aesni_intel
sdhci_pci 17847 0
ablk_helper 12572 4 serpent_sse2_x86_64,aesni_intel,serpent_avx_x86_64,twofish_avx_x86_64
sdhci 27242 1 sdhci_pci
cryptd 14560 4 ghash_clmulni_intel,aesni_intel,ablk_helper
xts 12722 6 camellia_x86_64,serpent_sse2_x86_64,aesni_intel,serpent_avx_x86_64,twofish_avx_x86_64,twofish_x86_64_3way
lrw 12871 6 camellia_x86_64,serpent_sse2_x86_64,aesni_intel,serpent_avx_x86_64,twofish_avx_x86_64,twofish_x86_64_3way
ata_piix 29671 2
gf128mul 13047 2 lrw,xts
firewire_ohci 31931 0
firewire_core 49206 1 firewire_ohci
crc_itu_t 12347 1 firewire_core
uhci_hcd 26976 0
ehci_pci 12472 0
microcode 30413 0
ehci_hcd 40464 1 ehci_pci
mmc_core 77725 4 b43,ssb,sdhci,sdhci_pci
tg3 128907 0
ptp 13403 1 tg3
pps_core 13271 1 ptp
libphy 23687 1 tg3
libata 141721 2 ata_generic,ata_piix
scsi_mod 162613 4 sg,libata,sd_mod,sr_mod
usbcore 134791 8 btusb,uhci_hcd,uvcvideo,ehci_hcd,ehci_pci,usbhid,ath9k_htc,bcm5974
usb_common 12354 1 usbcore
[-- Attachment #4: lspci --]
[-- Type: text/plain, Size: 2654 bytes --]
00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core Processor Family DRAM Controller [8086:0104] (rev 09)
00:01.0 PCI bridge [0604]: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port [8086:0101] (rev 09)
00:01.1 PCI bridge [0604]: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port [8086:0105] (rev 09)
00:16.0 Communication controller [0780]: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Universal Host Controller #5 [8086:1c2c] (rev 05)
00:1a.7 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 05)
00:1b.0 Audio device [0403]: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller [8086:1c20] (rev 05)
00:1c.0 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 [8086:1c10] (rev b5)
00:1c.1 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 2 [8086:1c12] (rev b5)
00:1c.2 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 3 [8086:1c14] (rev b5)
00:1d.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Universal Host Controller #1 [8086:1c27] (rev 05)
00:1d.7 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 [8086:1c26] (rev 05)
00:1f.0 ISA bridge [0601]: Intel Corporation HM65 Express Chipset Family LPC Controller [8086:1c49] (rev 05)
00:1f.2 IDE interface [0101]: Intel Corporation 6 Series/C200 Series Chipset Family 4 port SATA IDE Controller [8086:1c01] (rev 05)
00:1f.3 SMBus [0c05]: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller [8086:1c22] (rev 05)
01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Seymour [Radeon HD 6400M/7400M Series] [1002:6760]
01:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Caicos HDMI Audio [Radeon HD 6400 Series] [1002:aa98]
02:00.0 Ethernet controller [0200]: Broadcom Corporation NetXtreme BCM57765 Gigabit Ethernet PCIe [14e4:16b4] (rev 10)
02:00.1 SD Host controller [0805]: Broadcom Corporation NetXtreme BCM57765 Memory Card Reader [14e4:16bc] (rev 10)
03:00.0 Network controller [0280]: Broadcom Corporation BCM4331 802.11a/b/g/n [14e4:4331] (rev 02)
04:00.0 FireWire (IEEE 1394) [0c00]: LSI Corporation FW643 [TrueFire] PCIe 1394b Controller [11c1:5901] (rev 08)
[-- Attachment #5: lsusb --]
[-- Type: text/plain, Size: 882 bytes --]
Bus 001 Device 002: ID 0424:2513 Standard Microsystems Corp. 2.0 Hub
Bus 001 Device 003: ID 05ac:8509 Apple, Inc. FaceTime HD Camera
Bus 002 Device 002: ID 0424:2513 Standard Microsystems Corp. 2.0 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 004: ID 0a5c:4500 Broadcom Corp. BCM2046B1 USB 2.0 Hub (part of BCM2046 Bluetooth)
Bus 001 Device 005: ID 05ac:0246 Apple, Inc. Internal Keyboard/Trackpad (ISO)
Bus 001 Device 028: ID 0cf3:7015 Atheros Communications, Inc. TP-Link TL-WN821N v3 802.11n [Atheros AR7010+AR9287]
Bus 002 Device 003: ID 05ac:8242 Apple, Inc. Built-in IR Receiver
Bus 001 Device 008: ID 05ac:821a Apple, Inc. Bluetooth Host Controller
[-- Attachment #6: kernlog.gz --]
[-- Type: application/octet-stream, Size: 37342 bytes --]
[-- Attachment #7: dmidecode --]
[-- Type: text/plain, Size: 28822 bytes --]
# dmidecode 2.12
SMBIOS 2.4 present.
82 structures occupying 3976 bytes.
Table at 0x000E0000.
Handle 0x0000, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2033 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0002
L2 Cache Handle: 0x0003
L3 Cache Handle: 0x0004
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x0001, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0002, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0003, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0004, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x0005, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2027 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0007
L2 Cache Handle: 0x0008
L3 Cache Handle: 0x0009
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x0006, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0007, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0008, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0009, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x000A, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2040 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x000C
L2 Cache Handle: 0x000D
L3 Cache Handle: 0x000E
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x000B, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x000C, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x000D, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x000E, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x000F, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2033 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0011
L2 Cache Handle: 0x0012
L3 Cache Handle: 0x0013
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x0010, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0011, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0012, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0013, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x0014, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2031 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0016
L2 Cache Handle: 0x0017
L3 Cache Handle: 0x0018
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x0015, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0016, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0017, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0018, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x0019, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 40624 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x001B
L2 Cache Handle: 0x001C
L3 Cache Handle: 0x001D
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x001A, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x001B, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x001C, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x001D, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x001E, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2041 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0020
L2 Cache Handle: 0x0021
L3 Cache Handle: 0x0022
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x001F, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0020, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0021, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0022, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x0023, DMI type 4, 35 bytes
Processor Information
Socket Designation: U2E1
Type: Central Processor
Family: Other
Manufacturer: Intel(R) Corporation
ID: A7 06 02 00 FF FB EB BF
Version: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Voltage: 0.0 V
External Clock: Unknown
Max Speed: 2000 MHz
Current Speed: 2022 MHz
Status: Populated, Enabled
Upgrade: ZIF Socket
L1 Cache Handle: 0x0025
L2 Cache Handle: 0x0026
L3 Cache Handle: 0x0027
Serial Number: Not Specified
Asset Tag: Intel(R) Core(TM) i7-2635QM CPU @ 2.00GHz
Part Number: Not Specified
Handle 0x0024, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Other
Associativity: 16-way Set-associative
Handle 0x0025, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 32 kB
Maximum Size: 32 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Unknown
Associativity: 16-way Set-associative
Handle 0x0026, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 256 kB
Maximum Size: 256 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 16-way Set-associative
Handle 0x0027, DMI type 7, 19 bytes
Cache Information
Socket Designation: Unknown
Configuration: Enabled, Not Socketed, Level 3
Operational Mode: Write Back
Location: Internal
Installed Size: 6 kB
Maximum Size: 6 kB
Supported SRAM Types:
Asynchronous
Installed SRAM Type: Asynchronous
Speed: Unknown
Error Correction Type: Single-bit ECC
System Type: Instruction
Associativity: 48-way Set-associative
Handle 0x0028, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 8 GB
Error Information Handle: Not Provided
Number Of Devices: 2
Handle 0x0029, DMI type 130, 186 bytes
OEM-specific Type
Header and Data:
82 BA 29 00 2A 00 00 00 B0 00 92 10 0B 03 03 19
00 09 03 52 01 08 0C 00 3C 00 69 78 69 30 69 11
20 89 00 05 3C 3C 00 F0 83 05 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 0F 11 05 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01
98 04 11 03 6D 22 E4 9C 3E C7 39 39 30 35 34 32
38 2D 30 31 32 2E 41 30 30 4C 46 20 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00
Handle 0x002A, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0028
Error Information Handle: No Error
Total Width: Unknown
Data Width: Unknown
Size: 4096 MB
Form Factor: SODIMM
Set: None
Locator: DIMM0
Bank Locator: BANK 0
Type: DDR3
Type Detail: Synchronous
Speed: 1333 MHz
Manufacturer: 0x0198
Serial Number: 0x6D22E49C
Asset Tag: Unknown
Part Number: 0x393930353432382D3031322E4130304C4620
Handle 0x002B, DMI type 130, 186 bytes
OEM-specific Type
Header and Data:
82 BA 2B 00 2C 00 00 00 B0 00 92 10 0B 03 03 19
00 09 03 52 01 08 0C 00 3C 00 69 78 69 30 69 11
20 89 00 05 3C 3C 00 F0 83 05 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 0F 11 05 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01
98 04 11 02 65 1F 7A 5B 3E C7 39 39 30 35 34 32
38 2D 30 31 32 2E 41 30 30 4C 46 20 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00
Handle 0x002C, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0028
Error Information Handle: No Error
Total Width: Unknown
Data Width: Unknown
Size: 4096 MB
Form Factor: SODIMM
Set: None
Locator: DIMM0
Bank Locator: BANK 1
Type: DDR3
Type Detail: Synchronous
Speed: 1333 MHz
Manufacturer: 0x0198
Serial Number: 0x651F7A5B
Asset Tag: Unknown
Part Number: 0x393930353432382D3031322E4130304C4620
Handle 0x002D, DMI type 19, 15 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x001FFFFFFFF
Range Size: 8 GB
Physical Array Handle: 0x0028
Partition Width: 0
Handle 0x002E, DMI type 0, 24 bytes
BIOS Information
Vendor: Apple Inc.
Version: MBP81.88Z.0047.B27.1201241646
Release Date: 01/24/12
ROM Size: 8192 kB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
ACPI is supported
IEEE 1394 boot is supported
Smart battery is supported
Function key-initiated network boot is supported
BIOS Revision: 0.1
Handle 0x002F, DMI type 1, 27 bytes
System Information
Manufacturer: Apple Inc.
Product Name: MacBookPro8,2
Version: 1.0
Serial Number: C02FK23WDF8Y
UUID: A712F2DF-2839-805E-AEB8-1E1682E1322F
Wake-up Type: Power Switch
SKU Number: System SKU#
Family: MacBook Pro
Handle 0x0030, DMI type 2, 16 bytes
Base Board Information
Manufacturer: Apple Inc.
Product Name: Mac-94245A3940C91C80
Version: MacBookPro8,2
Serial Number: C02115500D8DMNVA2
Asset Tag: Base Board Asset Tag#
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Part Component
Chassis Handle: 0x0031
Type: Motherboard
Contained Object Handles: 0
Handle 0x0031, DMI type 3, 21 bytes
Chassis Information
Manufacturer: Apple Inc.
Type: Notebook
Lock: Not Present
Version: Mac-94245A3940C91C80
Serial Number: C02FK23WDF8Y
Asset Tag: Not Specified
Boot-up State: Safe
Power Supply State: Safe
Thermal State: Other
Security Status: Other
OEM Information: 0x00000000
Height: Unspecified
Number Of Power Cords: Unspecified
Contained Elements: 0
Handle 0x0032, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: FireWire 800
External Connector Type: IEEE 1394
Port Type: Firewire (IEEE P1394)
Handle 0x0033, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Ethernet
External Connector Type: RJ-45
Port Type: Network Port
Handle 0x0034, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: USB0
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0035, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: USB1
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0036, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: USB2
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0037, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: SD Card Reader
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0038, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Mini DisplayPort
External Connector Type: None
Port Type: Other
Handle 0x0039, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Microphone
External Connector Type: None
Port Type: Other
Handle 0x003A, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: Other
External Reference Designator: Speaker
External Connector Type: None
Port Type: Other
Handle 0x003B, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Audio Line In
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x003C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: Audio Line Out
External Connector Type: Mini Jack (headphones)
Port Type: Audio Port
Handle 0x003D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: MagSafe DC Power
External Connector Type: Other
Port Type: Other
Handle 0x003E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA Port A
Internal Connector Type: On Board IDE
External Reference Designator: None
External Connector Type: None
Port Type: Other
Handle 0x003F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SATA Port B
Internal Connector Type: On Board IDE
External Reference Designator: None
External Connector Type: None
Port Type: Other
Handle 0x0040, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: None
Internal Connector Type: None
External Reference Designator: PCI-Express Mini Card
External Connector Type: Other
Port Type: Other
Handle 0x0041, DMI type 9, 13 bytes
System Slot Information
Designation: AirPort
Type: x1 PCI Express
Current Usage: Available
Length: Short
ID: 0
Characteristics:
3.3 V is provided
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0042, DMI type 9, 13 bytes
System Slot Information
Designation: ExpressCard
Type: x1 PCI Express
Current Usage: Available
Length: Short
ID: 1
Characteristics:
3.3 V is provided
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0043, DMI type 9, 13 bytes
System Slot Information
Designation: Thunderbolt Slot 1
Type: 32-bit PCI
Current Usage: Available
Length: Long
ID: 2
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0044, DMI type 9, 13 bytes
System Slot Information
Designation: Thunderbolt Slot 2
Type: 32-bit PCI
Current Usage: Available
Length: Long
ID: 3
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0045, DMI type 9, 13 bytes
System Slot Information
Designation: Thunderbolt Slot 3
Type: 32-bit PCI
Current Usage: Available
Length: Long
ID: 4
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0046, DMI type 9, 13 bytes
System Slot Information
Designation: Thunderbolt Slot 4
Type: 32-bit PCI
Current Usage: Available
Length: Long
ID: 5
Characteristics:
3.3 V is provided
PME signal is supported
Hot-plug devices are supported
SMBus signal is supported
Handle 0x0047, DMI type 10, 6 bytes
On Board Device Information
Type: Video
Status: Enabled
Description: nVidia Video Adapter
Handle 0x0048, DMI type 10, 6 bytes
On Board Device Information
Type: Sound
Status: Enabled
Description: Azalia Audio Codec
Handle 0x0049, DMI type 10, 6 bytes
On Board Device Information
Type: Ethernet
Status: Enabled
Description: Broadcom Ethernet Controller
Handle 0x004A, DMI type 10, 6 bytes
On Board Device Information
Type: Other
Status: Enabled
Description: SATA
Handle 0x004B, DMI type 12, 5 bytes
System Configuration Options
Handle 0x004C, DMI type 13, 22 bytes
BIOS Language Information
Language Description Format: Long
Installable Languages: 1
<BAD INDEX>
Currently Installed Language: Not Specified
Handle 0x004D, DMI type 22, 32 bytes
Portable Battery
Location: Unknown
Manufacturer: Unknown
Manufacture Date: Unknown
Serial Number: Unknown
Name: Unknown
Design Capacity: Unknown
Design Voltage: Unknown
SBDS Version: Unknown
Maximum Error: Unknown
SBDS Chemistry: Unknown
OEM-specific Information: 0x00000000
Handle 0x004E, DMI type 32, 20 bytes
System Boot Information
Status: No errors detected
Handle 0x004F, DMI type 131, 6 bytes
OEM-specific Type
Header and Data:
83 06 4F 00 03 07
Handle 0x0050, DMI type 128, 88 bytes
OEM-specific Type
Header and Data:
80 58 50 00 04 00 00 00 37 F5 01 C0 37 FF 03 C0
02 00 00 03 00 00 00 00 00 10 98 FF FF FF C8 FF
00 00 C9 FF FF 7F CB FF 00 80 CB FF FF 1F E8 FF
00 80 ED FF FF FF EF FF 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00
Handle 0xFFFD, DMI type 127, 4 bytes
End Of Table
^ permalink raw reply
* Re: BCM4331 deauthenticates every five minutes
From: Chris Adams @ 2013-06-19 21:11 UTC (permalink / raw)
To: Arend van Spriel
Cc: Rafał Miłecki, Larry Finger, b43-dev, linux-wireless
In-Reply-To: <51C21B7C.2030005@broadcom.com>
Once upon a time, Arend van Spriel <arend@broadcom.com> said:
> Can you make a capture using a wireless sniffer (using your thinkpad maybe)?
How would I go about doing that? I've done lots of network debugging
with tcpdump and such, but not much wireless stuff.
--
Chris Adams <cmadams@cmadams.net>
^ permalink raw reply
* [PATCH-WN 2/3] wireless: Check for dangling wdev->current_bss pointer.
From: greearb @ 2013-06-19 21:06 UTC (permalink / raw)
To: linux-wireless; +Cc: Ben Greear
In-Reply-To: <1371675987-28732-1-git-send-email-greearb@candelatech.com>
From: Ben Greear <greearb@candelatech.com>
If it *is* still set when the netdev is being deleted,
then we are about to leak a pointer. Warn and clean up
in that case.
Signed-off-by: Ben Greear <greearb@candelatech.com>
---
This is against wireless-next. I've never seen this hit,
though possibly it would catch some future bugs. If you
think it's not useful, I won't argue :)
net/wireless/core.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/net/wireless/core.c b/net/wireless/core.c
index 9143288..042d6a3 100644
--- a/net/wireless/core.c
+++ b/net/wireless/core.c
@@ -934,6 +934,12 @@ static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
* freed.
*/
cfg80211_process_wdev_events(wdev);
+
+ if (WARN_ON(wdev->current_bss)) {
+ cfg80211_unhold_bss(wdev->current_bss);
+ cfg80211_put_bss(wdev->wiphy, &wdev->current_bss->pub);
+ wdev->current_bss = NULL;
+ }
break;
case NETDEV_PRE_UP:
if (!(wdev->wiphy->interface_modes & BIT(wdev->iftype)))
--
1.7.3.4
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox