* [PATCH 1/1] AF_UNIX: Fix poll locking problem when reading from a stream socket
From: Alexey Moiseytsev @ 2011-11-21 23:35 UTC (permalink / raw)
To: David S. Miller, Eric Dumazet; +Cc: netdev, linux-kernel, Alexey Moiseytsev
poll() call may be locked by concurrent reading from the same stream
socket.
Signed-off-by: Alexey Moiseytsev <himeraster@gmail.com>
---
net/unix/af_unix.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 466fbcc..b595a3d 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -1957,6 +1957,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
if ((UNIXCB(skb).pid != siocb->scm->pid) ||
(UNIXCB(skb).cred != siocb->scm->cred)) {
skb_queue_head(&sk->sk_receive_queue, skb);
+ sk->sk_data_ready(sk, skb->len);
break;
}
} else {
@@ -1974,6 +1975,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
chunk = min_t(unsigned int, skb->len, size);
if (memcpy_toiovec(msg->msg_iov, skb->data, chunk)) {
skb_queue_head(&sk->sk_receive_queue, skb);
+ sk->sk_data_ready(sk, skb->len);
if (copied == 0)
copied = -EFAULT;
break;
@@ -1991,6 +1993,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
/* put the skb back if we didn't use it up.. */
if (skb->len) {
skb_queue_head(&sk->sk_receive_queue, skb);
+ sk->sk_data_ready(sk, skb->len);
break;
}
@@ -2006,6 +2009,7 @@ static int unix_stream_recvmsg(struct kiocb *iocb, struct socket *sock,
/* put message back and return */
skb_queue_head(&sk->sk_receive_queue, skb);
+ sk->sk_data_ready(sk, skb->len);
break;
}
} while (size);
--
1.7.2.5
^ permalink raw reply related
* Re: [bug] af_unix: Reading from a stream socket may lock the concurrent poll() call
From: Alexey Moiseytsev @ 2011-11-21 23:34 UTC (permalink / raw)
To: Eric Dumazet; +Cc: linux-kernel, netdev
In-Reply-To: <1321886286.10470.7.camel@edumazet-HP-Compaq-6005-Pro-SFF-PC>
21.11.2011 18:38, Eric Dumazet пишет:
> Le lundi 21 novembre 2011 à 00:19 +0400, Alexey Moiseytsev a écrit :
>> Hello,
>>
>> The following program shows how the poll() call hangs on a non-empty
>> stream socket.
>>
>> #include<sys/types.h>
>> #include<sys/socket.h>
>> #include<pthread.h>
>> #include<stdio.h>
>> #include<unistd.h>
>> #include<poll.h>
>>
>> int sockets[2];
>>
>> int poll_socket(void) {
>> struct pollfd pfd = {
>> .fd = sockets[1],
>> .events = POLLIN
>> };
>> return poll(&pfd, 1, -1);
>> }
>>
>>
>> /* observer routine doesn't modify amount of data available in the
>> socket buffer */
>> void* observer(void* arg) {
>> char buffer;
>> for (int j = 0; j< 2000; j++) {
>> recv(sockets[1],&buffer, sizeof(buffer), MSG_PEEK);
>> sched_yield();
>> }
>> return NULL;
>> }
>>
>> int main(void) {
>> if (socketpair(PF_UNIX, SOCK_STREAM, 0, sockets) == -1)
>> return 1;
>> int rc, data[250] = {0};
>> if ((rc = send(sockets[0],&data, sizeof(data), MSG_DONTWAIT))<= 0)
>> return 2;
>> poll_socket();
>> /* If the first poll_socket() call didn't hang then the following
>> message will be printed */
>> fprintf(stderr, "%d bytes available in input buffer\n", rc);
>> pthread_t observer_thread;
>> pthread_create(&observer_thread, NULL, observer, NULL);
>> for (int j = 0; j< 20000; j++) {
>> /* If the first poll_socket() call didn't hang then all the following
>> calls should do the same */
>> poll_socket();
>> }
>> fprintf(stderr, "Well done\n");
>> pthread_join(observer_thread, NULL);
>> close(sockets[0]);
>> close(sockets[1]);
>> return 0;
>> }
>>
>>
>> Expected output: two lines or nothing (in case of error).
>> Observed output: only the first line (and the process never exits).
>>
>> So the first poll() said that there is some data available in the
>> socket. And one of the following poll() said that there is no data
>> available in the socket. But this is false because the observer thread
>> didn't actually consume any data from then socket.
>>
>> I assume that this bug can be eliminated by adding
>> sk->sk_data_ready(...) call right after each call to
>> skb_queue_head(..) in the unix_stream_recvmsg(...) routine
>> (net/unix/af_unix.c)
>>
>> Other info:
>> $ uname -srmo
>> Linux 2.6.32-5-amd64 x86_64 GNU/Linux
>>
>
> Hi Alexy
>
> I believe you found a bug and your suggested fix should be just fine.
>
> (Or maybe testing in unix_poll() that at least one thread is currently
> handling one skb from sk->receive_queue)
>
> Could you submit an official patch on top of current Linus tree or do
> you prefer us to take care of this ?
>
Hi,
I will try to send a patch. If I will do something wrong, feel free to
submit it yourself.
^ permalink raw reply
* Re: [bug] af_unix: Reading from a stream socket may lock the concurrent poll() call
From: Alexey Moiseytsev @ 2011-11-21 23:34 UTC (permalink / raw)
To: David Miller; +Cc: linux-kernel, netdev
In-Reply-To: <20111120.153156.1383147368726575639.davem@davemloft.net>
21.11.2011 00:31, David Miller пишет:
> From: Alexey Moiseytsev<himeraster@gmail.com>
> Date: Mon, 21 Nov 2011 00:19:02 +0400
>
>> Other info:
>> $ uname -srmo
>> Linux 2.6.32-5-amd64 x86_64 GNU/Linux
>
> There have been numerous AF_UNIX bug fixes since that release, please try
> to reproduce your problem with current kernels.
>
I upgraded kernel up to 3.2-rc2 but the problem still exists.
^ permalink raw reply
* Re: Firmware errors and warnings with Centrino Advanced-N 6205
From: wwguy @ 2011-11-21 23:29 UTC (permalink / raw)
To: Udo Steinberg
Cc: Linux Network Mailing List,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
In-Reply-To: <20111122002838.392f7622@x220>
Base on the information you provide, I am prettyr sure you are using
pure-40MHz.
Is there any chance you have the access to the AP and check on it
configuration? is it "pure-40MHz above", could you either change it to
"20/40 MHz mixed mode", or change it to "pure-40MHz below" and see if
the problem is exist?
Thanks
Wey
On Mon, 2011-11-21 at 15:28 -0800, Udo Steinberg wrote:
> On Mon, 21 Nov 2011 14:48:44 -0800 wwguy (W) wrote:
>
> W> btw, are you using pure 40MHz mode on your AP?
>
> Hi Wey,
>
> I am not sure, but I believe it's running some mix of 802.11 b/g/n.
>
> The Linux that runs on the Fritz!Box says:
>
> ath0 IEEE 802.11ng ESSID:"XXX" Nickname:""
> Mode:Master Frequency:2.412 GHz Access Point: 00:24:FE:41:8D:0E
> Bit Rate:0 kb/s Tx-Power:19 dBm Sensitivity=0/3
> Retry:off RTS thr:off Fragment thr:off
> Encryption key:XXXX-XXXX-XXXX-XXXX-XXXX-XXX-XXXX-EBCB [2] Security mode:open
> Power Management:off
> Link Quality=49/94 Signal level=-60 dBm Noise level=-109 dBm
> Rx invalid nwid:3 Rx invalid crypt:0 Rx invalid frag:0
> Tx excessive retries:0 Invalid misc:0 Missed beacon:0
>
> The web interface shows that the AP uses channels 1-7 and sends on channel 1.
> I've attached a screenshot. Yellow bars indicate other WLANs and grey bars
> are other interference.
>
> Cheers,
>
> - Udo
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: Firmware errors and warnings with Centrino Advanced-N 6205
From: Udo Steinberg @ 2011-11-21 23:28 UTC (permalink / raw)
To: wwguy; +Cc: Linux Network Mailing List, linux-wireless@vger.kernel.org
In-Reply-To: <1321915724.1834.2.camel@wwguy-ubuntu>
[-- Attachment #1.1: Type: text/plain, Size: 1021 bytes --]
On Mon, 21 Nov 2011 14:48:44 -0800 wwguy (W) wrote:
W> btw, are you using pure 40MHz mode on your AP?
Hi Wey,
I am not sure, but I believe it's running some mix of 802.11 b/g/n.
The Linux that runs on the Fritz!Box says:
ath0 IEEE 802.11ng ESSID:"XXX" Nickname:""
Mode:Master Frequency:2.412 GHz Access Point: 00:24:FE:41:8D:0E
Bit Rate:0 kb/s Tx-Power:19 dBm Sensitivity=0/3
Retry:off RTS thr:off Fragment thr:off
Encryption key:XXXX-XXXX-XXXX-XXXX-XXXX-XXX-XXXX-EBCB [2] Security mode:open
Power Management:off
Link Quality=49/94 Signal level=-60 dBm Noise level=-109 dBm
Rx invalid nwid:3 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
The web interface shows that the AP uses channels 1-7 and sends on channel 1.
I've attached a screenshot. Yellow bars indicate other WLANs and grey bars
are other interference.
Cheers,
- Udo
[-- Attachment #1.2: ap.png --]
[-- Type: image/png, Size: 23821 bytes --]
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply
* Re: [PATCH v2 5/5] net: Add Open vSwitch kernel components.
From: Stephen Hemminger @ 2011-11-21 23:25 UTC (permalink / raw)
To: Jesse Gross
Cc: dev-yBygre7rU0TnMu66kgdUjQ, netdev-u79uwXL29TY76Z2rM5mHXA,
David S. Miller
In-Reply-To: <CAEP_g=8uoq7tJjUTAC_Sp3kOYwZJuKjD3J7Ratu67Kq56ZiyYA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
On Mon, 21 Nov 2011 15:18:43 -0800
Jesse Gross <jesse-l0M0P4e3n4LQT0dZR+AlfA@public.gmane.org> wrote:
> On Mon, Nov 21, 2011 at 1:59 PM, Stephen Hemminger
> <shemminger-ZtmgI6mnKB3QT0dZR+AlfA@public.gmane.org> wrote:
> > On Mon, 21 Nov 2011 13:30:29 -0800
> > Jesse Gross <jesse-l0M0P4e3n4LQT0dZR+AlfA@public.gmane.org> wrote:
> >
> >> +/**
> >> + * vport_record_error - indicate device error to generic stats layer
> >> + *
> >> + * @vport: vport that encountered the error
> >> + * @err_type: one of enum vport_err_type types to indicate the error type
> >> + *
> >> + * If using the vport generic stats layer indicate that an error of the given
> >> + * type has occured.
> >> + */
> >> +void vport_record_error(struct vport *vport, enum vport_err_type err_type)
> >> +{
> >> + spin_lock(&vport->stats_lock);
> >
> > Sorry for over analyzing this... but I don't think the stats_lock
> > is necessary either. The only thing it is protecting is against 64 bit
> > wrap. If you used another u64_stat_sync for that one, it could be eliminated.
> >
> > Maybe?
>
> The reason for stats_lock is that the error stats are not expected to
> be contended so in order to save some memory they're not per-cpu and
> we just use a spin lock to protect them.
Assignment or increment of native type size (64 bit on 64 bit cpu)
is always atomic.
^ permalink raw reply
* Re: [PATCH v2 5/5] net: Add Open vSwitch kernel components.
From: Jesse Gross @ 2011-11-21 23:23 UTC (permalink / raw)
To: Stephen Hemminger
Cc: dev-yBygre7rU0TnMu66kgdUjQ, netdev-u79uwXL29TY76Z2rM5mHXA,
David S. Miller
In-Reply-To: <20111121141235.71a5f8fd-We1ePj4FEcvRI77zikRAJc56i+j3xesD0e7PPNI6Mm0@public.gmane.org>
On Mon, Nov 21, 2011 at 2:12 PM, Stephen Hemminger
<shemminger-ZtmgI6mnKB3QT0dZR+AlfA@public.gmane.org> wrote:
> There are lots of new global symbols created by this module.
> Since C has no namespaces, a kernel module needs to in general
> stick to one prefix and naming convention.
That's a good point. Thanks, I'll fix it.
^ permalink raw reply
* [PATCH net-next v1 4/4] net-e1000e: Report carrier in loopback mode
From: David Decotigny @ 2011-11-21 23:20 UTC (permalink / raw)
To: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
John Ronciak, e1000-devel, netdev, linux-kernel
Cc: David Decotigny, Ian Campbell, Maciej Żenczykowski,
Paul Gortmaker, David S. Miller
In-Reply-To: <cover.1321917278.git.david.decotigny@google.com>
From: Maciej Żenczykowski <zenczykowski@gmail.com>
When interface is configured in loopback mode, force carrier check
positive. This is useful when interface does not have carrier and
test puts the interface in loopback mode.
Tested: pktgen loopback on 80003ES2LAN
Signed-off-by: David Decotigny <david.decotigny@google.com>
---
drivers/net/ethernet/intel/e1000e/phy.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000e/phy.c b/drivers/net/ethernet/intel/e1000e/phy.c
index f487a7f..9476c8f 100644
--- a/drivers/net/ethernet/intel/e1000e/phy.c
+++ b/drivers/net/ethernet/intel/e1000e/phy.c
@@ -1781,6 +1781,11 @@ s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
u16 phy_reg;
int good_reads_phy_status = 0;
+ /* If loopback is enabled, we claim the link is up */
+ if ((0 == e1e_rphy(hw, PHY_CONTROL, &phy_reg))
+ && (phy_reg & MII_CR_LOOPBACK)) {
+ *success = true;
+ return 0;
}
/*
--
1.7.3.1
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, application performance,
security threats, fraudulent activity, and more. Splunk takes this
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply related
* [PATCH net-next v1 3/4] net-e1000e: reworked carrier detection logic
From: David Decotigny @ 2011-11-21 23:19 UTC (permalink / raw)
To: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
John Ronciak, e1000-devel, netdev, linux-kernel
Cc: David Decotigny, Ian Campbell, Maciej Żenczykowski,
Paul Gortmaker, David S. Miller
In-Reply-To: <cover.1321917278.git.david.decotigny@google.com>
From: Maciej Żenczykowski <zenczykowski@gmail.com>
This change removes an un-needed final pause in case of timeout and
reworks the "link is up" detection logic.
Signed-off-by: David Decotigny <david.decotigny@google.com>
---
drivers/net/ethernet/intel/e1000e/phy.c | 64 +++++++++++++++++++------------
1 files changed, 39 insertions(+), 25 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000e/phy.c b/drivers/net/ethernet/intel/e1000e/phy.c
index 8666476..f487a7f 100644
--- a/drivers/net/ethernet/intel/e1000e/phy.c
+++ b/drivers/net/ethernet/intel/e1000e/phy.c
@@ -1775,39 +1775,53 @@ static s32 e1000_wait_autoneg(struct e1000_hw *hw)
* Polls the PHY status register for link, 'iterations' number of times.
**/
s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,
- u32 usec_interval, bool *success)
+ u32 usec_interval, bool *success)
{
- s32 ret_val = 0;
- u16 i, phy_status;
+ u32 i;
+ u16 phy_reg;
+ int good_reads_phy_status = 0;
+
+ }
+
+ /*
+ * Remember that e1e_rphy may fail because of another entity
+ * (like the firmware) holding the lock, we need to handle
+ * this gracefully - by waiting and trying again.
+ *
+ * Some PHYs require the PHY_STATUS register to be read twice
+ * due to the link bit being sticky. No harm doing it across
+ * the board.
+ */
+ for (i = 0; i < iterations; /* i incremented manually */) {
+ if (0 == e1e_rphy(hw, PHY_STATUS, &phy_reg)) {
+ if (++good_reads_phy_status < 2)
+ continue; /* Re-read once, to make sure */
- for (i = 0; i < iterations; i++) {
- /*
- * Some PHYs require the PHY_STATUS register to be read
- * twice due to the link bit being sticky. No harm doing
- * it across the board.
- */
- ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
- if (ret_val)
/*
- * If the first read fails, another entity may have
- * ownership of the resources, wait and try again to
- * see if they have relinquished the resources yet.
+ * Great, we got at least 2 successfull reads
*/
- udelay(usec_interval);
- ret_val = e1e_rphy(hw, PHY_STATUS, &phy_status);
- if (ret_val)
- break;
- if (phy_status & MII_SR_LINK_STATUS)
- break;
- if (usec_interval >= 1000)
- mdelay(usec_interval/1000);
+
+ if (phy_reg & MII_SR_LINK_STATUS) {
+ /* success: link up */
+ *success = true;
+ return 0;
+ }
+ }
+
+ /* Pause now and re-iterate */
+ if (++i >= iterations)
+ break; /* Pause not needed after last iteration */
+ else if (usec_interval >= 1000)
+ mdelay(usec_interval / 1000);
else
udelay(usec_interval);
}
- *success = (i < iterations);
-
- return ret_val;
+ /* no success in for(;;) loop */
+ *success = false;
+ if (good_reads_phy_status < 2)
+ return -E1000_ERR_PHY;
+ return 0;
}
/**
--
1.7.3.1
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, application performance,
security threats, fraudulent activity, and more. Splunk takes this
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply related
* [PATCH net-next v1 2/4] net-e1000e: enable ethtool loopback support
From: David Decotigny @ 2011-11-21 23:19 UTC (permalink / raw)
To: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
John Ronciak, e1000-devel, netdev, linux-kernel
Cc: Paul Gortmaker, David Decotigny, David S. Miller, Ian Campbell
In-Reply-To: <cover.1321917278.git.david.decotigny@google.com>
This allows ethtool to activate loopback via the get/set_features API.
Tested:
- HW = 80003ES2LAN (copper), x86_64
- incoming external 200Mbps, loopback on/off, verified that incoming
stream resumed
- incoming external 200Mbps, ifconfig down, loopback on/off,
ifconfig up, verified that incoming stream resumed
- incoming external 200Mbps, loopback on, ifconfig down, loopback
off, ifconfig up, verified that incoming stream resumed
- the same with a pktgen when loopback is enabled: verifying that
tx_packets = rx_packets + rx_missed_errors, and that tx_packets is
very close to pktgen_packets (1 or 2 packets difference, not
more). Note that rx_missed_errors >> 0
- artificially simulated failure of enabling loopback -> reported by
set_features and kept loopback feature marked as not configured.
Signed-off-by: David Decotigny <david.decotigny@google.com>
---
drivers/net/ethernet/intel/e1000e/e1000.h | 2 ++
drivers/net/ethernet/intel/e1000e/ethtool.c | 6 +++---
drivers/net/ethernet/intel/e1000e/netdev.c | 21 ++++++++++++++++++++-
3 files changed, 25 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000e/e1000.h b/drivers/net/ethernet/intel/e1000e/e1000.h
index 9fe18d1..786cf31 100644
--- a/drivers/net/ethernet/intel/e1000e/e1000.h
+++ b/drivers/net/ethernet/intel/e1000e/e1000.h
@@ -485,6 +485,8 @@ extern const char e1000e_driver_version[];
extern void e1000e_check_options(struct e1000_adapter *adapter);
extern void e1000e_set_ethtool_ops(struct net_device *netdev);
+extern int e1000_loopback_setup(struct e1000_adapter *adapter);
+extern void e1000_loopback_cleanup(struct e1000_adapter *adapter);
extern int e1000e_up(struct e1000_adapter *adapter);
extern void e1000e_down(struct e1000_adapter *adapter);
diff --git a/drivers/net/ethernet/intel/e1000e/ethtool.c b/drivers/net/ethernet/intel/e1000e/ethtool.c
index fb2c28e..259add2 100644
--- a/drivers/net/ethernet/intel/e1000e/ethtool.c
+++ b/drivers/net/ethernet/intel/e1000e/ethtool.c
@@ -1410,7 +1410,7 @@ static int e1000_set_es2lan_mac_loopback(struct e1000_adapter *adapter)
return 0;
}
-static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
+int e1000_loopback_setup(struct e1000_adapter *adapter)
{
struct e1000_hw *hw = &adapter->hw;
u32 rctl;
@@ -1438,7 +1438,7 @@ static int e1000_setup_loopback_test(struct e1000_adapter *adapter)
return 7;
}
-static void e1000_loopback_cleanup(struct e1000_adapter *adapter)
+void e1000_loopback_cleanup(struct e1000_adapter *adapter)
{
struct e1000_hw *hw = &adapter->hw;
u32 rctl;
@@ -1593,7 +1593,7 @@ static int e1000_loopback_test(struct e1000_adapter *adapter, u64 *data)
if (*data)
goto out;
- *data = e1000_setup_loopback_test(adapter);
+ *data = e1000_loopback_setup(adapter);
if (*data)
goto err_loopback;
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index b63f316..25102e6 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -3256,6 +3256,14 @@ static void e1000_configure(struct e1000_adapter *adapter)
e1000_configure_rx(adapter);
adapter->alloc_rx_buf(adapter, e1000_desc_unused(adapter->rx_ring),
GFP_KERNEL);
+
+ if (adapter->netdev->features & NETIF_F_LOOPBACK) {
+ if (e1000_loopback_setup(adapter)) {
+ e_warn("Could not activate loopback mode\n");
+ adapter->netdev->features &= ~NETIF_F_LOOPBACK;
+ } else
+ e_info("Loopback mode activated\n");
+ }
}
/**
@@ -5914,9 +5922,17 @@ static int e1000_set_features(struct net_device *netdev,
adapter->flags |= FLAG_TSO_FORCE;
if (!(changed & (NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX |
- NETIF_F_RXCSUM)))
+ NETIF_F_RXCSUM | NETIF_F_LOOPBACK)))
return retval;
+ /* disable loopback if requested */
+ if ((changed & NETIF_F_LOOPBACK) && (!(features & NETIF_F_LOOPBACK))) {
+ netdev_dbg(netdev, "Disabling loopback mode\n");
+ e1000_loopback_cleanup(adapter);
+ }
+ /* otherwise loopback is enabled via e1000e_reinit_locked
+ * below and each time the device is up'ed */
+
if (netif_running(netdev))
e1000e_reinit_locked(adapter);
else
@@ -6113,6 +6129,9 @@ static int __devinit e1000_probe(struct pci_dev *pdev,
/* Set user-changeable features (subset of all device features) */
netdev->hw_features = netdev->features;
+ /* Add capabilities, disabled by default */
+ netdev->hw_features |= NETIF_F_LOOPBACK;
+
if (adapter->flags & FLAG_HAS_HW_VLAN_FILTER)
netdev->features |= NETIF_F_HW_VLAN_FILTER;
--
1.7.3.1
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, application performance,
security threats, fraudulent activity, and more. Splunk takes this
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply related
* [PATCH net-next v1 1/4] net-e1000e: fix ethtool set_features taking new features into account too late
From: David Decotigny @ 2011-11-21 23:19 UTC (permalink / raw)
To: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
John Ronciak, e1000-devel, netdev, linux-kernel
Cc: David Decotigny, David S. Miller, Eric Dumazet, Ian Campbell,
Paul Gortmaker
In-Reply-To: <cover.1321917278.git.david.decotigny@google.com>
Before this patch, the set_features() ethtool callback would not take
the new specified features into account when configuring the NIC. It
would only consider the current features, ie. the ones after previous
set_features(). A second ethtool set_features() with the same
specified features cannot work around that issue because it would boil
down to a nop (code checks wether specified features changed or not).
This patch solves this by propagating the requested features.
Tested:
printk in code + custom ethtool (based on
http://patchwork.ozlabs.org/patch/95836/)
Signed-off-by: David Decotigny <david.decotigny@google.com>
---
drivers/net/ethernet/intel/e1000e/netdev.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index a5bd7a3..b63f316 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -5901,24 +5901,28 @@ static void e1000_eeprom_checks(struct e1000_adapter *adapter)
}
static int e1000_set_features(struct net_device *netdev,
- netdev_features_t features)
+ netdev_features_t features)
{
struct e1000_adapter *adapter = netdev_priv(netdev);
netdev_features_t changed = features ^ netdev->features;
+ int retval = 1; /* telling netdev that we are updating
+ * netdev->features by ourselves */
+
+ netdev->features = features;
if (changed & (NETIF_F_TSO | NETIF_F_TSO6))
adapter->flags |= FLAG_TSO_FORCE;
if (!(changed & (NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_TX |
NETIF_F_RXCSUM)))
- return 0;
+ return retval;
if (netif_running(netdev))
e1000e_reinit_locked(adapter);
else
e1000e_reset(adapter);
- return 0;
+ return retval;
}
static const struct net_device_ops e1000e_netdev_ops = {
--
1.7.3.1
^ permalink raw reply related
* [PATCH net-next v1 0/4] e1000e: ethtool setfeatures fixes + loopback
From: David Decotigny @ 2011-11-21 23:19 UTC (permalink / raw)
To: Jeff Kirsher, Jesse Brandeburg, Bruce Allan, Carolyn Wyborny,
Don Skidmore, Greg Rose, Peter P Waskiewicz Jr, Alex Duyck,
John Ronciak, e1000-devel, netdev, linux-kernel
Cc: Paul Gortmaker, David Decotigny, David S. Miller, Ian Campbell
This series fixes a bug in ethtool setfeatures and adds loopback
support through ethtool setfeatures.
I believe these patches could easily be adapted to e1000, but I don't
have the hardware to test.
############################################
# Patch Set Summary:
David Decotigny (2):
net-e1000e: fix ethtool set_features taking new features into account
too late
net-e1000e: enable ethtool loopback support
Maciej Żenczykowski (2):
net-e1000e: reworked carrier detection logic
net-e1000e: Report carrier in loopback mode
drivers/net/ethernet/intel/e1000e/e1000.h | 2 +
drivers/net/ethernet/intel/e1000e/ethtool.c | 6 +-
drivers/net/ethernet/intel/e1000e/netdev.c | 31 ++++++++++--
drivers/net/ethernet/intel/e1000e/phy.c | 69 +++++++++++++++++----------
4 files changed, 76 insertions(+), 32 deletions(-)
--
1.7.3.1
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure
contains a definitive record of customers, application performance,
security threats, fraudulent activity, and more. Splunk takes this
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply
* Re: [PATCH v2 5/5] net: Add Open vSwitch kernel components.
From: Jesse Gross @ 2011-11-21 23:18 UTC (permalink / raw)
To: Stephen Hemminger
Cc: dev-yBygre7rU0TnMu66kgdUjQ, netdev-u79uwXL29TY76Z2rM5mHXA,
David S. Miller
In-Reply-To: <20111121135955.571254b1-We1ePj4FEcvRI77zikRAJc56i+j3xesD0e7PPNI6Mm0@public.gmane.org>
On Mon, Nov 21, 2011 at 1:59 PM, Stephen Hemminger
<shemminger@vyatta.com> wrote:
> On Mon, 21 Nov 2011 13:30:29 -0800
> Jesse Gross <jesse@nicira.com> wrote:
>
>> +/**
>> + * vport_record_error - indicate device error to generic stats layer
>> + *
>> + * @vport: vport that encountered the error
>> + * @err_type: one of enum vport_err_type types to indicate the error type
>> + *
>> + * If using the vport generic stats layer indicate that an error of the given
>> + * type has occured.
>> + */
>> +void vport_record_error(struct vport *vport, enum vport_err_type err_type)
>> +{
>> + spin_lock(&vport->stats_lock);
>
> Sorry for over analyzing this... but I don't think the stats_lock
> is necessary either. The only thing it is protecting is against 64 bit
> wrap. If you used another u64_stat_sync for that one, it could be eliminated.
>
> Maybe?
The reason for stats_lock is that the error stats are not expected to
be contended so in order to save some memory they're not per-cpu and
we just use a spin lock to protect them.
_______________________________________________
dev mailing list
dev@openvswitch.org
http://openvswitch.org/mailman/listinfo/dev
^ permalink raw reply
* Re: softirq oops from b44_poll
From: Peter P Waskiewicz Jr @ 2011-11-21 23:17 UTC (permalink / raw)
To: Xander Hover; +Cc: linux-kernel@vger.kernel.org, netdev
In-Reply-To: <CAJfGthSxanFbL2vKCpOQbP9K5oNAxeaYt7OMdmdoCb4eLQ_Fww@mail.gmail.com>
On Mon, 2011-11-21 at 05:58 -0800, Xander Hover wrote:
> Hi all,
>
> I noticed the small discussion about the b44_poll OOPS and
> I also have a uni-processor PC with a broadcom network device (b44)
> that causes similar kernel OOPSes.
>
> Here is a (reproducible) trace that still shows up in kernel 3.1.1:
>
> ------------[ cut here ]------------
> WARNING: at kernel/softirq.c:159 local_bh_enable+0x32/0x79()
> Hardware name: Dimension 2400
> Modules linked in: snd_seq_midi snd_emu10k1_synth snd_emux_synth
> snd_seq_virmidi snd_seq_midi_emul snd_seq_oss snd_seq_midi_event
> snd_seq snd_pcm_oss snd_mixer_oss bnep rfcomm cryptd aes_i586
> aes_generic ecb btusb bluetooth rfkill ppdev snd_emu10k1 snd_rawmidi
> snd_ac97_codec ac97_bus snd_pcm snd_seq_device snd_timer
> snd_page_alloc dcdbas snd_util_mem parport_pc snd_hwdep snd parport
> emu10k1_gp rtc_cmos gameport i2c_i801
> Pid: 0, comm: swapper Not tainted 3.1.1-gentoo #1
> Call Trace:
> [<c1022970>] warn_slowpath_common+0x65/0x7a
> [<c102699e>] ? local_bh_enable+0x32/0x79
> [<c1022994>] warn_slowpath_null+0xf/0x13
> [<c102699e>] local_bh_enable+0x32/0x79
> [<c134bfd8>] destroy_conntrack+0x7c/0x9b
> [<c134890b>] nf_conntrack_destroy+0x1f/0x26
> [<c132e3a6>] skb_release_head_state+0x74/0x83
> [<c132e286>] __kfree_skb+0xb/0x6b
> [<c132e30a>] consume_skb+0x24/0x26
> [<c127c925>] b44_poll+0xaa/0x449
> [<c1333ca1>] net_rx_action+0x3f/0xea
> [<c1026a44>] __do_softirq+0x5f/0xd5
> [<c10269e5>] ? local_bh_enable+0x79/0x79
> <IRQ> [<c1026c32>] ? irq_exit+0x34/0x8d
> [<c1003628>] ? do_IRQ+0x74/0x87
> [<c13f5329>] ? common_interrupt+0x29/0x30
> [<c1006e18>] ? default_idle+0x29/0x3e
> [<c10015a7>] ? cpu_idle+0x2f/0x5d
> [<c13e91c5>] ? rest_init+0x79/0x7b
> [<c15c66a9>] ? start_kernel+0x297/0x29c
> [<c15c60b0>] ? i386_start_kernel+0xb0/0xb7
> ---[ end trace 583f33bb1aa207a9 ]---
>
>
> However if I apply the following patch this error does not show up anymore:
>
>
> diff --git a/drivers/net/ethernet/broadcom/b44.c
> b/drivers/net/ethernet/broadcom/b44.c
> index 4cf835d..3fb66d0 100644
> --- a/drivers/net/ethernet/broadcom/b44.c
> +++ b/drivers/net/ethernet/broadcom/b44.c
> @@ -608,7 +608,7 @@ static void b44_tx(struct b44 *bp)
> skb->len,
> DMA_TO_DEVICE);
> rp->skb = NULL;
> - dev_kfree_skb(skb);
> + dev_kfree_skb_irq(skb);
I suspect the "right" way to fix this is to call dev_kfree_skb_any(skb);
instead, since that will handle the in-interrupt case if that's where
we're stuck.
Can you try this patch (compile-tested only) and see if fixes the issue
you're seeing:
commit e36ef2c1a2b6b517ed43254eb89768794a049b1c
Author: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Date: Mon Nov 21 15:14:18 2011 -0800
b44: Use dev_kfree_skb_any() in b44_tx()
Reported issues when using dev_kfree_skb() on UP systems and
systems with low numbers of cores. dev_kfree_skb_any() will
properly save IRQ state before freeing the skb, depending on
how b44_tx() is invoked.
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
---
drivers/net/ethernet/broadcom/b44.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ethernet/broadcom/b44.c
b/drivers/net/ethernet/broadcom/b44.c
index 4cf835d..6a7c39b 100644
--- a/drivers/net/ethernet/broadcom/b44.c
+++ b/drivers/net/ethernet/broadcom/b44.c
@@ -608,7 +608,7 @@ static void b44_tx(struct b44 *bp)
skb->len,
DMA_TO_DEVICE);
rp->skb = NULL;
- dev_kfree_skb(skb);
+ dev_kfree_skb_any(skb);
}
bp->tx_cons = cons;
^ permalink raw reply related
* Re: [PATCH] Change mii to ethtool advertisement function names
From: Ben Hutchings @ 2011-11-21 23:11 UTC (permalink / raw)
To: Matt Carlson; +Cc: davem, netdev, Michael Chan
In-Reply-To: <1321576255-29827-1-git-send-email-mcarlson@broadcom.com>
On Thu, 2011-11-17 at 16:30 -0800, Matt Carlson wrote:
> This patch implements advice by Ben Hutchings to change the mii side of
> the function names to look more like the register whose values they
> convert. New LPA translation functions have been added as well.
Thanks Matt.
Ben.
--
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
^ permalink raw reply
* Re: [PATCH 5/5] tcp: skip cwnd moderation in TCP_CA_Open in tcp_try_to_open
From: Yuchung Cheng @ 2011-11-21 22:57 UTC (permalink / raw)
To: Ilpo Järvinen
Cc: Neal Cardwell, David Miller, Netdev, Nandita Dukkipati,
Tom Herbert
In-Reply-To: <alpine.DEB.2.00.1111201024080.22397@melkinpaasi.cs.helsinki.fi>
On Sun, Nov 20, 2011 at 12:38 AM, Ilpo Järvinen
<ilpo.jarvinen@helsinki.fi> wrote:
> On Sat, 19 Nov 2011, Neal Cardwell wrote:
>> If your concern is receivers lying, then there are other easy ways
>> that a misbehaving receiver can get a sender to send too fast
>> (e.g. cumulatively ACKing the highest sequence number seen,
>> irrespective of holes). IMHO it would be a shame to penalize the vast
>> majority of well-behaved users to plug one potential attack vector
>> when there are other easy holes that an attacker would use.
>
> I disagree... there is huge difference as the receiver then has to gamble
> with the reliability of the flow. DSACK attack is nasty in that that it
> allows maintaining reliability while cheating bw.
>
I feel the original change Neal is proposing is getting lost. This
patch proposes when
a. ack is dubious
b. but it's not time to recover yet
c. and other checks in tcp_try_keep_open affirms the network is in
good condition, i.e, stat == Open
3. do not moderate cwnd (not 3, not 10 or any magic number).
Your concern is valid, but if that's true for majority then I argue
all undo logic on dsack or TS are causing major threats since they all
require some trusts of the remote end. Why even bother processing
DSACK if we can't trust them?
AFAIK cwnd moderation is to lower bursty drops not to discourage
(dsack) cheating. I believe the reason is the same in
tcp_try_to_open(). We are in common cases, e.g., loss-recovery, this
logic hurts performance.
^ permalink raw reply
* Re: Firmware errors and warnings with Centrino Advanced-N 6205
From: wwguy @ 2011-11-21 22:48 UTC (permalink / raw)
To: Udo Steinberg
Cc: Linux Network Mailing List,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
In-Reply-To: <20111121222335.19493eed@x220>
btw, are you using pure 40MHz mode on your AP?
Thanks
Wey
On Mon, 2011-11-21 at 13:23 -0800, Udo Steinberg wrote:
> On Mon, 21 Nov 2011 11:33:19 -0800 wwguy (W) wrote:
>
> W> Looks like the firmware not like the rate was used with the antenna
> W> choice.
> W>
> W> Could you please load the iwlagn module with debug flag = 0x1000
> W>
> W> $ sudo modprobe iwlagn debug=0x1000
> W>
> W> and let me know what you have
> W>
> W> btw, what kernel version you are using?
>
> Hi Wey,
>
> I'm using Linux kernel 3.1.0. I got the following output with debug=0x1000.
>
> Cheers,
>
> - Udo
>
> Nov 21 22:12:02 x220 kernel: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
> Nov 21 22:12:02 x220 kernel: Copyright(c) 2003-2011 Intel Corporation
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: setting latency timer to 64
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: pci_resource_len = 0x00002000
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: pci_resource_base = ffffc900041a0000
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: HW Revision ID = 0x34
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: irq 49 for MSI/MSI-X
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205 AGN, REV=0xB0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: device EEPROM VER=0x715, CALIB=0x6
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Device SKU: 0X1f0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Valid Tx ant: 0X3, Valid Rx ant: 0X3
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: loaded firmware version 17.168.5.3 build 42301
> Nov 21 22:12:02 x220 kernel: Registered led device: phy1-led
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: Selected rate control algorithm 'iwl-agn-rs'
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 last message repeated 2 times
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 last message repeated 5 times
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 last message repeated 11 times
> Nov 21 22:12:06 x220 kernel: wlan0: authenticate with 00:24:fe:41:8d:0e (try 1)
> Nov 21 22:12:06 x220 kernel: wlan0: authenticated
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 last message repeated 5 times
> Nov 21 22:12:06 x220 kernel: wlan0: associate with 00:24:fe:41:8d:0e (try 1)
> Nov 21 22:12:06 x220 kernel: wlan0: RX ReassocResp from 00:24:fe:41:8d:0e (capab=0x431 status=0 aid=1)
> Nov 21 22:12:06 x220 kernel: wlan0: associated
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 last message repeated 2 times
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008025 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:07 x220 last message repeated 2 times
> Nov 21 22:12:08 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:08 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:44 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:44 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90F | data2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x4E404AC5 | beacon time
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x812C753B | tsf low
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x085F4F65 | time gp2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x093D004E | hcmd
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00008520
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000058
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0010
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000c8
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460940:0x00000020:0208
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460959:0x00000000:0302
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460993:0x00000001:0203
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460998:0x0ab7001c:0206
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460999:0x00000040:0204
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461002:0x2a10fb5e:0222
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461002:0xc0100084:0223
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461005:0x00000040:0219
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461006:0x01000110:0211
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461010:0x00000000:0212
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461049:0x00000000:0215
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461051:0x00000008:0220
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461069:0x00000000:0302
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461100:0x000000d4:0303
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461104:0x00001fb8:0217
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461104:0x0ab7001c:0217
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461723:0x000000fa:0106
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461725:0x00000000:0301
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140463965:0x093d004e:0401
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140463975:0x00000000:0125
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:23 x220 last message repeated 3 times
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 last message repeated 2 times
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:25 x220 last message repeated 2 times
> Nov 21 22:14:40 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:40 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:15:05 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 last message repeated 2 times
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 last message repeated 2 times
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x0000E90D | data2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x3BC143DF | beacon time
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x88E40C21 | tsf low
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x07B77463 | time gp2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x091D004E | hcmd
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00007b58
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X00000078
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462778:0x00000008:0220
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462963:0x000000fa:0106
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462964:0x00000000:0302
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463112:0x000000d4:0322
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463141:0x005a7a5f:0310
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463204:0x0a6e001c:0206
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463205:0x00000001:0204
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463209:0x00000001:0214
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463209:0x01001110:0205
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463233:0x00000020:0208
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463252:0x00000000:0302
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463286:0x00000001:0203
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463291:0x0a6e001c:0206
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463292:0x00000040:0204
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463295:0x01000110:0211
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463299:0x00000000:0212
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463344:0x00000000:0215
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463347:0x00000008:0220
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463387:0x091d004e:0401
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463397:0x00000000:0125
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 last message repeated 2 times
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 last message repeated 2 times
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:33 x220 last message repeated 4 times
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 last message repeated 2 times
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 last message repeated 2 times
> Nov 21 22:16:52 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:52 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90F | data2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x3980974C | beacon time
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x908DA8B4 | tsf low
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x07A97A19 | time gp2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x09DA004E | hcmd
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X0000760f
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000a8
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546673:0x00000001:0203
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546678:0x0ad5001c:0206
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546678:0x00000040:0204
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546681:0x2a10fb5e:0222
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546682:0xc0100084:0223
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546685:0x00000040:0219
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546685:0x01000110:0211
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546689:0x00000000:0212
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546728:0x00000000:0215
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546731:0x00000008:0220
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546748:0x00000000:0302
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546779:0x000000d4:0303
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546783:0x00001dd6:0217
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546784:0x0ad5001c:0217
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546920:0x000000fa:0106
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546922:0x00000000:0302
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547069:0x000000d4:0322
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547099:0x005a7a5f:0310
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547345:0x09da004e:0401
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547355:0x00000000:0125
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:41 x220 last message repeated 4 times
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 last message repeated 2 times
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 last message repeated 5 times
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 last message repeated 2 times
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 last message repeated 3 times
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 last message repeated 2 times
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:58 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:58 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 last message repeated 2 times
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 last message repeated 2 times
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90E | data2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x49811381 | beacon time
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x925BAC7F | tsf low
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x01CDE1AE | time gp2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x09D0004E | hcmd
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00001e9f
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000f0
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267653:0x00000040:0204
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267656:0x01000110:0211
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267660:0x00000000:0212
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267703:0x00000000:0215
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267706:0x00000008:0220
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267723:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267754:0x000000d4:0303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267758:0x00001c06:0217
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267759:0x0a05001c:0217
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268632:0x000000fa:0106
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268633:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268664:0x000000b4:0303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268839:0x000000fa:0106
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268840:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268871:0x000000b4:0303
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269495:0x000000fa:0106
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269497:0x00000000:0302
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269528:0x000000b4:0303
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269862:0x09d0004e:0401
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269872:0x00000000:0125
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:12 x220 last message repeated 3 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:13 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: Kernel v3.0.8 igb driver dies when pulling network cable
From: Alexander Duyck @ 2011-11-21 22:42 UTC (permalink / raw)
To: Stefan Priebe
Cc: Stable Tree, stable, Greg KH, LKML, Linux Netdev List,
Jeff Kirsher,
Jesse Brandeburg <jesse.brandeburg@intel.com> Bruce Allan,
Carolyn Wyborny, Don Skidmore, Greg Rose, PJ Waskiewicz,
John Ronciak
In-Reply-To: <4ECA936E.8060301@profihost.ag>
On 11/21/2011 10:07 AM, Stefan Priebe wrote:
>> You are going to need to clarify some things since as far as I know we
>> never released a v3.0.8 driver, and the kernel in the bug below is a
>> version 2.6.40.8 which sounds more like a modified and possibly
>> backported Linux kernel since as far as I know Linus never released a
>> 2.6.40 kernel version.
> Sorry that my description was so inaccurate. I'm talking about a
> vanilla v3.0.8 linux kernel. Just renamed to 2.6.40.8.
>
>> In order to be able to assist you we will need some additional
>> information. What Linux distro are your running? Do you have the
>> latest updates from them? Also have you tried running the latest
>> out-of-tree driver we provide at e1000.sf.net in order to verify if the
>> same issue occurs with that driver?
> Linux Distri is Debian Lenny but we're running a self compiled vanilla
> 3.0.X kernel. I haven't tried to use the up2date e1000.sf.net driver
> as 3.0 is a long time supported kernel by greg - so all needed fixes
> should be backported or at least send to stable@ so that greg can have
> a look at them.
>
> Thanks!
>
> Stefan
Stefan,
It would be useful if you could try the latest driver from e1000.sf.net
just to verify if this is a bug in the upstream kernel or if it is also
present in our e1000.sf.net.driver. This way we can figure out if this
is an issue where a patch wasn't pushed into the stable kernel or if it
is an issue that still exists in our latest release.
Also could you provide us with the part number you are currently using.
If you could provide us with the device ID for the part via lspci we can
start narrowing down the root cause for the issue as currently we don't
have any information about what hardware you are experiencing this issue on.
Thanks,
Alex
^ permalink raw reply
* Re: [PATCH net-next] tg3: Fix advertisement handling
From: Hiroaki SHIMODA @ 2011-11-21 22:40 UTC (permalink / raw)
To: mcarlson; +Cc: davem, mchan, eric.dumazet, netdev
In-Reply-To: <20111121192908.GA1198@mcarlson.broadcom.com>
On Mon, 21 Nov 2011 11:29:08 -0800
"Matt Carlson" <mcarlson@broadcom.com> wrote:
> On Sun, Nov 20, 2011 at 03:07:20PM -0800, Hiroaki SHIMODA wrote:
> > Commit 28011cf19b (net: Add ethtool to mii advertisment conversion
> > helpers) added a helper function ethtool_adv_to_mii_100bt() and
> > tg3_copper_is_advertising_all(), tg3_phy_autoneg_cfg() were
> > modified to use this.
> > Before that commit, ethtool to mii advertisement conversion was
> > done wrt speed, but now pause operation is also taken account.
> > So, in tg3_copper_is_advertising_all(), below condition becomes
> > true and this makes link up fails.
> >
> > if ((adv_reg & ADVERTISE_ALL) != all_mask)
> > return 0;
> >
> > To fix this add ADVERTISE_ALL bit and operation to cap speed.
> >
> > Signed-off-by: Hiroaki SHIMODA <shimoda.hiroaki@gmail.com>
>
> The root cause of this problem can actually be fixed by the following
> patch:
>
> diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> index 024ca1d..53e501c 100644
> --- a/drivers/net/ethernet/broadcom/tg3.c
> +++ b/drivers/net/ethernet/broadcom/tg3.c
> @@ -13192,8 +13192,7 @@ static u32 __devinit tg3_read_otp_phycfg(struct tg3 *tp)
>
> static void __devinit tg3_phy_init_link_config(struct tg3 *tp)
> {
> - u32 adv = ADVERTISED_Autoneg |
> - ADVERTISED_Pause;
> + u32 adv = ADVERTISED_Autoneg;
>
> if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY))
> adv |= ADVERTISED_1000baseT_Half |
>
> Could you add it as part of this patch?
Ok.
>
> Technically the above patch should fix the problem, but this patch makes
> the code clearer, should the same type of error pop up in the future.
>
> More comments below.
>
> > ---
> > drivers/net/ethernet/broadcom/tg3.c | 4 ++--
> > 1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
> > index 024ca1d..c00e648 100644
> > --- a/drivers/net/ethernet/broadcom/tg3.c
> > +++ b/drivers/net/ethernet/broadcom/tg3.c
> > @@ -3594,7 +3594,7 @@ static int tg3_phy_autoneg_cfg(struct tg3 *tp, u32 advertise, u32 flowctrl)
> > u32 val, new_adv;
> >
> > new_adv = ADVERTISE_CSMA;
> > - new_adv |= ethtool_adv_to_mii_100bt(advertise);
> > + new_adv |= ethtool_adv_to_mii_100bt(advertise) & ADVERTISE_ALL;
> > new_adv |= tg3_advert_flowctrl_1000T(flowctrl);
> >
> > err = tg3_writephy(tp, MII_ADVERTISE, new_adv);
> > @@ -3783,7 +3783,7 @@ static int tg3_copper_is_advertising_all(struct tg3 *tp, u32 mask)
> > if (tg3_readphy(tp, MII_ADVERTISE, &adv_reg))
> > return 0;
> >
> > - if ((adv_reg & ADVERTISE_ALL) != all_mask)
> > + if ((adv_reg & ADVERTISE_ALL) != (all_mask & ADVERTISE_ALL))
>
> Rather than ANDing the all_mask here, can you make it look like the 1st
> hunk of your patch by ANDing the value returned by
> ethtool_adv_to_mii_100bt()? I plan on further changes in this area and
> the uniformity will help.
Ok.
I'll send V2 with Eric's Reported-by tag.
Thanks.
>
> > return 0;
> >
> > if (!(tp->phy_flags & TG3_PHYFLG_10_100_ONLY)) {
> >
>
^ permalink raw reply
* Re: 3.2-rc2+: Reported regressions from 3.0 and 3.1
From: Andy Lutomirski @ 2011-11-21 22:34 UTC (permalink / raw)
To: Linus Torvalds
Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Maciej Rutecki,
Florian Mickler, Andrew Morton, Kernel Testers List,
Network Development, Linux ACPI, Linux PM List, Linux SCSI List,
Linux Wireless List, DRI
In-Reply-To: <CA+55aFwAELQieN=qR7Gz_MT5rHPp90H10uTMS+DOJjefk7q3ng@mail.gmail.com>
On Mon, Nov 21, 2011 at 2:11 PM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
> On Mon, Nov 21, 2011 at 1:49 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
>>
>> Subject : [3.1 REGRESSION] Commit 5cec93c216db77c45f7ce970d46283bcb1933884 breaks the Chromium seccomp sandbox
>> Submitter : Nix <nix@esperi.org.uk>
>> Date : 2011-11-14 0:40
>> Message-ID : 8762inleno.fsf@spindle.srvr.nix
>> References : http://marc.info/?l=linux-kernel&m=132123396226377&w=2
>
> So this should be fixed by commit 2b666859ec32 ("x86: Default to
> vsyscall=native for now"), since we disabled the vsyscall emulation
> because it broken UML too.
I don't think so. I think the issue is that the chromium sandbox is
trying to use getcpu, time, or gettimeofday from seccomp mode and the
kernel is (IMO correctly) sending it SIGKILL. Nix can trigger the bug
in vsyscall=native mode, so it's not the emulation. (If it's
gettimeofday, then it's definitely not a regression. vgettimeofday
would SIGKILL in seccomp mode with any timing source other than rdtsc
or hpet even on old kernels.)
I sent a patch to show which syscall is causing SIGKILL and haven't
heard back. Meanwhile, I'm downloading the 1.1GB (!) tarball to see
if I can reproduce it here. Fedora's build didn't trigger it for me,
probably because the sandbox was disabled.
To try to reduce the incidence of this stuff in the future, and to
make vsyscall=none and UML more useful, I filed this bug:
http://sourceware.org/bugzilla/show_bug.cgi?id=13425
--Andy
^ permalink raw reply
* Re: 3.2-rc2+: Reported regressions from 3.0 and 3.1
From: Alex Deucher @ 2011-11-21 22:29 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Linux Kernel Mailing List, Linux SCSI List, Linux ACPI,
Network Development, Linux Wireless List, DRI, Florian Mickler,
Andrew Morton, Kernel Testers List, Linus Torvalds, Linux PM List,
Maciej Rutecki
In-Reply-To: <201111212249.31196.rjw-KKrjLPT3xs0@public.gmane.org>
On Mon, Nov 21, 2011 at 4:49 PM, Rafael J. Wysocki <rjw-KKrjLPT3xs0@public.gmane.org> wrote:
> This message contains a list of some regressions from 3.0 and 3.1
> for which there are no fixes in the mainline known to the tracking team.
> If any of them have been fixed already, please let us know.
>
> If you know of any other unresolved regressions from 3.0 and 3.1, please let us
> know either and we'll add them to the list. Also, please let us know if any of
> the entries below are invalid.
>
> The entries below are simplified and the statistics are not present due to the
> continuing Bugzilla outage.
>
> Subject : iwlagn is getting very shaky
> Submitter : Norbert Preining <preining-DX+603jRYB8@public.gmane.org>
> Date : 2011-10-19 6:01
> Message-ID : 20111019060108.GA11588-DqSSrKF0TaySnEC3TeqHn5dqbFPxfnh/@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=131914553920614&w=2
>
> Subject : Regression: "irqpoll" hasn't been working for me since March 16 IRQ
> Submitter : Edward Donovan <edward.donovan-mb/Bq7DTvoSsTnJN9+BGXg@public.gmane.org>
> Date : 2011-10-19 22:09
> Message-ID : CADdbW+HXdCPfJu2RTF6zz+ujCmiu_dmZwL2iScuF53p=AaZ1Uw@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=131914554220679&w=2
>
> Subject : Regression in 3.1 causes Xen to use wrong idle routine
> Submitter : Stefan Bader <stefan.bader-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>
> Date : 2011-10-26 10:24
> Message-ID : 4EA7DFD1.9060608-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org
> References : http://marc.info/?l=linux-acpi&m=131962467924564&w=2
>
> Subject : 3.1+ iwlwifi lockup
> Submitter : Dave Jones <davej-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Date : 2011-10-31 14:34
> Message-ID : 20111031143408.GA17152-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132007169420160&w=2
>
> Subject : hugetlb oops on 3.1.0-rc8-devel
> Submitter : Andy Lutomirski <luto-kltTT9wpgjJwATOyAt5JVQ@public.gmane.org>
> Date : 2011-11-01 22:20
> Message-ID : CALCETrW1mpVCz2tO5roaz1r6vnno+srHR-dHA6_pkRi2qiCfdw@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=132018604426692&w=2
>
> Subject : Simultaneous cat and external keyboard input causing kernel panic
> Submitter : Timo Jyrinki <timo.jyrinki-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-03 12:14
> Message-ID : CAJtFfxmovJHspHHKbvBVc4pw+u5mjGmUejCXEzdV+GqE=jVSOQ@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=132032253903074&w=2
>
> Subject : Linus GIT - INFO: possible circular locking dependency detected
> Submitter : Miles Lane <miles.lane-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-03 15:57
> Message-ID : CAHFgRy8S0xLfhZxTUOEH5A0PL_Fb79-0-gmbQ=9h2D-xMqt1hA@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=132033587908426&w=2
>
> Subject : lockdep warning after aa6afca5bcab: "proc: fix races against execve() of /proc/PID/fd**"
> Submitter : Ari Savolainen <ari.m.savolainen-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-08 3:47
> Message-ID : CAEbykaXYZEFhTgWMm2AfaWQ2SaXYuO_ypTnw+6AVWScOYSCuuw@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=132072413125099&w=2
>
> Subject : DMA-API check_sync errors with 3.2
> Submitter : Josh Boyer <jwboyer-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> Date : 2011-11-08 17:31
> Message-ID : 20111108173153.GE14216-8k7Gwy46GHkf7BdofF/totBPR1lH4CV8@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132077357608797&w=2
>
> Subject : [3.1-rc8 REGRESSION] sky2 hangs machine on turning off or suspending
> Submitter : Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-09 11:46
> Message-ID : CACna6ryTdLcWVYgHu=_mRFga1sFivpE_DyZOY-HMmKggkWAJAw@mail.gmail.com
> References : http://marc.info/?l=linux-netdev&m=132083922228088&w=4
>
> Subject : 3.2-rc1 doesn't boot on dual socket opteron without swap
> Submitter : Niklas Schnelle <niklas-74wnUeZ+fLazQB+pC5nmwQ@public.gmane.org>
> Date : 2011-11-10 20:09
> Message-ID : 1320955769.1718.8.camel@jupiter
> References : http://marc.info/?l=linux-kernel&m=132095583501767&w=2
>
> Subject : Sparc-32 doesn't work in 3.1.
> Submitter : Rob Landley <rob-VoJi6FS/r0vR7s880joybQ@public.gmane.org>
> Date : 2011-11-12 11:22
> Message-ID : 4EBEAB5A.5020809-VoJi6FS/r0vR7s880joybQ@public.gmane.org
> References : http://www.spinics.net/lists/kernel/msg1260383.html
>
> Subject : khugepaged blocks suspend2ram (3.2.0-rc1-00252-g8f042aa)
> Submitter : Sergei Trofimovich <slyich-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-12 10:48
> Message-ID : 20111112104859.7744b282-rUBWEpAk+NE@public.gmane.org
> References : https://lkml.org/lkml/2011/11/12/11
>
> Subject : WARNING: at fs/sysfs/sysfs.h:195 (during boot)
> Submitter : Markus Trippelsdorf <markus-xp2qqqlHh3xzoYq+O6RWwA@public.gmane.org>
> Date : 2011-11-13 19:24
> Message-ID : 20111113192417.GA1659-tLCgZGx+iJ+kxVt8IV0GqQ@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132121231921932&w=2
>
> Subject : PROBLEM: Radeon display connector : No monitor connected or invalid EDID
> Submitter : Treeve Jelbert <treeve-rJAIWvhRp0CZIoH1IeqzKA@public.gmane.org>
> Date : 2011-11-13 17:27
> Message-ID : 2407026.akcTO2Ggic@gemini-64
> References : http://marc.info/?l=linux-kernel&m=132120530920139&w=2
Treeve replied to me directly saying the it was a problem with his
config file and everything is working fine now.
Alex
>
> Subject : [3.1 REGRESSION] Commit 5cec93c216db77c45f7ce970d46283bcb1933884 breaks the Chromium seccomp sandbox
> Submitter : Nix <nix-dKoSMcxRz+Te9xe1eoZjHA@public.gmane.org>
> Date : 2011-11-14 0:40
> Message-ID : 8762inleno.fsf-AdTWujXS48Mg67Zj9sPl2A@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132123396226377&w=2
>
> Subject : max PWM is zero
> Submitter : Marcos Paulo de Souza <marcos.mage-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Date : 2011-11-15 15:14
> Message-ID : alpine.LNX.2.00.1111151301410.2693-4/PLUo9XfK9uYUHNOcvv8+TW4wlIGRCZ@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132137019330548&w=2
>
> Subject : Oops on suspend with libertas SDIO (Linux 3.2-rc2)
> Submitter : Sven Neumann <s.neumann-5g8ninUHluJWk0Htik3J/w@public.gmane.org>
> Date : 2011-11-17 15:36
> Message-ID : 1321544210.31090.6.camel@sven
> References : http://marc.info/?l=linux-kernel&m=132154527715807&w=2
>
> Subject : Impossible high cpu-time values for migration threads
> Submitter : Markus Trippelsdorf <markus-xp2qqqlHh3xzoYq+O6RWwA@public.gmane.org>
> Date : 2011-11-17 22:17
> Message-ID : 20111117221731.GA9229-tLCgZGx+iJ+kxVt8IV0GqQ@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132156832124314&w=2
>
> Subject : WARNING: at mm/slub.c:3357, kernel BUG at mm/slub.c:3413
> Submitter : Markus Trippelsdorf <markus-xp2qqqlHh3xzoYq+O6RWwA@public.gmane.org>
> Date : 2011-11-18 7:25
> Message-ID : 20111118072519.GA1615-tLCgZGx+iJ+kxVt8IV0GqQ@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132160119031794&w=2
>
> Subject : [REGRESSION] resume takes 10s longer due to e1b6eb3 (Bluetooth: Increase HCI reset timeout ...)
> Submitter : Tomáš Janoušek <tomi-YoqI/XImC7s@public.gmane.org>
> Date : 2011-11-18 18:40
> Message-ID : 20111118184017.GA5052-YoqI/XImC7s@public.gmane.org
> References : http://marc.info/?l=linux-kernel&m=132164169511416&w=2
>
> Subject : [REGRESSION] sudden cpu hogging in kernel 3.2 rc-series
> Submitter : "Nicolas Kalkhof" <nkalkhof-S0/GAf8tV78@public.gmane.org>
> Date : 2011-11-18 20:33
> Message-ID : 506786689.810044.1321648395265.JavaMail.fmail@mwmweb010
> References : http://marc.info/?l=linux-kernel&m=132164909313594&w=2
>
> Thanks!
> _______________________________________________
> dri-devel mailing list
> dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
^ permalink raw reply
* Re: 3.2-rc2+: Reported regressions from 3.0 and 3.1
From: Andy Lutomirski @ 2011-11-21 22:29 UTC (permalink / raw)
To: Linus Torvalds
Cc: Rafael J. Wysocki, Linux Kernel Mailing List, Maciej Rutecki,
Florian Mickler, Andrew Morton, Kernel Testers List,
Network Development, Linux ACPI, Linux PM List, Linux SCSI List,
Linux Wireless List, DRI
In-Reply-To: <CA+55aFygSFt+O5KLoiE_0V+o45eKfsoDDV5ML8EF=J0n9z_D-Q@mail.gmail.com>
On Mon, Nov 21, 2011 at 2:18 PM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
> On Mon, Nov 21, 2011 at 1:49 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
>>
>> Subject : hugetlb oops on 3.1.0-rc8-devel
>> Submitter : Andy Lutomirski <luto@amacapital.net>
>> Date : 2011-11-01 22:20
>> Message-ID : CALCETrW1mpVCz2tO5roaz1r6vnno+srHR-dHA6_pkRi2qiCfdw@mail.gmail.com
>> References : http://marc.info/?l=linux-kernel&m=132018604426692&w=2
>
> Despite the subject line, that's not an oops, it's a BUG_ON().
>
> And it *should* be fixed by commit ea4039a34c4c ("hugetlb: release
> pages in the error path of hugetlb_cow()") although I don't think Andy
> ever confirmed that (since it was hard to trigger).
I haven't seen it again, but that probably doesn't mean anything.
I've also fixed a bug in some userspace software I was running, and
that fix means I'm probably not stressing that part of the kernel
anymore. (Even without the fix, it took two weeks to hit this.)
^ permalink raw reply
* Re: Firmware errors and warnings with Centrino Advanced-N 6205
From: wwguy @ 2011-11-21 22:24 UTC (permalink / raw)
To: Udo Steinberg
Cc: Linux Network Mailing List,
linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
In-Reply-To: <20111121222335.19493eed@x220>
ok, so looks like the driver not provide the correct 40MHz information
to the firmware. Are you seeing the similar issue on 20MHz?
Also what AP you are using?
Thanks
Wey
On Mon, 2011-11-21 at 13:23 -0800, Udo Steinberg wrote:
> On Mon, 21 Nov 2011 11:33:19 -0800 wwguy (W) wrote:
>
> W> Looks like the firmware not like the rate was used with the antenna
> W> choice.
> W>
> W> Could you please load the iwlagn module with debug flag = 0x1000
> W>
> W> $ sudo modprobe iwlagn debug=0x1000
> W>
> W> and let me know what you have
> W>
> W> btw, what kernel version you are using?
>
> Hi Wey,
>
> I'm using Linux kernel 3.1.0. I got the following output with debug=0x1000.
>
> Cheers,
>
> - Udo
>
> Nov 21 22:12:02 x220 kernel: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
> Nov 21 22:12:02 x220 kernel: Copyright(c) 2003-2011 Intel Corporation
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: setting latency timer to 64
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: pci_resource_len = 0x00002000
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: pci_resource_base = ffffc900041a0000
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: HW Revision ID = 0x34
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: irq 49 for MSI/MSI-X
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205 AGN, REV=0xB0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: device EEPROM VER=0x715, CALIB=0x6
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Device SKU: 0X1f0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Valid Tx ant: 0X3, Valid Rx ant: 0X3
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: loaded firmware version 17.168.5.3 build 42301
> Nov 21 22:12:02 x220 kernel: Registered led device: phy1-led
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: Selected rate control algorithm 'iwl-agn-rs'
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:12:02 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 last message repeated 2 times
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:02 x220 last message repeated 5 times
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:02 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 last message repeated 11 times
> Nov 21 22:12:06 x220 kernel: wlan0: authenticate with 00:24:fe:41:8d:0e (try 1)
> Nov 21 22:12:06 x220 kernel: wlan0: authenticated
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 last message repeated 5 times
> Nov 21 22:12:06 x220 kernel: wlan0: associate with 00:24:fe:41:8d:0e (try 1)
> Nov 21 22:12:06 x220 kernel: wlan0: RX ReassocResp from 00:24:fe:41:8d:0e (capab=0x431 status=0 aid=1)
> Nov 21 22:12:06 x220 kernel: wlan0: associated
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2406 active=2 idle=1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 last message repeated 2 times
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x6806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008025 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:12:06 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:07 x220 last message repeated 2 times
> Nov 21 22:12:08 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:08 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:12:38 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:12:44 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:12:44 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90F | data2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x4E404AC5 | beacon time
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x812C753B | tsf low
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x085F4F65 | time gp2
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: 0x093D004E | hcmd
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00008520
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000058
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0010
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000c8
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460940:0x00000020:0208
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460959:0x00000000:0302
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460993:0x00000001:0203
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460998:0x0ab7001c:0206
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140460999:0x00000040:0204
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461002:0x2a10fb5e:0222
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461002:0xc0100084:0223
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461005:0x00000040:0219
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461006:0x01000110:0211
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461010:0x00000000:0212
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461049:0x00000000:0215
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461051:0x00000008:0220
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461069:0x00000000:0302
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461100:0x000000d4:0303
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461104:0x00001fb8:0217
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461104:0x0ab7001c:0217
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461723:0x000000fa:0106
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140461725:0x00000000:0301
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140463965:0x093d004e:0401
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0140463975:0x00000000:0125
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 last message repeated 2 times
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:14:23 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:14:23 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:23 x220 last message repeated 3 times
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 last message repeated 2 times
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:14:24 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:14:25 x220 last message repeated 2 times
> Nov 21 22:14:40 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:14:40 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:15:05 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 last message repeated 2 times
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 last message repeated 2 times
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:32 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x0000E90D | data2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x3BC143DF | beacon time
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x88E40C21 | tsf low
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x07B77463 | time gp2
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: 0x091D004E | hcmd
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00007b58
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X00000078
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462778:0x00000008:0220
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462963:0x000000fa:0106
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129462964:0x00000000:0302
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463112:0x000000d4:0322
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463141:0x005a7a5f:0310
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463204:0x0a6e001c:0206
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463205:0x00000001:0204
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463209:0x00000001:0214
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463209:0x01001110:0205
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463233:0x00000020:0208
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463252:0x00000000:0302
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463286:0x00000001:0203
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463291:0x0a6e001c:0206
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463292:0x00000040:0204
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463295:0x01000110:0211
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463299:0x00000000:0212
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463344:0x00000000:0215
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463347:0x00000008:0220
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463387:0x091d004e:0401
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0129463397:0x00000000:0125
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 last message repeated 2 times
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 last message repeated 2 times
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:16:33 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:16:33 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:33 x220 last message repeated 4 times
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 last message repeated 2 times
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:16:34 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:16:34 x220 last message repeated 2 times
> Nov 21 22:16:52 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:16:52 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90F | data2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x3980974C | beacon time
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x908DA8B4 | tsf low
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x07A97A19 | time gp2
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: 0x09DA004E | hcmd
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X0000760f
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000a8
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546673:0x00000001:0203
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546678:0x0ad5001c:0206
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546678:0x00000040:0204
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546681:0x2a10fb5e:0222
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546682:0xc0100084:0223
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546685:0x00000040:0219
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546685:0x01000110:0211
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546689:0x00000000:0212
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546728:0x00000000:0215
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546731:0x00000008:0220
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546748:0x00000000:0302
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546779:0x000000d4:0303
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546783:0x00001dd6:0217
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546784:0x0ad5001c:0217
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546920:0x000000fa:0106
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128546922:0x00000000:0302
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547069:0x000000d4:0322
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547099:0x005a7a5f:0310
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547345:0x09da004e:0401
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0128547355:0x00000000:0125
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 last message repeated 2 times
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:18:41 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:18:41 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:41 x220 last message repeated 4 times
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 last message repeated 2 times
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:43 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 last message repeated 5 times
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 last message repeated 2 times
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:56 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 last message repeated 3 times
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 last message repeated 2 times
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:18:57 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:18:58 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:18:58 x220 kernel: iwlagn 0000:03:00.0: Tx aggregation enabled on ra = 00:24:fe:41:8d:0e tid = 0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 last message repeated 2 times
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 last message repeated 2 times
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:11 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Microcode SW error detected. Restarting 0x2000000.
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Loaded firmware version: 17.168.5.3 build 42301
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Start IWL Error Log Dump:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Status: 0x000412E4, count: 6
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00002078 | ADVANCED_SYSASSERT
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009514 | uPc
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00009496 | branchlink2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x0000D1F2 | interruptlink1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | interruptlink2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00008035 | data1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x0000C90E | data2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000005A7 | line
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x49811381 | beacon time
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x925BAC7F | tsf low
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | tsf hi
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp1
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x01CDE1AE | time gp2
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00000000 | time gp3
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000111A8 | uCode version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x000000B0 | hw version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x00480303 | board version
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: 0x09D0004E | hcmd
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR values:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: (2nd byte of CSR_INT_COALESCING is CSR_INT_PERIODIC_REG)
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_IF_CONFIG_REG: 0X00480303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_COALESCING: 0X0000ff40
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_INT_MASK: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_FH_INT_STATUS: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GPIO_IN: 0X00000030
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_RESET: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_CNTRL: 0X080403c5
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV: 0X000000b0
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_REG: 0X37d60ffd
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_EEPROM_GP: 0X90000001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_OTP_GP_REG: 0X00030001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_REG: 0X00080044
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_UCODE_REG: 0X00001e9f
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GP_DRIVER_REG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP1: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_UCODE_DRV_GP2: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_LED_REG: 0X00000078
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_DRAM_INT_TBL_REG: 0X88211eee
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_GIO_CHICKEN_BITS: 0X27800200
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_ANA_PLL_CFG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_HW_REV_WA_REG: 0X0001001a
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: CSR_DBG_HPET_MEM_REG: 0Xffff0000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH register values:
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_STTS_WPTR_REG: 0X212d1300
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_RBDCB_BASE_REG: 0X0213af40
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_RSCSR_CHNL0_WPTR: 0X000000f0
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RCSR_CHNL0_CONFIG_REG: 0X80819104
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_SHARED_CTRL_REG: 0X000000fc
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_STATUS_REG: 0X07030000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_MEM_RSSR_RX_ENABLE_ERR_IRQ2DRV: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_STATUS_REG: 0X07ff0001
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: FH_TSSR_TX_ERROR_REG: 0X00000000
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: Start IWL Event Log Dump: display last 20 entries
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267653:0x00000040:0204
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267656:0x01000110:0211
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267660:0x00000000:0212
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267703:0x00000000:0215
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267706:0x00000008:0220
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267723:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267754:0x000000d4:0303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267758:0x00001c06:0217
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030267759:0x0a05001c:0217
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268632:0x000000fa:0106
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268633:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268664:0x000000b4:0303
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268839:0x000000fa:0106
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268840:0x00000000:0302
> Nov 21 22:19:11 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030268871:0x000000b4:0303
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269495:0x000000fa:0106
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269497:0x00000000:0302
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269528:0x000000b4:0303
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269862:0x09d0004e:0401
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: EVT_LOGT:0030269872:0x00000000:0125
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: Hardware restart was requested
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 15: ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 14: ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: L1 Disabled; Enabling L0S
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: Radio type=0x1-0x2-0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 200 beacon timer 204416 beacon tim 0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_prep_station Add STA to driver ID 0: 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_set_ht_add_station spatial multiplexing power save mode: disabled
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8015 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x8035 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring all known stations ... start.
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta 00:24:fe:41:8d:0e
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_restore_stations Restoring sta ff:ff:ff:ff:ff:ff
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 0 addr 00:24:fe:41:8d:0e to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate Added STA id 15 addr ff:ff:ff:ff:ff:ff to uCode
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_rxon_timing beacon interval 100 beacon timer 102016 beacon tim 0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_send_remove_station REPLY_REMOVE_STA PASSED
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: Stopping AGG while state not ON or starting
> Nov 21 22:19:12 x220 kernel: iwlagn 0000:03:00.0: queue number out of range: 0, must be 10 to 19
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:12 x220 last message repeated 3 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 last message repeated 2 times
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x5 operation mode :0x0 extension channel offset 0x0
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4008035 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U _iwl_set_rxon_ht rxon flags 0x4000005 operation mode :0x0 extension channel offset 0x1
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
> Nov 21 22:19:12 x220 kernel: ieee80211 phy1: U iwl_sta_ucode_activate STA id 0 addr 00:24:fe:41:8d:0e already present in uCode (according to driver)
> Nov 21 22:19:13 x220 kernel: ieee80211 phy1: U iwlagn_set_rxon_chain rx_chain=0x2806 active=2 idle=2
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: 3.2-rc2+: Reported regressions from 3.0 and 3.1
From: Linus Torvalds @ 2011-11-21 22:22 UTC (permalink / raw)
To: Rafael J. Wysocki, Rafał Miłecki
Cc: Linux SCSI List, Linux ACPI, Network Development,
Linux Wireless List, Linux Kernel Mailing List, DRI,
Florian Mickler, Andrew Morton, Kernel Testers List,
Linux PM List, Maciej Rutecki
In-Reply-To: <201111212249.31196.rjw@sisk.pl>
On Mon, Nov 21, 2011 at 1:49 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
>
> Subject : [3.1-rc8 REGRESSION] sky2 hangs machine on turning off or suspending
> Submitter : Rafał Miłecki <zajec5@gmail.com>
> Date : 2011-11-09 11:46
> Message-ID : CACna6ryTdLcWVYgHu=_mRFga1sFivpE_DyZOY-HMmKggkWAJAw@mail.gmail.com
> References : http://marc.info/?l=linux-netdev&m=132083922228088&w=4
This should be fixed by commit 1401a8008a09 ("sky2: fix hang on
shutdown (and other irq issues)") in current -git.
Linus
^ permalink raw reply
* Re: 3.2-rc2+: Reported regressions from 3.0 and 3.1
From: Linus Torvalds @ 2011-11-21 22:20 UTC (permalink / raw)
To: Rafael J. Wysocki, Ari Savolainen
Cc: Linux Kernel Mailing List, Maciej Rutecki, Florian Mickler,
Andrew Morton, Kernel Testers List, Network Development,
Linux ACPI, Linux PM List, Linux SCSI List, Linux Wireless List,
DRI
In-Reply-To: <201111212249.31196.rjw@sisk.pl>
On Mon, Nov 21, 2011 at 1:49 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
>
> Subject : lockdep warning after aa6afca5bcab: "proc: fix races against execve() of /proc/PID/fd**"
> Submitter : Ari Savolainen <ari.m.savolainen@gmail.com>
> Date : 2011-11-08 3:47
> Message-ID : CAEbykaXYZEFhTgWMm2AfaWQ2SaXYuO_ypTnw+6AVWScOYSCuuw@mail.gmail.com
> References : http://marc.info/?l=linux-kernel&m=132072413125099&w=2
Commit aa6afca5bcab was reverted by commit 5e442a493fc5, so this one
is presumably stale.
Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" 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
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