* Re: [PATCH 1/4] nl80211: Add probe response offload attribute
From: Johannes Berg @ 2011-10-22 13:34 UTC (permalink / raw)
To: Guy Eilam; +Cc: linux-wireless
In-Reply-To: <1319289112-21896-1-git-send-email-guy@wizery.com>
On Sat, 2011-10-22 at 15:11 +0200, Guy Eilam wrote:
> +enum nl80211_probe_resp_offload_support_attr {
> + NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS,
> + NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2,
> + NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P,
> +};
I think doing = 1<<N here would be nicer to use in drivers & userspace.
> + * @get_probe_resp_offload: Get probe response offload support from driver.
and this seems unnecessary -- why not just put a u32 value into struct
wiphy?
johannes
^ permalink raw reply
* Re: Setting negative value in dBm for power output (txpower)
From: Johannes Berg @ 2011-10-22 13:30 UTC (permalink / raw)
To: Gábor Stefanik; +Cc: Patryk Żółtowski, linux-wireless
In-Reply-To: <CA+XFjiq6EJNczcotbk3R5YQXa-iY_2FY8KK4UN69XxSTm8LtoQ@mail.gmail.com>
On Sat, 2011-10-22 at 00:02 +0200, Gábor Stefanik wrote:
> 2011/10/21 Patryk Żółtowski <patryk.zoltowski@gmail.com>:
> > I'm doing a research and I'm wondering if it's possible to hack
> > wireless drivers to allow setting txpower to smaller value than 1mW
> > (e.g. 0.1mW = -10dBM, or even 0.01mW). I've checked source code and in
> > net/mac80211/cfg.c there is the following check:
> >
> > if (mbm < 0 || (mbm % 100))
> > return -EOPNOTSUPP;
>
> The "mbm % 100" part is even weirder; why do we even use millibels if
> we only allow whole-decibel values?
This is really just historic -- nobody has so far cared about TX power
enough to clean up the APIs for it etc. The distinction between
"automatic", "fixed" and "limited" (auto <= some value) is also not
really done very well here.
johannes
^ permalink raw reply
* [PATCH 2/2] wl12xx: configure probe-resp template according to notification
From: Guy Eilam @ 2011-10-22 13:14 UTC (permalink / raw)
To: coelho; +Cc: linux-wireless
In-Reply-To: <1319289279-21950-1-git-send-email-guy@wizery.com>
When operating in AP-mode, replace probe-response template when a
notification is recieved from mac80211. We preserve the "legacy" way of
configuring a probe-response according to beacon for IBSS mode and for
versions of hostapd that do not support this feature.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
drivers/net/wireless/wl12xx/main.c | 57 +++++++++++++++++++++++++++++----
drivers/net/wireless/wl12xx/wl12xx.h | 1 +
2 files changed, 51 insertions(+), 7 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
index 0a7d020..d91842d 100644
--- a/drivers/net/wireless/wl12xx/main.c
+++ b/drivers/net/wireless/wl12xx/main.c
@@ -3311,11 +3311,33 @@ static void wl12xx_remove_vendor_ie(struct sk_buff *skb,
skb_trim(skb, skb->len - len);
}
-static int wl1271_ap_set_probe_resp_tmpl(struct wl1271 *wl,
- struct ieee80211_vif *vif,
- u8 *probe_rsp_data,
- size_t probe_rsp_len,
- u32 rates)
+static int wl1271_ap_set_probe_resp_tmpl(struct wl1271 *wl, u32 rates)
+{
+ struct sk_buff *skb;
+ int ret;
+
+ skb = ieee80211_proberesp_get(wl->hw, wl->vif);
+ if (!skb)
+ return -EINVAL;
+
+ ret = wl1271_cmd_template_set(wl,
+ CMD_TEMPL_AP_PROBE_RESPONSE,
+ skb->data,
+ skb->len, 0,
+ rates);
+
+ if (!ret)
+ set_bit(WL1271_FLAG_PROBE_RESP_SET, &wl->flags);
+
+ dev_kfree_skb(skb);
+ return ret;
+}
+
+static int wl1271_ap_set_probe_resp_tmpl_legacy(struct wl1271 *wl,
+ struct ieee80211_vif *vif,
+ u8 *probe_rsp_data,
+ size_t probe_rsp_len,
+ u32 rates)
{
struct wl12xx_vif *wlvif = wl12xx_vif_to_data(vif);
struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
@@ -3428,6 +3450,13 @@ static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
wlvif->beacon_int = bss_conf->beacon_int;
}
+ if ((changed & BSS_CHANGED_AP_PROBE_RESP) && is_ap) {
+ ret = wl1271_ap_set_probe_resp_tmpl(wl,
+ wl1271_tx_min_rate_get(wl, wlvif->basic_rate_set));
+ if (ret < 0)
+ goto out;
+ }
+
if ((changed & BSS_CHANGED_BEACON)) {
struct ieee80211_hdr *hdr;
u32 min_rate;
@@ -3436,8 +3465,10 @@ static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
struct sk_buff *beacon = ieee80211_beacon_get(wl->hw, vif);
u16 tmpl_id;
- if (!beacon)
+ if (!beacon) {
+ ret = -EINVAL;
goto out;
+ }
wl1271_debug(DEBUG_MASTER, "beacon updated");
@@ -3458,6 +3489,13 @@ static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
goto out;
}
+ /*
+ * In case we already have a probe-resp beacon set explicitly
+ * by usermode, don't use the beacon data.
+ */
+ if (test_bit(WL1271_FLAG_PROBE_RESP_SET, &wl->flags))
+ goto end_bcn;
+
/* remove TIM ie from probe response */
wl12xx_remove_ie(beacon, WLAN_EID_TIM, ieoffset);
@@ -3476,7 +3514,7 @@ static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
IEEE80211_STYPE_PROBE_RESP);
if (is_ap)
- ret = wl1271_ap_set_probe_resp_tmpl(wl, vif,
+ ret = wl1271_ap_set_probe_resp_tmpl_legacy(wl, vif,
beacon->data,
beacon->len,
min_rate);
@@ -3486,12 +3524,15 @@ static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
beacon->data,
beacon->len, 0,
min_rate);
+end_bcn:
dev_kfree_skb(beacon);
if (ret < 0)
goto out;
}
out:
+ if (ret != 0)
+ wl1271_error("beacon info change failed: %d", ret);
return ret;
}
@@ -3548,6 +3589,8 @@ static void wl1271_bss_info_changed_ap(struct wl1271 *wl,
goto out;
clear_bit(WLVIF_FLAG_AP_STARTED, &wlvif->flags);
+ clear_bit(WL1271_FLAG_PROBE_RESP_SET,
+ &wl->flags);
wl1271_debug(DEBUG_AP, "stopped AP");
}
}
diff --git a/drivers/net/wireless/wl12xx/wl12xx.h b/drivers/net/wireless/wl12xx/wl12xx.h
index b7036df..a117c9d 100644
--- a/drivers/net/wireless/wl12xx/wl12xx.h
+++ b/drivers/net/wireless/wl12xx/wl12xx.h
@@ -255,6 +255,7 @@ enum wl12xx_flags {
WL1271_FLAG_PENDING_WORK,
WL1271_FLAG_SOFT_GEMINI,
WL1271_FLAG_RECOVERY_IN_PROGRESS,
+ WL1271_FLAG_PROBE_RESP_SET,
};
enum wl12xx_vif_flags {
--
1.7.4.1
^ permalink raw reply related
* [PATCH 1/2] wl12xx: configure the probe response offloading support
From: Guy Eilam @ 2011-10-22 13:14 UTC (permalink / raw)
To: coelho; +Cc: linux-wireless
Configure and respond to a probe response offload query with
the relevant protocols supported currently by the driver.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
drivers/net/wireless/wl12xx/conf.h | 2 ++
drivers/net/wireless/wl12xx/main.c | 15 +++++++++++++++
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/conf.h b/drivers/net/wireless/wl12xx/conf.h
index 04bb8fb..714f9d4 100644
--- a/drivers/net/wireless/wl12xx/conf.h
+++ b/drivers/net/wireless/wl12xx/conf.h
@@ -1264,6 +1264,8 @@ struct conf_drv_settings {
struct conf_rate_policy_settings rate;
struct conf_hangover_settings hangover;
u8 hci_io_ds;
+ /* a bitmap of supported protocols for probe response offloading */
+ u32 probe_resp_offload;
};
#endif
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c
index f76be5a..0a7d020 100644
--- a/drivers/net/wireless/wl12xx/main.c
+++ b/drivers/net/wireless/wl12xx/main.c
@@ -373,6 +373,10 @@ static struct conf_drv_settings default_conf = {
.increase_time = 1,
.window_size = 16,
},
+ .probe_resp_offload =
+ BIT(NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS) |
+ BIT(NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2) |
+ BIT(NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P),
};
static char *fwlog_param;
@@ -4081,6 +4085,16 @@ static int wl1271_op_get_survey(struct ieee80211_hw *hw, int idx,
return 0;
}
+static int wl1271_op_get_probe_resp_offload(struct ieee80211_hw *hw,
+ u32 *supp_protocols)
+{
+ struct wl1271 *wl = hw->priv;
+
+ *supp_protocols = wl->conf.probe_resp_offload;
+
+ return 0;
+}
+
static int wl1271_allocate_sta(struct wl1271 *wl,
struct wl12xx_vif *wlvif,
struct ieee80211_sta *sta)
@@ -4666,6 +4680,7 @@ static const struct ieee80211_ops wl1271_ops = {
.tx_frames_pending = wl1271_tx_frames_pending,
.set_bitrate_mask = wl12xx_set_bitrate_mask,
.channel_switch = wl12xx_op_channel_switch,
+ .get_probe_resp_offload = wl1271_op_get_probe_resp_offload,
CFG80211_TESTMODE_CMD(wl1271_tm_cmd)
};
--
1.7.4.1
^ permalink raw reply related
* [PATCH 3/4] nl80211: Pass probe response data to drivers
From: Guy Eilam @ 2011-10-22 13:11 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless
In-Reply-To: <1319289112-21896-1-git-send-email-guy@wizery.com>
Allow usermode to pass probe-response data. This data can be used as a
template probe-response offloading.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
include/linux/nl80211.h | 4 ++++
include/net/cfg80211.h | 4 ++++
net/wireless/nl80211.c | 11 +++++++++++
3 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h
index a436f74..6369631 100644
--- a/include/linux/nl80211.h
+++ b/include/linux/nl80211.h
@@ -1114,6 +1114,8 @@ enum nl80211_commands {
* In addition this attribute holds a bitmap of the supported protocols
* for offloading using &enum nl80211_probe_resp_offload_support_attr.
*
+ * @NL80211_ATTR_PROBE_RESP: Probe Response template data
+ *
* @NL80211_ATTR_MAX: highest attribute number currently defined
* @__NL80211_ATTR_AFTER_LAST: internal use
*/
@@ -1344,6 +1346,8 @@ enum nl80211_attrs {
NL80211_ATTR_PROBE_RESP_OFFLOAD_SUPPORT,
+ NL80211_ATTR_PROBE_RESP,
+
/* add attributes here, update the policy in nl80211.c */
__NL80211_ATTR_AFTER_LAST,
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index b5ddd62..eb8b8c5 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -737,6 +737,8 @@ struct mpath_info {
* @ap_isolate: do not forward packets between connected stations
* @ht_opmode: HT Operation mode
* (u16 = opmode, -1 = do not change)
+ * @probe_resp_len: length of probe response template (@probe_resp)
+ * @probe_resp: probe response template (AP mode only)
*/
struct bss_parameters {
int use_cts_prot;
@@ -746,6 +748,8 @@ struct bss_parameters {
u8 basic_rates_len;
int ap_isolate;
int ht_opmode;
+ int probe_resp_len;
+ u8 *probe_resp;
};
/*
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index ad90ec4..aadca02 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -197,6 +197,8 @@ static const struct nla_policy nl80211_policy[NL80211_ATTR_MAX+1] = {
[NL80211_ATTR_TDLS_OPERATION] = { .type = NLA_U8 },
[NL80211_ATTR_TDLS_SUPPORT] = { .type = NLA_FLAG },
[NL80211_ATTR_TDLS_EXTERNAL_SETUP] = { .type = NLA_FLAG },
+ [NL80211_ATTR_PROBE_RESP] = { .type = NLA_BINARY,
+ .len = IEEE80211_MAX_DATA_LEN },
};
/* policy for the key attributes */
@@ -2978,6 +2980,15 @@ static int nl80211_set_bss(struct sk_buff *skb, struct genl_info *info)
if (info->attrs[NL80211_ATTR_BSS_HT_OPMODE])
params.ht_opmode =
nla_get_u16(info->attrs[NL80211_ATTR_BSS_HT_OPMODE]);
+ if (info->attrs[NL80211_ATTR_PROBE_RESP]) {
+ if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP)
+ return -EOPNOTSUPP;
+
+ params.probe_resp =
+ nla_data(info->attrs[NL80211_ATTR_PROBE_RESP]);
+ params.probe_resp_len =
+ nla_len(info->attrs[NL80211_ATTR_PROBE_RESP]);
+ }
if (!rdev->ops->change_bss)
return -EOPNOTSUPP;
--
1.7.4.1
^ permalink raw reply related
* [PATCH 4/4] mac80211: Save probe response data for BSS
From: Guy Eilam @ 2011-10-22 13:11 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless
In-Reply-To: <1319289112-21896-1-git-send-email-guy@wizery.com>
Allow setting a probe response template for an interface operating in
AP mode. Low level drivers are notified about changes in the probe
response template and are able to retrieve a copy of the current probe
response. This data can, for example, be uploaded to hardware as a
template.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
include/net/mac80211.h | 15 +++++++++++++++
net/mac80211/cfg.c | 35 +++++++++++++++++++++++++++++++++++
net/mac80211/ieee80211_i.h | 1 +
net/mac80211/iface.c | 6 +++++-
net/mac80211/tx.c | 31 +++++++++++++++++++++++++++++++
net/mac80211/util.c | 3 ++-
6 files changed, 89 insertions(+), 2 deletions(-)
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 1c58fd7..050aa32 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -166,6 +166,7 @@ struct ieee80211_low_level_stats {
* that it is only ever disabled for station mode.
* @BSS_CHANGED_IDLE: Idle changed for this BSS/interface.
* @BSS_CHANGED_SSID: SSID changed for this BSS (AP mode)
+ * @BSS_CHANGED_AP_PROBE_RESP: Probe Response changed for this BSS (AP mode)
*/
enum ieee80211_bss_change {
BSS_CHANGED_ASSOC = 1<<0,
@@ -184,6 +185,7 @@ enum ieee80211_bss_change {
BSS_CHANGED_QOS = 1<<13,
BSS_CHANGED_IDLE = 1<<14,
BSS_CHANGED_SSID = 1<<15,
+ BSS_CHANGED_AP_PROBE_RESP = 1<<16,
/* when adding here, make sure to change ieee80211_reconfig */
};
@@ -2662,6 +2664,19 @@ static inline struct sk_buff *ieee80211_beacon_get(struct ieee80211_hw *hw,
}
/**
+ * ieee80211_proberesp_get - retrieve a Probe Response template
+ * @hw: pointer obtained from ieee80211_alloc_hw().
+ * @vif: &struct ieee80211_vif pointer from the add_interface callback.
+ *
+ * Creates a Probe Response template which can, for example, be uploaded to
+ * hardware. The destination address should be set by the caller.
+ *
+ * Can only be called in AP mode.
+ */
+struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
+ struct ieee80211_vif *vif);
+
+/**
* ieee80211_pspoll_get - retrieve a PS Poll template
* @hw: pointer obtained from ieee80211_alloc_hw().
* @vif: &struct ieee80211_vif pointer from the add_interface callback.
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 3cdb4a9..e2ad3da 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -1230,6 +1230,34 @@ static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
}
#endif
+static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
+ u8 *resp, size_t resp_len)
+{
+ struct sk_buff *new, *old;
+
+ old = sdata->u.ap.probe_resp;
+
+ if (!resp || !resp_len)
+ return -EINVAL;
+
+ new = dev_alloc_skb(resp_len);
+ if (!new) {
+ printk(KERN_DEBUG "%s: failed to allocate buffer for probe "
+ "response template\n", sdata->name);
+ return -ENOMEM;
+ }
+
+ memcpy(skb_put(new, resp_len), resp, resp_len);
+
+ rcu_assign_pointer(sdata->u.ap.probe_resp, new);
+ synchronize_rcu();
+
+ if (old)
+ dev_kfree_skb(old);
+
+ return 0;
+}
+
static int ieee80211_change_bss(struct wiphy *wiphy,
struct net_device *dev,
struct bss_parameters *params)
@@ -1292,6 +1320,13 @@ static int ieee80211_change_bss(struct wiphy *wiphy,
changed |= BSS_CHANGED_HT;
}
+ if (params->probe_resp_len > 0) {
+ int ret = ieee80211_set_probe_resp(sdata, params->probe_resp,
+ params->probe_resp_len);
+ if (!ret)
+ changed |= BSS_CHANGED_AP_PROBE_RESP;
+ }
+
ieee80211_bss_info_change_notify(sdata, changed);
return 0;
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index 9fa5f8a..41f2a9a 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -230,6 +230,7 @@ struct beacon_data {
struct ieee80211_if_ap {
struct beacon_data __rcu *beacon;
+ struct sk_buff __rcu *probe_resp;
struct list_head vlans;
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
index ef741e8..74d6f79 100644
--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -450,15 +450,19 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
struct ieee80211_sub_if_data *vlan, *tmpsdata;
struct beacon_data *old_beacon =
rtnl_dereference(sdata->u.ap.beacon);
+ struct sk_buff *old_probe_resp =
+ rtnl_dereference(sdata->u.ap.probe_resp);
/* sdata_running will return false, so this will disable */
ieee80211_bss_info_change_notify(sdata,
BSS_CHANGED_BEACON_ENABLED);
- /* remove beacon */
+ /* remove beacon and probe response */
rcu_assign_pointer(sdata->u.ap.beacon, NULL);
+ rcu_assign_pointer(sdata->u.ap.probe_resp, NULL);
synchronize_rcu();
kfree(old_beacon);
+ kfree(old_probe_resp);
/* down all dependent devices, that is VLANs */
list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index ad2ee4a..1f077e2 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -2414,6 +2414,37 @@ struct sk_buff *ieee80211_beacon_get_tim(struct ieee80211_hw *hw,
}
EXPORT_SYMBOL(ieee80211_beacon_get_tim);
+struct sk_buff *ieee80211_proberesp_get(struct ieee80211_hw *hw,
+ struct ieee80211_vif *vif)
+{
+ struct ieee80211_if_ap *ap = NULL;
+ struct sk_buff *presp = NULL, *skb = NULL;
+ struct ieee80211_hdr *hdr;
+ struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
+
+ if (sdata->vif.type != NL80211_IFTYPE_AP)
+ return NULL;
+
+ rcu_read_lock();
+
+ ap = &sdata->u.ap;
+ presp = rcu_dereference(ap->probe_resp);
+ if (!presp)
+ goto out;
+
+ skb = skb_copy(presp, GFP_ATOMIC);
+ if (!skb)
+ goto out;
+
+ hdr = (struct ieee80211_hdr *) skb->data;
+ memset(hdr->addr1, 0, sizeof(hdr->addr1));
+
+out:
+ rcu_read_unlock();
+ return skb;
+}
+EXPORT_SYMBOL(ieee80211_proberesp_get);
+
struct sk_buff *ieee80211_pspoll_get(struct ieee80211_hw *hw,
struct ieee80211_vif *vif)
{
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index 7439d26..d6d3ef4 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -1085,7 +1085,8 @@ int ieee80211_reconfig(struct ieee80211_local *local)
changed |= BSS_CHANGED_IBSS;
/* fall through */
case NL80211_IFTYPE_AP:
- changed |= BSS_CHANGED_SSID;
+ changed |= BSS_CHANGED_SSID |
+ BSS_CHANGED_AP_PROBE_RESP;
/* fall through */
case NL80211_IFTYPE_MESH_POINT:
changed |= BSS_CHANGED_BEACON |
--
1.7.4.1
^ permalink raw reply related
* [PATCH 2/4] mac80211: Get the probe response offloading support from the driver
From: Guy Eilam @ 2011-10-22 13:11 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless
In-Reply-To: <1319289112-21896-1-git-send-email-guy@wizery.com>
Query the driver for probe response offloading support
in order to notify the userspace on the protocols supported
by the driver for offloading.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
include/net/mac80211.h | 3 +++
net/mac80211/cfg.c | 9 +++++++++
net/mac80211/driver-ops.h | 11 +++++++++++
3 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index cd108df..1c58fd7 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -2080,6 +2080,7 @@ enum ieee80211_frame_release_type {
* The @tids parameter is a bitmap and tells the driver which TIDs the
* frames will be on; it will at most have two bits set.
* This callback must be atomic.
+ * @get_probe_resp_offload: Get probe response offload support from driver.
*/
struct ieee80211_ops {
void (*tx)(struct ieee80211_hw *hw, struct sk_buff *skb);
@@ -2206,6 +2207,8 @@ struct ieee80211_ops {
u16 tids, int num_frames,
enum ieee80211_frame_release_type reason,
bool more_data);
+ int (*get_probe_resp_offload) (struct ieee80211_hw *hw,
+ u32 *supp_protocols);
};
/**
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 1309bb9..3cdb4a9 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -2470,6 +2470,14 @@ static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
return 0;
}
+static int ieee80211_get_probe_resp_offload(struct wiphy *wiphy,
+ u32 *supp_protocols)
+{
+ struct ieee80211_local *local = wiphy_priv(wiphy);
+
+ return drv_get_probe_resp_offload(local, supp_protocols);
+}
+
struct cfg80211_ops mac80211_config_ops = {
.add_virtual_intf = ieee80211_add_iface,
.del_virtual_intf = ieee80211_del_iface,
@@ -2535,4 +2543,5 @@ struct cfg80211_ops mac80211_config_ops = {
.set_rekey_data = ieee80211_set_rekey_data,
.tdls_oper = ieee80211_tdls_oper,
.tdls_mgmt = ieee80211_tdls_mgmt,
+ .get_probe_resp_offload = ieee80211_get_probe_resp_offload,
};
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h
index 5f165d7..cd8da74 100644
--- a/net/mac80211/driver-ops.h
+++ b/net/mac80211/driver-ops.h
@@ -701,4 +701,15 @@ drv_allow_buffered_frames(struct ieee80211_local *local,
more_data);
trace_drv_return_void(local);
}
+static inline int drv_get_probe_resp_offload(struct ieee80211_local *local,
+ u32 *supp_protocols)
+{
+ int ret = -EOPNOTSUPP;
+ might_sleep();
+ if (local->ops->get_probe_resp_offload)
+ ret = local->ops->get_probe_resp_offload(&local->hw,
+ supp_protocols);
+ return ret;
+}
+
#endif /* __MAC80211_DRIVER_OPS */
--
1.7.4.1
^ permalink raw reply related
* [PATCH 1/4] nl80211: Add probe response offload attribute
From: Guy Eilam @ 2011-10-22 13:11 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless
Notify the userspace of the probe response offloading
support by the driver.
Signed-off-by: Guy Eilam <guy@wizery.com>
---
include/linux/nl80211.h | 24 ++++++++++++++++++++++++
include/net/cfg80211.h | 4 ++++
net/wireless/nl80211.c | 12 ++++++++++++
3 files changed, 40 insertions(+), 0 deletions(-)
diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h
index 9d797f2..a436f74 100644
--- a/include/linux/nl80211.h
+++ b/include/linux/nl80211.h
@@ -1109,6 +1109,11 @@ enum nl80211_commands {
* %NL80211_CMD_TDLS_MGMT. Otherwise %NL80211_CMD_TDLS_OPER should be
* used for asking the driver to perform a TDLS operation.
*
+ * @NL80211_ATTR_PROBE_RESP_OFFLOAD_SUPPORT: Indicates the support
+ * of probe response offloading by the driver/firmware.
+ * In addition this attribute holds a bitmap of the supported protocols
+ * for offloading using &enum nl80211_probe_resp_offload_support_attr.
+ *
* @NL80211_ATTR_MAX: highest attribute number currently defined
* @__NL80211_ATTR_AFTER_LAST: internal use
*/
@@ -1337,6 +1342,8 @@ enum nl80211_attrs {
NL80211_ATTR_TDLS_SUPPORT,
NL80211_ATTR_TDLS_EXTERNAL_SETUP,
+ NL80211_ATTR_PROBE_RESP_OFFLOAD_SUPPORT,
+
/* add attributes here, update the policy in nl80211.c */
__NL80211_ATTR_AFTER_LAST,
@@ -2648,4 +2655,21 @@ enum nl80211_tdls_operation {
NL80211_TDLS_DISABLE_LINK,
};
+/**
+ * enum nl80211_probe_resp_offload_support_attr - definition of optional
+ * supported protocols for probe response offloading by the driver/firmware
+ * to be used with the %NL80211_ATTR_PROBE_RESP_OFFLOAD_SUPPORT
+ * attribute. Each enum value represents a bit in the bitmap of
+ * supported protocols.
+ *
+ * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS: Support for WPS ver. 1
+ * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2: Support for WPS ver. 2
+ * @NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P: Support for P2P
+ */
+enum nl80211_probe_resp_offload_support_attr {
+ NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS,
+ NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2,
+ NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P,
+};
+
#endif /* __LINUX_NL80211_H */
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 74f4f85..b5ddd62 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1425,6 +1425,8 @@ struct cfg80211_gtk_rekey_data {
*
* @tdls_mgmt: Transmit a TDLS management frame.
* @tdls_oper: Perform a high-level TDLS operation (e.g. TDLS link setup).
+ *
+ * @get_probe_resp_offload: Get probe response offload support from driver.
*/
struct cfg80211_ops {
int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
@@ -1614,6 +1616,8 @@ struct cfg80211_ops {
u16 status_code, const u8 *buf, size_t len);
int (*tdls_oper)(struct wiphy *wiphy, struct net_device *dev,
u8 *peer, enum nl80211_tdls_operation oper);
+ int (*get_probe_resp_offload) (struct wiphy *wiphy,
+ u32 *supp_protocols);
};
/*
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index edf655a..ad90ec4 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -759,6 +759,18 @@ static int nl80211_send_wiphy(struct sk_buff *msg, u32 pid, u32 seq, int flags,
NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_ANTENNA_AVAIL_RX,
dev->wiphy.available_antennas_rx);
+ if (dev->ops->get_probe_resp_offload) {
+ u32 supp_protocols = 0;
+ int res;
+ res = dev->ops->get_probe_resp_offload(&dev->wiphy,
+ &supp_protocols);
+ if (!res) {
+ NLA_PUT_U32(msg,
+ NL80211_ATTR_PROBE_RESP_OFFLOAD_SUPPORT,
+ supp_protocols);
+ }
+ }
+
if ((dev->wiphy.available_antennas_tx ||
dev->wiphy.available_antennas_rx) && dev->ops->get_antenna) {
u32 tx_ant = 0, rx_ant = 0;
--
1.7.4.1
^ permalink raw reply related
* [PATCH 35/49] net: irq: Remove IRQF_DISABLED
From: Yong Zhang @ 2011-10-22 9:56 UTC (permalink / raw)
To: linux-kernel
Cc: tglx, Jaroslav Kysela, Breno Leitao, Olof Johansson,
Nicolas Pitre, Steve Glendinning, Geoff Levand, Thomas Sailer,
Joerg Reuter, Klaus Kudielka, Jean-Paul Roubelat, Samuel Ortiz,
Christian Lamparter, John W. Linville, David S. Miller,
uclinux-dist-devel, netdev, cbe-oss-dev, linux-hams,
linux-wireless
In-Reply-To: <1319277421-9203-1-git-send-email-yong.zhang0@gmail.com>
Since commit [e58aa3d2: genirq: Run irq handlers with interrupts disabled],
We run all interrupt handlers with interrupts disabled
and we even check and yell when an interrupt handler
returns with interrupts enabled (see commit [b738a50a:
genirq: Warn when handler enables interrupts]).
So now this flag is a NOOP and can be removed.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Acked-by: David S. Miller <davem@davemloft.net>
---
drivers/net/ethernet/adi/bfin_mac.c | 4 ++--
drivers/net/ethernet/amd/sun3lance.c | 2 +-
drivers/net/ethernet/broadcom/bcm63xx_enet.c | 4 ++--
drivers/net/ethernet/dec/tulip/de4x5.c | 2 +-
drivers/net/ethernet/freescale/fec.c | 2 +-
drivers/net/ethernet/hp/hp100.c | 2 +-
drivers/net/ethernet/ibm/ehea/ehea_main.c | 6 +++---
drivers/net/ethernet/korina.c | 8 ++++----
drivers/net/ethernet/lantiq_etop.c | 4 ++--
drivers/net/ethernet/marvell/pxa168_eth.c | 2 +-
drivers/net/ethernet/micrel/ks8851_mll.c | 2 +-
drivers/net/ethernet/natsemi/jazzsonic.c | 2 +-
drivers/net/ethernet/natsemi/xtsonic.c | 2 +-
drivers/net/ethernet/pasemi/pasemi_mac.c | 4 ++--
drivers/net/ethernet/smsc/smc91x.h | 2 +-
drivers/net/ethernet/smsc/smsc9420.c | 2 +-
drivers/net/ethernet/ti/davinci_emac.c | 2 +-
drivers/net/ethernet/toshiba/ps3_gelic_net.c | 2 +-
drivers/net/hamradio/baycom_ser_fdx.c | 2 +-
drivers/net/hamradio/baycom_ser_hdx.c | 2 +-
drivers/net/hamradio/scc.c | 2 +-
drivers/net/hamradio/yam.c | 2 +-
drivers/net/irda/bfin_sir.c | 4 ++--
drivers/net/irda/donauboe.c | 4 ++--
drivers/net/irda/sh_irda.c | 2 +-
drivers/net/irda/sh_sir.c | 2 +-
drivers/net/wan/hostess_sv11.c | 2 +-
drivers/net/wan/sealevel.c | 2 +-
drivers/net/wireless/p54/p54spi.c | 2 +-
include/net/irda/irda_device.h | 2 +-
30 files changed, 41 insertions(+), 41 deletions(-)
diff --git a/drivers/net/ethernet/adi/bfin_mac.c b/drivers/net/ethernet/adi/bfin_mac.c
index b6d69c9..0d3804f 100644
--- a/drivers/net/ethernet/adi/bfin_mac.c
+++ b/drivers/net/ethernet/adi/bfin_mac.c
@@ -531,7 +531,7 @@ static int bfin_mac_ethtool_setwol(struct net_device *dev,
if (lp->wol && !lp->irq_wake_requested) {
/* register wake irq handler */
rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt,
- IRQF_DISABLED, "EMAC_WAKE", dev);
+ 0, "EMAC_WAKE", dev);
if (rc)
return rc;
lp->irq_wake_requested = true;
@@ -1544,7 +1544,7 @@ static int __devinit bfin_mac_probe(struct platform_device *pdev)
/* now, enable interrupts */
/* register irq handler */
rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt,
- IRQF_DISABLED, "EMAC_RX", ndev);
+ 0, "EMAC_RX", ndev);
if (rc) {
dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n");
rc = -EBUSY;
diff --git a/drivers/net/ethernet/amd/sun3lance.c b/drivers/net/ethernet/amd/sun3lance.c
index 080b71f..9aee9f7 100644
--- a/drivers/net/ethernet/amd/sun3lance.c
+++ b/drivers/net/ethernet/amd/sun3lance.c
@@ -358,7 +358,7 @@ static int __init lance_probe( struct net_device *dev)
REGA(CSR0) = CSR0_STOP;
- if (request_irq(LANCE_IRQ, lance_interrupt, IRQF_DISABLED, "SUN3 Lance", dev) < 0) {
+ if (request_irq(LANCE_IRQ, lance_interrupt, 0, "SUN3 Lance", dev) < 0) {
#ifdef CONFIG_SUN3
iounmap((void __iomem *)ioaddr);
#endif
diff --git a/drivers/net/ethernet/broadcom/bcm63xx_enet.c b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
index a11a8ad..25d6875 100644
--- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c
+++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
@@ -840,13 +840,13 @@ static int bcm_enet_open(struct net_device *dev)
if (ret)
goto out_phy_disconnect;
- ret = request_irq(priv->irq_rx, bcm_enet_isr_dma, IRQF_DISABLED,
+ ret = request_irq(priv->irq_rx, bcm_enet_isr_dma, 0,
dev->name, dev);
if (ret)
goto out_freeirq;
ret = request_irq(priv->irq_tx, bcm_enet_isr_dma,
- IRQF_DISABLED, dev->name, dev);
+ 0, dev->name, dev);
if (ret)
goto out_freeirq_rx;
diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c b/drivers/net/ethernet/dec/tulip/de4x5.c
index 871bcaa..7dd7989 100644
--- a/drivers/net/ethernet/dec/tulip/de4x5.c
+++ b/drivers/net/ethernet/dec/tulip/de4x5.c
@@ -1321,7 +1321,7 @@ de4x5_open(struct net_device *dev)
if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
lp->adapter_name, dev)) {
printk("de4x5_open(): Requested IRQ%d is busy - attemping FAST/SHARE...", dev->irq);
- if (request_irq(dev->irq, de4x5_interrupt, IRQF_DISABLED | IRQF_SHARED,
+ if (request_irq(dev->irq, de4x5_interrupt, IRQF_SHARED,
lp->adapter_name, dev)) {
printk("\n Cannot get IRQ- reconfigure your hardware.\n");
disable_ast(dev);
diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c
index 1124ce0..642c567 100644
--- a/drivers/net/ethernet/freescale/fec.c
+++ b/drivers/net/ethernet/freescale/fec.c
@@ -1573,7 +1573,7 @@ fec_probe(struct platform_device *pdev)
irq = platform_get_irq(pdev, i);
if (i && irq < 0)
break;
- ret = request_irq(irq, fec_enet_interrupt, IRQF_DISABLED, pdev->name, ndev);
+ ret = request_irq(irq, fec_enet_interrupt, 0, pdev->name, ndev);
if (ret) {
while (--i >= 0) {
irq = platform_get_irq(pdev, i);
diff --git a/drivers/net/ethernet/hp/hp100.c b/drivers/net/ethernet/hp/hp100.c
index 6a5ee07..4c4f3f4 100644
--- a/drivers/net/ethernet/hp/hp100.c
+++ b/drivers/net/ethernet/hp/hp100.c
@@ -1097,7 +1097,7 @@ static int hp100_open(struct net_device *dev)
/* New: if bus is PCI or EISA, interrupts might be shared interrupts */
if (request_irq(dev->irq, hp100_interrupt,
lp->bus == HP100_BUS_PCI || lp->bus ==
- HP100_BUS_EISA ? IRQF_SHARED : IRQF_DISABLED,
+ HP100_BUS_EISA ? IRQF_SHARED : 0,
"hp100", dev)) {
printk("hp100: %s: unable to get IRQ %d\n", dev->name, dev->irq);
return -EAGAIN;
diff --git a/drivers/net/ethernet/ibm/ehea/ehea_main.c b/drivers/net/ethernet/ibm/ehea/ehea_main.c
index dfefe80..192a1bb 100644
--- a/drivers/net/ethernet/ibm/ehea/ehea_main.c
+++ b/drivers/net/ethernet/ibm/ehea/ehea_main.c
@@ -1348,7 +1348,7 @@ static int ehea_reg_interrupts(struct net_device *dev)
ret = ibmebus_request_irq(port->qp_eq->attr.ist1,
ehea_qp_aff_irq_handler,
- IRQF_DISABLED, port->int_aff_name, port);
+ 0, port->int_aff_name, port);
if (ret) {
netdev_err(dev, "failed registering irq for qp_aff_irq_handler:ist=%X\n",
port->qp_eq->attr.ist1);
@@ -1366,7 +1366,7 @@ static int ehea_reg_interrupts(struct net_device *dev)
"%s-queue%d", dev->name, i);
ret = ibmebus_request_irq(pr->eq->attr.ist1,
ehea_recv_irq_handler,
- IRQF_DISABLED, pr->int_send_name,
+ 0, pr->int_send_name,
pr);
if (ret) {
netdev_err(dev, "failed registering irq for ehea_queue port_res_nr:%d, ist=%X\n",
@@ -3521,7 +3521,7 @@ static int __devinit ehea_probe_adapter(struct platform_device *dev,
(unsigned long)adapter);
ret = ibmebus_request_irq(adapter->neq->attr.ist1,
- ehea_interrupt_neq, IRQF_DISABLED,
+ ehea_interrupt_neq, 0,
"ehea_neq", adapter);
if (ret) {
dev_err(&dev->dev, "requesting NEQ IRQ failed\n");
diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
index d8430f4..2a96cd5 100644
--- a/drivers/net/ethernet/korina.c
+++ b/drivers/net/ethernet/korina.c
@@ -1001,14 +1001,14 @@ static int korina_open(struct net_device *dev)
* that handles the Done Finished
* Ovr and Und Events */
ret = request_irq(lp->rx_irq, korina_rx_dma_interrupt,
- IRQF_DISABLED, "Korina ethernet Rx", dev);
+ 0, "Korina ethernet Rx", dev);
if (ret < 0) {
printk(KERN_ERR "%s: unable to get Rx DMA IRQ %d\n",
dev->name, lp->rx_irq);
goto err_release;
}
ret = request_irq(lp->tx_irq, korina_tx_dma_interrupt,
- IRQF_DISABLED, "Korina ethernet Tx", dev);
+ 0, "Korina ethernet Tx", dev);
if (ret < 0) {
printk(KERN_ERR "%s: unable to get Tx DMA IRQ %d\n",
dev->name, lp->tx_irq);
@@ -1017,7 +1017,7 @@ static int korina_open(struct net_device *dev)
/* Install handler for overrun error. */
ret = request_irq(lp->ovr_irq, korina_ovr_interrupt,
- IRQF_DISABLED, "Ethernet Overflow", dev);
+ 0, "Ethernet Overflow", dev);
if (ret < 0) {
printk(KERN_ERR "%s: unable to get OVR IRQ %d\n",
dev->name, lp->ovr_irq);
@@ -1026,7 +1026,7 @@ static int korina_open(struct net_device *dev)
/* Install handler for underflow error. */
ret = request_irq(lp->und_irq, korina_und_interrupt,
- IRQF_DISABLED, "Ethernet Underflow", dev);
+ 0, "Ethernet Underflow", dev);
if (ret < 0) {
printk(KERN_ERR "%s: unable to get UND IRQ %d\n",
dev->name, lp->und_irq);
diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c
index 6bb2b95..d9a268c 100644
--- a/drivers/net/ethernet/lantiq_etop.c
+++ b/drivers/net/ethernet/lantiq_etop.c
@@ -280,7 +280,7 @@ ltq_etop_hw_init(struct net_device *dev)
if (IS_TX(i)) {
ltq_dma_alloc_tx(&ch->dma);
- request_irq(irq, ltq_etop_dma_irq, IRQF_DISABLED,
+ request_irq(irq, ltq_etop_dma_irq, 0,
"etop_tx", priv);
} else if (IS_RX(i)) {
ltq_dma_alloc_rx(&ch->dma);
@@ -289,7 +289,7 @@ ltq_etop_hw_init(struct net_device *dev)
if (ltq_etop_alloc_skb(ch))
return -ENOMEM;
ch->dma.desc = 0;
- request_irq(irq, ltq_etop_dma_irq, IRQF_DISABLED,
+ request_irq(irq, ltq_etop_dma_irq, 0,
"etop_rx", priv);
}
ch->dma.irq = irq;
diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c b/drivers/net/ethernet/marvell/pxa168_eth.c
index d17d062..4e2b30d 100644
--- a/drivers/net/ethernet/marvell/pxa168_eth.c
+++ b/drivers/net/ethernet/marvell/pxa168_eth.c
@@ -1132,7 +1132,7 @@ static int pxa168_eth_open(struct net_device *dev)
int err;
err = request_irq(dev->irq, pxa168_eth_int_handler,
- IRQF_DISABLED, dev->name, dev);
+ 0, dev->name, dev);
if (err) {
dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
return -EAGAIN;
diff --git a/drivers/net/ethernet/micrel/ks8851_mll.c b/drivers/net/ethernet/micrel/ks8851_mll.c
index d19c849..a6b427b 100644
--- a/drivers/net/ethernet/micrel/ks8851_mll.c
+++ b/drivers/net/ethernet/micrel/ks8851_mll.c
@@ -899,7 +899,7 @@ static int ks_net_open(struct net_device *netdev)
struct ks_net *ks = netdev_priv(netdev);
int err;
-#define KS_INT_FLAGS (IRQF_DISABLED|IRQF_TRIGGER_LOW)
+#define KS_INT_FLAGS (IRQF_TRIGGER_LOW)
/* lock the card, even if we may not actually do anything
* else at the moment.
*/
diff --git a/drivers/net/ethernet/natsemi/jazzsonic.c b/drivers/net/ethernet/natsemi/jazzsonic.c
index fc7c6a9..ecc3467 100644
--- a/drivers/net/ethernet/natsemi/jazzsonic.c
+++ b/drivers/net/ethernet/natsemi/jazzsonic.c
@@ -84,7 +84,7 @@ static int jazzsonic_open(struct net_device* dev)
{
int retval;
- retval = request_irq(dev->irq, sonic_interrupt, IRQF_DISABLED,
+ retval = request_irq(dev->irq, sonic_interrupt, 0,
"sonic", dev);
if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n",
diff --git a/drivers/net/ethernet/natsemi/xtsonic.c b/drivers/net/ethernet/natsemi/xtsonic.c
index ccf61b9..04de013 100644
--- a/drivers/net/ethernet/natsemi/xtsonic.c
+++ b/drivers/net/ethernet/natsemi/xtsonic.c
@@ -95,7 +95,7 @@ static int xtsonic_open(struct net_device *dev)
{
int retval;
- retval = request_irq(dev->irq, sonic_interrupt, IRQF_DISABLED,
+ retval = request_irq(dev->irq, sonic_interrupt, 0,
"sonic", dev);
if (retval) {
printk(KERN_ERR "%s: unable to get IRQ %d.\n",
diff --git a/drivers/net/ethernet/pasemi/pasemi_mac.c b/drivers/net/ethernet/pasemi/pasemi_mac.c
index c6f0056..bb7c5fc 100644
--- a/drivers/net/ethernet/pasemi/pasemi_mac.c
+++ b/drivers/net/ethernet/pasemi/pasemi_mac.c
@@ -1218,7 +1218,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac->tx_irq_name, sizeof(mac->tx_irq_name), "%s tx",
dev->name);
- ret = request_irq(mac->tx->chan.irq, pasemi_mac_tx_intr, IRQF_DISABLED,
+ ret = request_irq(mac->tx->chan.irq, pasemi_mac_tx_intr, 0,
mac->tx_irq_name, mac->tx);
if (ret) {
dev_err(&mac->pdev->dev, "request_irq of irq %d failed: %d\n",
@@ -1229,7 +1229,7 @@ static int pasemi_mac_open(struct net_device *dev)
snprintf(mac->rx_irq_name, sizeof(mac->rx_irq_name), "%s rx",
dev->name);
- ret = request_irq(mac->rx->chan.irq, pasemi_mac_rx_intr, IRQF_DISABLED,
+ ret = request_irq(mac->rx->chan.irq, pasemi_mac_rx_intr, 0,
mac->rx_irq_name, mac->rx);
if (ret) {
dev_err(&mac->pdev->dev, "request_irq of irq %d failed: %d\n",
diff --git a/drivers/net/ethernet/smsc/smc91x.h b/drivers/net/ethernet/smsc/smc91x.h
index 5f53fbb..e6319f5 100644
--- a/drivers/net/ethernet/smsc/smc91x.h
+++ b/drivers/net/ethernet/smsc/smc91x.h
@@ -271,7 +271,7 @@ static inline void mcf_outsw(void *a, unsigned char *p, int l)
#define SMC_insw(a, r, p, l) mcf_insw(a + r, p, l)
#define SMC_outsw(a, r, p, l) mcf_outsw(a + r, p, l)
-#define SMC_IRQ_FLAGS (IRQF_DISABLED)
+#define SMC_IRQ_FLAGS (0)
#else
diff --git a/drivers/net/ethernet/smsc/smsc9420.c b/drivers/net/ethernet/smsc/smsc9420.c
index edb24b0..a13c8ce 100644
--- a/drivers/net/ethernet/smsc/smsc9420.c
+++ b/drivers/net/ethernet/smsc/smsc9420.c
@@ -1360,7 +1360,7 @@ static int smsc9420_open(struct net_device *dev)
smsc9420_reg_write(pd, INT_STAT, 0xFFFFFFFF);
smsc9420_pci_flush_write(pd);
- if (request_irq(dev->irq, smsc9420_isr, IRQF_SHARED | IRQF_DISABLED,
+ if (request_irq(dev->irq, smsc9420_isr, IRQF_SHARED,
DRV_NAME, pd)) {
smsc_warn(IFUP, "Unable to use IRQ = %d", dev->irq);
result = -ENODEV;
diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index 815c797..ba8cb9d 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -1553,7 +1553,7 @@ static int emac_dev_open(struct net_device *ndev)
while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
for (i = res->start; i <= res->end; i++) {
- if (request_irq(i, emac_irq, IRQF_DISABLED,
+ if (request_irq(i, emac_irq, 0,
ndev->name, ndev))
goto rollback;
}
diff --git a/drivers/net/ethernet/toshiba/ps3_gelic_net.c b/drivers/net/ethernet/toshiba/ps3_gelic_net.c
index 7bf1e20..7036cb7 100644
--- a/drivers/net/ethernet/toshiba/ps3_gelic_net.c
+++ b/drivers/net/ethernet/toshiba/ps3_gelic_net.c
@@ -1735,7 +1735,7 @@ static int __devinit ps3_gelic_driver_probe(struct ps3_system_bus_device *dev)
goto fail_alloc_irq;
}
result = request_irq(card->irq, gelic_card_interrupt,
- IRQF_DISABLED, netdev->name, card);
+ 0, netdev->name, card);
if (result) {
dev_info(ctodev(card), "%s:request_irq failed (%d)\n",
diff --git a/drivers/net/hamradio/baycom_ser_fdx.c b/drivers/net/hamradio/baycom_ser_fdx.c
index a974727..636b65c 100644
--- a/drivers/net/hamradio/baycom_ser_fdx.c
+++ b/drivers/net/hamradio/baycom_ser_fdx.c
@@ -445,7 +445,7 @@ static int ser12_open(struct net_device *dev)
outb(0, FCR(dev->base_addr)); /* disable FIFOs */
outb(0x0d, MCR(dev->base_addr));
outb(0, IER(dev->base_addr));
- if (request_irq(dev->irq, ser12_interrupt, IRQF_DISABLED | IRQF_SHARED,
+ if (request_irq(dev->irq, ser12_interrupt, IRQF_SHARED,
"baycom_ser_fdx", dev)) {
release_region(dev->base_addr, SER12_EXTENT);
return -EBUSY;
diff --git a/drivers/net/hamradio/baycom_ser_hdx.c b/drivers/net/hamradio/baycom_ser_hdx.c
index e349d86..f9a8976 100644
--- a/drivers/net/hamradio/baycom_ser_hdx.c
+++ b/drivers/net/hamradio/baycom_ser_hdx.c
@@ -490,7 +490,7 @@ static int ser12_open(struct net_device *dev)
outb(0, FCR(dev->base_addr)); /* disable FIFOs */
outb(0x0d, MCR(dev->base_addr));
outb(0, IER(dev->base_addr));
- if (request_irq(dev->irq, ser12_interrupt, IRQF_DISABLED | IRQF_SHARED,
+ if (request_irq(dev->irq, ser12_interrupt, IRQF_SHARED,
"baycom_ser12", dev)) {
release_region(dev->base_addr, SER12_EXTENT);
return -EBUSY;
diff --git a/drivers/net/hamradio/scc.c b/drivers/net/hamradio/scc.c
index 3365581..f432f32 100644
--- a/drivers/net/hamradio/scc.c
+++ b/drivers/net/hamradio/scc.c
@@ -1735,7 +1735,7 @@ static int scc_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
if (!Ivec[hwcfg.irq].used && hwcfg.irq)
{
if (request_irq(hwcfg.irq, scc_isr,
- IRQF_DISABLED, "AX.25 SCC",
+ 0, "AX.25 SCC",
(void *)(long) hwcfg.irq))
printk(KERN_WARNING "z8530drv: warning, cannot get IRQ %d\n", hwcfg.irq);
else
diff --git a/drivers/net/hamradio/yam.c b/drivers/net/hamradio/yam.c
index 96a98d2..9d60f06 100644
--- a/drivers/net/hamradio/yam.c
+++ b/drivers/net/hamradio/yam.c
@@ -890,7 +890,7 @@ static int yam_open(struct net_device *dev)
goto out_release_base;
}
outb(0, IER(dev->base_addr));
- if (request_irq(dev->irq, yam_interrupt, IRQF_DISABLED | IRQF_SHARED, dev->name, dev)) {
+ if (request_irq(dev->irq, yam_interrupt, IRQF_SHARED, dev->name, dev)) {
printk(KERN_ERR "%s: irq %d busy\n", dev->name, dev->irq);
ret = -EBUSY;
goto out_release_base;
diff --git a/drivers/net/irda/bfin_sir.c b/drivers/net/irda/bfin_sir.c
index 9d4ce1a..529317b 100644
--- a/drivers/net/irda/bfin_sir.c
+++ b/drivers/net/irda/bfin_sir.c
@@ -410,12 +410,12 @@ static int bfin_sir_startup(struct bfin_sir_port *port, struct net_device *dev)
#else
- if (request_irq(port->irq, bfin_sir_rx_int, IRQF_DISABLED, "BFIN_SIR_RX", dev)) {
+ if (request_irq(port->irq, bfin_sir_rx_int, 0, "BFIN_SIR_RX", dev)) {
dev_warn(&dev->dev, "Unable to attach SIR RX interrupt\n");
return -EBUSY;
}
- if (request_irq(port->irq+1, bfin_sir_tx_int, IRQF_DISABLED, "BFIN_SIR_TX", dev)) {
+ if (request_irq(port->irq+1, bfin_sir_tx_int, 0, "BFIN_SIR_TX", dev)) {
dev_warn(&dev->dev, "Unable to attach SIR TX interrupt\n");
free_irq(port->irq, dev);
return -EBUSY;
diff --git a/drivers/net/irda/donauboe.c b/drivers/net/irda/donauboe.c
index b45b2cc..04e4528 100644
--- a/drivers/net/irda/donauboe.c
+++ b/drivers/net/irda/donauboe.c
@@ -1353,7 +1353,7 @@ toshoboe_net_open (struct net_device *dev)
return 0;
rc = request_irq (self->io.irq, toshoboe_interrupt,
- IRQF_SHARED | IRQF_DISABLED, dev->name, self);
+ IRQF_SHARED, dev->name, self);
if (rc)
return rc;
@@ -1560,7 +1560,7 @@ toshoboe_open (struct pci_dev *pci_dev, const struct pci_device_id *pdid)
self->io.fir_base = self->base;
self->io.fir_ext = OBOE_IO_EXTENT;
self->io.irq = pci_dev->irq;
- self->io.irqflags = IRQF_SHARED | IRQF_DISABLED;
+ self->io.irqflags = IRQF_SHARED;
self->speed = self->io.speed = 9600;
self->async = 0;
diff --git a/drivers/net/irda/sh_irda.c b/drivers/net/irda/sh_irda.c
index d275e27..bc77767 100644
--- a/drivers/net/irda/sh_irda.c
+++ b/drivers/net/irda/sh_irda.c
@@ -809,7 +809,7 @@ static int __devinit sh_irda_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, ndev);
- if (request_irq(irq, sh_irda_irq, IRQF_DISABLED, "sh_irda", self)) {
+ if (request_irq(irq, sh_irda_irq, 0, "sh_irda", self)) {
dev_warn(&pdev->dev, "Unable to attach sh_irda interrupt\n");
goto err_mem_4;
}
diff --git a/drivers/net/irda/sh_sir.c b/drivers/net/irda/sh_sir.c
index ed7d7d6..d5575f7 100644
--- a/drivers/net/irda/sh_sir.c
+++ b/drivers/net/irda/sh_sir.c
@@ -761,7 +761,7 @@ static int __devinit sh_sir_probe(struct platform_device *pdev)
platform_set_drvdata(pdev, ndev);
- if (request_irq(irq, sh_sir_irq, IRQF_DISABLED, "sh_sir", self)) {
+ if (request_irq(irq, sh_sir_irq, 0, "sh_sir", self)) {
dev_warn(&pdev->dev, "Unable to attach sh_sir interrupt\n");
goto err_mem_4;
}
diff --git a/drivers/net/wan/hostess_sv11.c b/drivers/net/wan/hostess_sv11.c
index 3d80e42..3d74166 100644
--- a/drivers/net/wan/hostess_sv11.c
+++ b/drivers/net/wan/hostess_sv11.c
@@ -220,7 +220,7 @@ static struct z8530_dev *sv11_init(int iobase, int irq)
/* We want a fast IRQ for this device. Actually we'd like an even faster
IRQ ;) - This is one driver RtLinux is made for */
- if (request_irq(irq, z8530_interrupt, IRQF_DISABLED,
+ if (request_irq(irq, z8530_interrupt, 0,
"Hostess SV11", sv) < 0) {
pr_warn("IRQ %d already in use\n", irq);
goto err_irq;
diff --git a/drivers/net/wan/sealevel.c b/drivers/net/wan/sealevel.c
index 0b4fd05..6027e47 100644
--- a/drivers/net/wan/sealevel.c
+++ b/drivers/net/wan/sealevel.c
@@ -266,7 +266,7 @@ static __init struct slvl_board *slvl_init(int iobase, int irq,
/* We want a fast IRQ for this device. Actually we'd like an even faster
IRQ ;) - This is one driver RtLinux is made for */
- if (request_irq(irq, z8530_interrupt, IRQF_DISABLED,
+ if (request_irq(irq, z8530_interrupt, 0,
"SeaLevel", dev) < 0) {
pr_warn("IRQ %d already in use\n", irq);
goto err_request_irq;
diff --git a/drivers/net/wireless/p54/p54spi.c b/drivers/net/wireless/p54/p54spi.c
index f18df82..c901e07 100644
--- a/drivers/net/wireless/p54/p54spi.c
+++ b/drivers/net/wireless/p54/p54spi.c
@@ -641,7 +641,7 @@ static int __devinit p54spi_probe(struct spi_device *spi)
gpio_direction_input(p54spi_gpio_irq);
ret = request_irq(gpio_to_irq(p54spi_gpio_irq),
- p54spi_interrupt, IRQF_DISABLED, "p54spi",
+ p54spi_interrupt, 0, "p54spi",
priv->spi);
if (ret < 0) {
dev_err(&priv->spi->dev, "request_irq() failed");
diff --git a/include/net/irda/irda_device.h b/include/net/irda/irda_device.h
index 94c852d..1141747 100644
--- a/include/net/irda/irda_device.h
+++ b/include/net/irda/irda_device.h
@@ -162,7 +162,7 @@ typedef struct {
int irq, irq2; /* Interrupts used */
int dma, dma2; /* DMA channel(s) used */
int fifo_size; /* FIFO size */
- int irqflags; /* interrupt flags (ie, IRQF_SHARED|IRQF_DISABLED) */
+ int irqflags; /* interrupt flags (ie, IRQF_SHARED) */
int direction; /* Link direction, used by some FIR drivers */
int enabled; /* Powered on? */
int suspended; /* Suspended by APM */
--
1.7.1
^ permalink raw reply related
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Arend van Spriel @ 2011-10-22 8:44 UTC (permalink / raw)
To: Greg KH
Cc: Nico Schottelius, Eric Dumazet, LKML,
linux-wireless@vger.kernel.org
In-Reply-To: <20111022083005.GA6032@suse.de>
On 10/22/2011 10:30 AM, Greg KH wrote:
> On Sat, Oct 22, 2011 at 01:13:34AM -0700, Arend Van Spriel wrote:
>>> From: Nico Schottelius [mailto:nico-linux-20111017@schottelius.org]
>>> Sent: zaterdag 22 oktober 2011 4:00
>>>
>>> Hey Arend,
>>>
>>> it seems that your patch really solves this problem.
>>
>> Great. This fix is in linux-next tree.
>>
>> Greg,
>>
>> This problem causes packets to get dropped on 5GHz. Should I
>> sent a patch for 3.1 (staging-linus) for this? It is already
>> fixed in wireless-next.
>
> No, just wait for it to get into Linus's tree for 3.2-rc1, and then
> email the git commit id to stable@vger.kernel.org so it will be added to
> the 3.1-stable releases.
>
> greg k-h
>
Thanks, Greg
Saw you email regarding staging-next so I was not sure about
staging-linus. Will be patient ;-)
Gr. AvS
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Greg KH @ 2011-10-22 8:30 UTC (permalink / raw)
To: Arend Van Spriel
Cc: Nico Schottelius, Eric Dumazet, LKML,
linux-wireless@vger.kernel.org
In-Reply-To: <400C43189542CE41BC0A5B252FC90136BC0E147BCB@SJEXCHCCR02.corp.ad.broadcom.com>
On Sat, Oct 22, 2011 at 01:13:34AM -0700, Arend Van Spriel wrote:
> > From: Nico Schottelius [mailto:nico-linux-20111017@schottelius.org]
> > Sent: zaterdag 22 oktober 2011 4:00
> >
> > Hey Arend,
> >
> > it seems that your patch really solves this problem.
>
> Great. This fix is in linux-next tree.
>
> Greg,
>
> This problem causes packets to get dropped on 5GHz. Should I
> sent a patch for 3.1 (staging-linus) for this? It is already
> fixed in wireless-next.
No, just wait for it to get into Linus's tree for 3.2-rc1, and then
email the git commit id to stable@vger.kernel.org so it will be added to
the 3.1-stable releases.
greg k-h
^ permalink raw reply
* RE: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Arend Van Spriel @ 2011-10-22 8:13 UTC (permalink / raw)
To: Nico Schottelius, gregkh@suse.de
Cc: Eric Dumazet, LKML, linux-wireless@vger.kernel.org
In-Reply-To: <20111022015945.GC26186@ethz.ch>
> From: Nico Schottelius [mailto:nico-linux-20111017@schottelius.org]
> Sent: zaterdag 22 oktober 2011 4:00
>
> Hey Arend,
>
> it seems that your patch really solves this problem.
Great. This fix is in linux-next tree.
Greg,
This problem causes packets to get dropped on 5GHz. Should I
sent a patch for 3.1 (staging-linus) for this? It is already
fixed in wireless-next.
> I've got a new one now, though :-)
Ok. Not sure which universal law this is, but let's have a look.
> After several suspend/resume cycles, my card often reconnects to my AP
> that is only several meters (2) away. If the connection is established,
> I've a very laggy connection to the AP:
>
> 64 bytes from 192.168.42.1: icmp_req=1154 ttl=64 time=10839 ms
> 64 bytes from 192.168.42.1: icmp_req=1155 ttl=64 time=9841 ms
> ...
> 64 bytes from 192.168.42.1: icmp_req=1164 ttl=64 time=2814 ms
> 64 bytes from 192.168.42.1: icmp_req=1165 ttl=64 time=16785 ms
> 64 bytes from 192.168.42.1: icmp_req=1166 ttl=64 time=20767 ms
>
> Attached are the usual suspect outputs.
> This time I'm on 2.432 Ghz.
I will dig into it.
Gr. AvS
^ permalink raw reply
* Re: ath9k: irq storm after suspend/resume
From: Adrian Chadd @ 2011-10-22 7:29 UTC (permalink / raw)
To: Clemens Buchacher; +Cc: Mohammed Shafi, linux-wireless, ath9k-devel
In-Reply-To: <20111022072215.GA2524@ecki>
On 22 October 2011 15:22, Clemens Buchacher <drizzd@aon.at> wrote:
> Looks like you had it right from the start. After unloading the jme
> module [*1*] I cannot reproduce the IRQ storm any more. From
> looking at dmesg it should have been obvious, since it also gets
> IRQ 17 assigned. I don't know how I missed that, I was sure I had
> checked.
>
> Sorry guys, for most likely wasting your time. And thanks for your
> patience.
Ah, eek! Well, you're welcome! And I hope you/others have a better
understanding of how the interrupt setup on these NICs work.
(I certainly have a better understanding now of the host interface and
what we can poke when it's awake and asleep.)
Good luck!
Adrian
^ permalink raw reply
* Re: ath9k: irq storm after suspend/resume
From: Clemens Buchacher @ 2011-10-22 7:22 UTC (permalink / raw)
To: Adrian Chadd; +Cc: Mohammed Shafi, linux-wireless, ath9k-devel
In-Reply-To: <CAJ-Vmonu-75rtOyyqP7aWNA5NvQ7XW+0YB-G7N5gF3tS5E0EaA@mail.gmail.com>
Hi,
On Sat, Oct 22, 2011 at 08:47:33AM +0800, Adrian Chadd wrote:
>
> At this point I'd really suggest whacking other devices into the slot
> to see if they generate the same kind of behaviour.
Looks like you had it right from the start. After unloading the jme
module [*1*] I cannot reproduce the IRQ storm any more. From
looking at dmesg it should have been obvious, since it also gets
IRQ 17 assigned. I don't know how I missed that, I was sure I had
checked.
Sorry guys, for most likely wasting your time. And thanks for your
patience.
Best,
Clemens
[*1*]
$ lspci
06:00.5 Ethernet controller: JMicron Technology Corp. JMC250 PCI Express Gigabit Ethernet Controller (rev 03))
$ dmesg|grep -i jme
[ 6.160187] jme: JMicron JMC2XX ethernet driver version 1.0.8
[ 6.160278] jme 0000:06:00.5: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 6.160305] jme 0000:06:00.5: setting latency timer to 64
[ 6.161154] jme 0000:06:00.5: eth0: JMC250 Gigabit Ethernet chiprev:23 pcirev:3 macaddr:bc:ae:c5:2f:91:47
[ 18.354697] jme 0000:06:00.5: PCI INT A disabled
^ permalink raw reply
* Re: Any wireless cards with this debug capability?
From: Adrian Chadd @ 2011-10-22 6:03 UTC (permalink / raw)
To: George Nychis; +Cc: linux-wireless@vger.kernel.org, Eric Rozner
In-Reply-To: <2764633066252075767@unknownmsgid>
On 22 October 2011 05:09, George Nychis <gnychis@gmail.com> wrote:
> We are finding that under certain scenarios, various WiFi cards
> (Atheros, Intel, ...) fail to decode incoming packets for certain
> periods of time on the order of 5->20ms. We are trying to enable a
> low-latency wireless link in which losses during this window break our
> requirement. A retransmission would essentially be too late.
>
> During this period, we are trying to determine the reason for loss.
> Whether it is fading, improper tuning of AGC, failure to account for
> frequency offset, etc. Ideally, what we would like to know is whether
> the card *tried* to acquire the carrier and if so, where it failed. I
> have noticed several Atheros kernel debug counters which show things
> such as a PHY error, but it's not clear at what stage it failed.
If you're not doing stupidly-high RX throughput, you could enable PHY
errors on the Atheros NICs instead of Just relying on the counters.
That way you can get reason values for the failed RX frames.
It may not be the -exact- reason (having the AGC get upset at you for
20ms? That seems a bit unlikely, considering how quick it needs to
adjust at the beginning of every RX'ed signal that may be a data
frame..) but it could be something like ANI interfering with RX.
There's been at least one reproducable report of that occuring w/
ath9k + AR5416 however I've not seen it happen on my FreeBSD/Linux
setups. For atheros, it could also be the periodic calibration code
kicking in.
I'd start by enabling PHY errors and watching the values of counters
whenever the error condition occurs. Under FreeBSD the 'athstats' tool
(and all the data exported by the HAL and driver) has allowed me to
leverage some basic correlational techniques to find/fix issues. You
may be able to do the same with a bit of hackery and the debugfs
export of these counters with ath5k/ath9k.
I think you can also enable receiving frames which fail the CRC check.
I forget if that is enabled by default.
Adrian
^ permalink raw reply
* Re: BUG: All network processes hang (brcmsmac/wpa_supplicant)
From: Nico Schottelius @ 2011-10-22 1:59 UTC (permalink / raw)
To: Arend van Spriel
Cc: Nico Schottelius, Eric Dumazet, LKML,
linux-wireless@vger.kernel.org, netdev
In-Reply-To: <4E9FBFA7.4040502@broadcom.com>
[-- Attachment #1: Type: text/plain, Size: 752 bytes --]
Hey Arend,
it seems that your patch really solves this problem.
I've got a new one now, though :-)
After several suspend/resume cycles, my card often reconnects to my AP
that is only several meters (2) away. If the connection is established,
I've a very laggy connection to the AP:
64 bytes from 192.168.42.1: icmp_req=1154 ttl=64 time=10839 ms
64 bytes from 192.168.42.1: icmp_req=1155 ttl=64 time=9841 ms
...
64 bytes from 192.168.42.1: icmp_req=1164 ttl=64 time=2814 ms
64 bytes from 192.168.42.1: icmp_req=1165 ttl=64 time=16785 ms
64 bytes from 192.168.42.1: icmp_req=1166 ttl=64 time=20767 ms
Attached are the usual suspect outputs.
This time I'm on 2.432 Ghz.
Cheers,
Nico
--
PGP key: 7ED9 F7D3 6B10 81D7 0EC5 5C09 D7DC C8E4 3187 7DF0
[-- Attachment #2: 3.1.0-rc6-g443452b.config.gz --]
[-- Type: application/octet-stream, Size: 32197 bytes --]
[-- Attachment #3: 3.1.0-rc6-g443452b.dmesg --]
[-- Type: text/plain, Size: 288936 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.1.0-rc6-g443452b (nico@brief) (gcc version 4.6.1 20110819 (prerelease) (GCC) ) #5 SMP PREEMPT Wed Oct 19 23:39:31 CEST 2011
[ 0.000000] Command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro initrd=../initramfs-nico.img BOOT_IMAGE=../vmlinuz-nico
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
[ 0.000000] BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
[ 0.000000] BIOS-e820: 0000000000090000 - 000000000009fc00 (usable)
[ 0.000000] BIOS-e820: 000000000009fc00 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 0000000020000000 (usable)
[ 0.000000] BIOS-e820: 0000000020000000 - 0000000020200000 (reserved)
[ 0.000000] BIOS-e820: 0000000020200000 - 0000000040000000 (usable)
[ 0.000000] BIOS-e820: 0000000040000000 - 0000000040200000 (reserved)
[ 0.000000] BIOS-e820: 0000000040200000 - 000000008ad36000 (usable)
[ 0.000000] BIOS-e820: 000000008ad36000 - 000000008ad5f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000008ad5f000 - 000000008afa2000 (ACPI data)
[ 0.000000] BIOS-e820: 000000008afa2000 - 000000008afff000 (reserved)
[ 0.000000] BIOS-e820: 000000008afff000 - 000000008b000000 (ACPI data)
[ 0.000000] BIOS-e820: 000000008b000000 - 000000008fa00000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed04000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed10000 - 00000000fed14000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed18000 - 00000000fed1a000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed20000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 000000016fe00000 (usable)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI 2.4 present.
[ 0.000000] DMI: Apple Inc. MacBookAir4,2/Mac-742912EFDBEE19B3, BIOS MBA41.88Z.0077.B08.1109011050 09/01/2011
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x16fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: write-back
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-DFFFF write-protect
[ 0.000000] E0000-FFFFF uncachable
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0C0000000 mask FC0000000 uncachable
[ 0.000000] 1 base 0A0000000 mask FE0000000 uncachable
[ 0.000000] 2 base 090000000 mask FF0000000 uncachable
[ 0.000000] 3 base 08C000000 mask FFC000000 uncachable
[ 0.000000] 4 base 08B800000 mask FFF800000 uncachable
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] last_pfn = 0x8ad36 max_arch_pfn = 0x400000000
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] Base memory trampoline at [ffff88000009a000] 9a000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-000000008ad36000
[ 0.000000] 0000000000 - 008ac00000 page 2M
[ 0.000000] 008ac00000 - 008ad36000 page 4k
[ 0.000000] kernel direct mapping tables up to 8ad36000 @ 8ad31000-8ad36000
[ 0.000000] init_memory_mapping: 0000000100000000-000000016fe00000
[ 0.000000] 0100000000 - 016fe00000 page 2M
[ 0.000000] kernel direct mapping tables up to 16fe00000 @ 16fdf9000-16fe00000
[ 0.000000] RAMDISK: 1fd2a000 - 1ffff000
[ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
[ 0.000000] ACPI: XSDT 000000008ad8e1c0 000AC (v01 APPLE Apple00 00000060 01000013)
[ 0.000000] ACPI: FACP 000000008ad8c000 000F4 (v04 APPLE Apple00 00000060 Loki 0000005F)
[ 0.000000] ACPI: DSDT 000000008ad81000 05050 (v01 APPLE MacBookA 00040001 INTL 20100915)
[ 0.000000] ACPI: FACS 000000008ad40000 00040
[ 0.000000] ACPI: HPET 000000008ad8b000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: APIC 000000008ad8a000 000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SBST 000000008ad88000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: ECDT 000000008ad87000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 000000008ad7d000 00024 (v01 APPLE SmcDppt 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7b000 006CA (v01 APPLE UsbSD 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad77000 00159 (v02 APPLE IGHda 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad73000 015EB (v02 APPLE SsdtIGPU 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad72000 00506 (v01 PmRef Cpu0Ist 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad71000 009B1 (v01 PmRef CpuPm 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad70000 00315 (v01 PmRef Cpu0Tst 00003000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad6f000 0037A (v01 PmRef ApTst 00003000 INTL 20100915)
[ 0.000000] ACPI: MCFG 000000008ad89000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
[ 0.000000] ACPI: SSDT 000000008ad80000 000FA (v01 SataRe SataPri 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7f000 000D0 (v01 SataRe SataSec 00001000 INTL 20100915)
[ 0.000000] ACPI: SSDT 000000008ad7e000 00032 (v01 Apple SsdtS3 00001000 INTL 20100915)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-000000016fe00000
[ 0.000000] Initmem setup node 0 0000000000000000-000000016fe00000
[ 0.000000] NODE_DATA [000000016fdfb000 - 000000016fdfffff]
[ 0.000000] [ffffea0000000000-ffffea0005bfffff] PMD -> [ffff88016b400000-ffff88016f3fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x0016fe00
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[6] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000008f
[ 0.000000] 0: 0x00000090 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x00020000
[ 0.000000] 0: 0x00020200 -> 0x00040000
[ 0.000000] 0: 0x00040200 -> 0x0008ad36
[ 0.000000] 0: 0x00100000 -> 0x0016fe00
[ 0.000000] On node 0 totalpages: 1025732
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 5 pages reserved
[ 0.000000] DMA zone: 3913 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 547190 pages, LIFO batch:31
[ 0.000000] Normal zone: 7160 pages used for memmap
[ 0.000000] Normal zone: 451080 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000008f000 - 0000000000090000
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
[ 0.000000] PM: Registered nosave memory: 000000008ad36000 - 000000008ad5f000
[ 0.000000] PM: Registered nosave memory: 000000008ad5f000 - 000000008afa2000
[ 0.000000] PM: Registered nosave memory: 000000008afa2000 - 000000008afff000
[ 0.000000] PM: Registered nosave memory: 000000008afff000 - 000000008b000000
[ 0.000000] PM: Registered nosave memory: 000000008b000000 - 000000008fa00000
[ 0.000000] PM: Registered nosave memory: 000000008fa00000 - 00000000e0000000
[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed00000
[ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed04000
[ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed10000
[ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
[ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
[ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
[ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff800000
[ 0.000000] PM: Registered nosave memory: 00000000ff800000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at 8fa00000 (gap: 8fa00000:50600000)
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88016fa00000 s82048 r8192 d24448 u262144
[ 0.000000] pcpu-alloc: s82048 r8192 d24448 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1002183
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: root=/dev/mapper/root cryptdevice=/dev/sda5:root ro initrd=../initramfs-nico.img BOOT_IMAGE=../vmlinuz-nico
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
[ 0.000000] Checking aperture...
[ 0.000000] No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3946532k/6027264k available (4294k kernel code, 1924336k absent, 156396k reserved, 5506k data, 724k init)
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Verbose stalled-CPUs detection is disabled.
[ 0.000000] NR_IRQS:2304
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 16384
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 32768
[ 0.000000] ... CHAINHASH_SIZE: 16384
[ 0.000000] memory used by lock dependency info: 5855 kB
[ 0.000000] per task-struct memory footprint: 1920 bytes
[ 0.000000] allocated 33554432 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] hpet clockevent registered
[ 0.000000] Fast TSC calibration using PIT
[ 0.003333] Detected 1699.751 MHz processor.
[ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 3400.14 BogoMIPS (lpj=5665836)
[ 0.000141] pid_max: default: 32768 minimum: 301
[ 0.000396] Security Framework initialized
[ 0.000464] AppArmor: AppArmor disabled by boot time parameter
[ 0.001147] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.002517] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.003100] Mount-cache hash table entries: 256
[ 0.004639] Initializing cgroup subsys cpuacct
[ 0.004743] Initializing cgroup subsys memory
[ 0.004863] Initializing cgroup subsys devices
[ 0.004930] Initializing cgroup subsys freezer
[ 0.004998] Initializing cgroup subsys net_cls
[ 0.005065] Initializing cgroup subsys blkio
[ 0.005243] CPU: Physical Processor ID: 0
[ 0.005308] CPU: Processor Core ID: 0
[ 0.005376] mce: CPU supports 7 MCE banks
[ 0.005455] CPU0: Thermal monitoring enabled (TM1)
[ 0.005537] using mwait in idle threads.
[ 0.007470] ACPI: Core revision 20110623
[ 0.030337] ftrace: allocating 16325 entries in 65 pages
[ 0.039487] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.072539] CPU0: Intel(R) Core(TM) i5-2557M CPU @ 1.70GHz stepping 07
[ 0.177397] Performance Events: PEBS fmt1+, SandyBridge events, Intel PMU driver.
[ 0.177612] ... version: 3
[ 0.177676] ... bit width: 48
[ 0.177740] ... generic registers: 4
[ 0.177805] ... value mask: 0000ffffffffffff
[ 0.177872] ... max period: 000000007fffffff
[ 0.177939] ... fixed-purpose events: 3
[ 0.178002] ... event mask: 000000070000000f
[ 0.198014] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.217443] lockdep: fixing up alternatives.
[ 0.224200] Booting Node 0, Processors #1
[ 0.224296] smpboot cpu 1: start_ip = 9a000
[ 0.337501] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.357326] lockdep: fixing up alternatives.
[ 0.357438] #2
[ 0.357484] smpboot cpu 2: start_ip = 9a000
[ 0.470705] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.490575] lockdep: fixing up alternatives.
[ 0.490688] #3
[ 0.490735] smpboot cpu 3: start_ip = 9a000
[ 0.603917] NMI watchdog enabled, takes one hw-pmu counter.
[ 0.610491] Brought up 4 CPUs
[ 0.610570] Total of 4 processors activated (13604.09 BogoMIPS).
[ 0.614859] devtmpfs: initialized
[ 0.616467] PM: Registering ACPI NVS region at 8ad36000 (167936 bytes)
[ 0.618067] print_constraints: dummy:
[ 0.618421] NET: Registered protocol family 16
[ 0.618789] ACPI: bus type pci registered
[ 0.619111] PCI: MMCONFIG for domain 0000 [bus 00-97] at [mem 0xe0000000-0xe97fffff] (base 0xe0000000)
[ 0.619203] PCI: MMCONFIG at [mem 0xe0000000-0xe97fffff] reserved in E820
[ 0.682256] PCI: Using configuration type 1 for base access
[ 0.683581] bio: create slab <bio-0> at 0
[ 0.683862] ACPI: Added _OSI(Module Device)
[ 0.683931] ACPI: Added _OSI(Processor Device)
[ 0.683997] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.684063] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.690350] ACPI: EC: EC description table is found, configuring boot EC
[ 0.705403] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.706334] ACPI: SSDT 000000008ad3b190 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
[ 0.708103] ACPI: Dynamic OEM Table Load:
[ 0.708252] ACPI: SSDT (null) 00781 (v01 PmRef Cpu0Cst 00003001 INTL 20100915)
[ 0.717594] ACPI: SSDT 000000008ad3c710 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
[ 0.719452] ACPI: Dynamic OEM Table Load:
[ 0.719600] ACPI: SSDT (null) 003A4 (v01 PmRef ApIst 00003000 INTL 20100915)
[ 0.727269] ACPI: SSDT 000000008ad3ad90 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
[ 0.729036] ACPI: Dynamic OEM Table Load:
[ 0.729184] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100915)
[ 0.738119] ACPI: Interpreter enabled
[ 0.738185] ACPI: (supports S0 S3 S4 S5)
[ 0.738464] ACPI: Using IOAPIC for interrupt routing
[ 0.764739] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.765295] ACPI: No dock devices found.
[ 0.765361] HEST: Table not found.
[ 0.765424] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.766233] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.767416] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.767489] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.767560] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.767646] pci_root PNP0A08:00: host bridge window [mem 0x8fa00000-0xfeafffff]
[ 0.767731] pci_root PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff]
[ 0.767855] pci 0000:00:00.0: [8086:0104] type 0 class 0x000600
[ 0.767955] pci 0000:00:01.0: [8086:0101] type 1 class 0x000604
[ 0.768013] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.768018] pci 0000:00:01.0: PME# disabled
[ 0.768060] pci 0000:00:02.0: [8086:0116] type 0 class 0x000300
[ 0.768083] pci 0000:00:02.0: reg 10: [mem 0xa0000000-0xa03fffff 64bit]
[ 0.768096] pci 0000:00:02.0: reg 18: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.768106] pci 0000:00:02.0: reg 20: [io 0x2000-0x203f]
[ 0.768221] pci 0000:00:16.0: [8086:1c3a] type 0 class 0x000780
[ 0.768267] pci 0000:00:16.0: reg 10: [mem 0xa0607100-0xa060710f 64bit]
[ 0.768391] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.768398] pci 0000:00:16.0: PME# disabled
[ 0.768456] pci 0000:00:1a.0: [8086:1c2c] type 0 class 0x000c03
[ 0.768550] pci 0000:00:1a.0: reg 20: [io 0x2140-0x215f]
[ 0.768664] pci 0000:00:1a.7: [8086:1c2d] type 0 class 0x000c03
[ 0.768704] pci 0000:00:1a.7: reg 10: [mem 0xa0606c00-0xa0606fff]
[ 0.768851] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.768858] pci 0000:00:1a.7: PME# disabled
[ 0.768906] pci 0000:00:1b.0: [8086:1c20] type 0 class 0x000403
[ 0.768939] pci 0000:00:1b.0: reg 10: [mem 0xa0600000-0xa0603fff 64bit]
[ 0.769068] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.769074] pci 0000:00:1b.0: PME# disabled
[ 0.769118] pci 0000:00:1c.0: [8086:1c10] type 1 class 0x000604
[ 0.769257] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.769264] pci 0000:00:1c.0: PME# disabled
[ 0.769315] pci 0000:00:1c.1: [8086:1c12] type 1 class 0x000604
[ 0.769454] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.769461] pci 0000:00:1c.1: PME# disabled
[ 0.769520] pci 0000:00:1d.0: [8086:1c27] type 0 class 0x000c03
[ 0.769612] pci 0000:00:1d.0: reg 20: [io 0x20e0-0x20ff]
[ 0.769730] pci 0000:00:1d.7: [8086:1c26] type 0 class 0x000c03
[ 0.769770] pci 0000:00:1d.7: reg 10: [mem 0xa0606800-0xa0606bff]
[ 0.769916] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.769923] pci 0000:00:1d.7: PME# disabled
[ 0.769965] pci 0000:00:1f.0: [8086:1c4d] type 0 class 0x000601
[ 0.770168] pci 0000:00:1f.2: [8086:1c01] type 0 class 0x000101
[ 0.770205] pci 0000:00:1f.2: reg 10: [io 0x2168-0x216f]
[ 0.770223] pci 0000:00:1f.2: reg 14: [io 0x217c-0x217f]
[ 0.770241] pci 0000:00:1f.2: reg 18: [io 0x2160-0x2167]
[ 0.770258] pci 0000:00:1f.2: reg 1c: [io 0x2178-0x217b]
[ 0.770276] pci 0000:00:1f.2: reg 20: [io 0x2060-0x206f]
[ 0.770294] pci 0000:00:1f.2: reg 24: [io 0xffe0-0xffef]
[ 0.770389] pci 0000:00:1f.3: [8086:1c22] type 0 class 0x000c05
[ 0.770424] pci 0000:00:1f.3: reg 10: [mem 0xa0607000-0xa06070ff 64bit]
[ 0.770473] pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
[ 0.770597] pci 0000:03:00.0: [8086:151a] type 1 class 0x000604
[ 0.770672] pci 0000:03:00.0: supports D1 D2
[ 0.770675] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.770680] pci 0000:03:00.0: PME# disabled
[ 0.777099] pci 0000:00:01.0: PCI bridge to [bus 03-97]
[ 0.777170] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.777175] pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
[ 0.777182] pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.777255] pci 0000:04:00.0: [8086:151a] type 1 class 0x000604
[ 0.777334] pci 0000:04:00.0: supports D1 D2
[ 0.777336] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.777341] pci 0000:04:00.0: PME# disabled
[ 0.777391] pci 0000:04:03.0: [8086:151a] type 1 class 0x000604
[ 0.777469] pci 0000:04:03.0: supports D1 D2
[ 0.777471] pci 0000:04:03.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.777476] pci 0000:04:03.0: PME# disabled
[ 0.777516] pci 0000:04:04.0: [8086:151a] type 1 class 0x000604
[ 0.777594] pci 0000:04:04.0: supports D1 D2
[ 0.777596] pci 0000:04:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.777601] pci 0000:04:04.0: PME# disabled
[ 0.777668] pci 0000:03:00.0: PCI bridge to [bus 04-67]
[ 0.777745] pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
[ 0.777834] pci 0000:05:00.0: [8086:151a] type 0 class 0x000880
[ 0.777854] pci 0000:05:00.0: reg 10: [mem 0xa0700000-0xa073ffff]
[ 0.777869] pci 0000:05:00.0: reg 14: [mem 0xa0740000-0xa0740fff]
[ 0.777976] pci 0000:05:00.0: supports D1 D2
[ 0.777978] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.777984] pci 0000:05:00.0: PME# disabled
[ 0.778046] pci 0000:04:00.0: PCI bridge to [bus 05-05]
[ 0.778122] pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.778187] pci 0000:04:03.0: PCI bridge to [bus 06-36]
[ 0.778263] pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.778328] pci 0000:04:04.0: PCI bridge to [bus 37-67]
[ 0.778404] pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
[ 0.778532] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[ 0.778609] pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
[ 0.778813] pci 0000:02:00.0: [14e4:4353] type 0 class 0x000280
[ 0.778881] pci 0000:02:00.0: reg 10: [mem 0xa0400000-0xa0403fff 64bit]
[ 0.779164] pci 0000:02:00.0: supports D1 D2
[ 0.779166] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.779178] pci 0000:02:00.0: PME# disabled
[ 0.783792] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[ 0.783870] pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
[ 0.783939] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.784237] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P2._PRT]
[ 0.784491] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[ 0.784725] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 0.785065] pci0000:00: ACPI _OSC control (0x19) granted
[ 0.793625] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.794348] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.794994] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.795694] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.796337] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[ 0.797088] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[ 0.797789] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[ 0.798488] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[ 0.799434] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.799548] vgaarb: loaded
[ 0.799608] vgaarb: bridge control possible 0000:00:02.0
[ 0.799840] PCI: Using ACPI for IRQ routing
[ 0.805154] PCI: pci_cache_line_size set to 64 bytes
[ 0.805344] reserve RAM buffer: 000000000008f000 - 000000000008ffff
[ 0.805348] reserve RAM buffer: 000000000009fc00 - 000000000009ffff
[ 0.805351] reserve RAM buffer: 000000008ad36000 - 000000008bffffff
[ 0.805355] reserve RAM buffer: 000000016fe00000 - 000000016fffffff
[ 0.805758] NetLabel: Initializing
[ 0.805822] NetLabel: domain hash size = 128
[ 0.805887] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.806000] NetLabel: unlabeled traffic allowed by default
[ 0.806092] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.806535] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.808647] Switching to clocksource hpet
[ 0.810387] Switched to NOHz mode on CPU #0
[ 0.810450] Switched to NOHz mode on CPU #3
[ 0.810477] Switched to NOHz mode on CPU #1
[ 0.810486] Switched to NOHz mode on CPU #2
[ 0.831384] pnp: PnP ACPI init
[ 0.831490] ACPI: bus type pnp registered
[ 0.832041] pnp 00:00: [bus 00-ff]
[ 0.832044] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.832047] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.832050] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.832053] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.832055] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 0.832058] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 0.832060] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 0.832063] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 0.832065] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 0.832068] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 0.832070] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 0.832073] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 0.832075] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 0.832078] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 0.832080] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 0.832083] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 0.832085] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[ 0.832088] pnp 00:00: [mem 0x8fa00000-0xfeafffff window]
[ 0.832090] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
[ 0.832262] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 0.832467] pnp 00:01: [io 0x0000-0x001f]
[ 0.832470] pnp 00:01: [io 0x0081-0x0091]
[ 0.832472] pnp 00:01: [io 0x0093-0x009f]
[ 0.832474] pnp 00:01: [io 0x00c0-0x00df]
[ 0.832477] pnp 00:01: [dma 4]
[ 0.832555] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.832571] pnp 00:02: [mem 0xff000000-0xffffffff]
[ 0.832644] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.832758] pnp 00:03: [irq 0 disabled]
[ 0.832772] pnp 00:03: [irq 8]
[ 0.832775] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[ 0.832915] system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.832991] system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
[ 0.833012] pnp 00:04: [io 0x00f0]
[ 0.833021] pnp 00:04: [irq 13]
[ 0.833097] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.833114] pnp 00:05: [io 0x002e-0x002f]
[ 0.833117] pnp 00:05: [io 0x004e-0x004f]
[ 0.833119] pnp 00:05: [io 0x0061]
[ 0.833121] pnp 00:05: [io 0x0063]
[ 0.833123] pnp 00:05: [io 0x0065]
[ 0.833125] pnp 00:05: [io 0x0067]
[ 0.833127] pnp 00:05: [io 0x0080]
[ 0.833129] pnp 00:05: [io 0x0092]
[ 0.833133] pnp 00:05: [io 0x00b2-0x00b3]
[ 0.833135] pnp 00:05: [io 0x1000-0x100f]
[ 0.833137] pnp 00:05: [io 0x0400-0x047f]
[ 0.833139] pnp 00:05: [io 0x0500-0x057f]
[ 0.833259] system 00:05: [io 0x1000-0x100f] has been reserved
[ 0.833330] system 00:05: [io 0x0400-0x047f] has been reserved
[ 0.833399] system 00:05: [io 0x0500-0x057f] has been reserved
[ 0.833470] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.833485] pnp 00:06: [io 0x0070-0x0077]
[ 0.833563] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.833585] pnp 00:07: [io 0x0300-0x031f]
[ 0.833593] pnp 00:07: [irq 6]
[ 0.833674] pnp 00:07: Plug and Play ACPI device, IDs APP0001 (active)
[ 0.833948] pnp 00:08: [mem 0xfed1c000-0xfed1ffff]
[ 0.833950] pnp 00:08: [mem 0xfed10000-0xfed17fff]
[ 0.833952] pnp 00:08: [mem 0xfed18000-0xfed18fff]
[ 0.833955] pnp 00:08: [mem 0xfed19000-0xfed19fff]
[ 0.833957] pnp 00:08: [mem 0xe0000000-0xefffffff]
[ 0.833959] pnp 00:08: [mem 0xfed20000-0xfed3ffff]
[ 0.833962] pnp 00:08: [mem 0xfed90000-0xfed93fff]
[ 0.833964] pnp 00:08: [mem 0xfed45000-0xfed8ffff]
[ 0.833966] pnp 00:08: [mem 0xff000000-0xffffffff]
[ 0.833968] pnp 00:08: [mem 0xfee00000-0xfeefffff]
[ 0.833971] pnp 00:08: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.834108] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.834181] system 00:08: [mem 0xfed10000-0xfed17fff] could not be reserved
[ 0.834254] system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.834325] system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.834396] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.834468] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.834539] system 00:08: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.834610] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.834684] system 00:08: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.834757] system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.834831] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.842287] pnp 00:09: [mem 0x20000000-0x201fffff]
[ 0.842290] pnp 00:09: [mem 0x40000000-0x401fffff]
[ 0.842456] system 00:09: [mem 0x20000000-0x201fffff] has been reserved
[ 0.842529] system 00:09: [mem 0x40000000-0x401fffff] has been reserved
[ 0.842603] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.842618] pnp: PnP ACPI: found 10 devices
[ 0.842682] ACPI: ACPI bus type pnp unregistered
[ 0.851982] PCI: max bus depth: 3 pci_try_num: 4
[ 0.852064] pci 0000:04:00.0: PCI bridge to [bus 05-05]
[ 0.852148] pci 0000:04:00.0: bridge window [mem 0xa0700000-0xa07fffff]
[ 0.852229] pci 0000:04:03.0: PCI bridge to [bus 06-36]
[ 0.852300] pci 0000:04:03.0: bridge window [mem 0xa0800000-0xa08fffff]
[ 0.852379] pci 0000:04:04.0: PCI bridge to [bus 37-67]
[ 0.852451] pci 0000:04:04.0: bridge window [mem 0xa0900000-0xa09fffff]
[ 0.852531] pci 0000:03:00.0: PCI bridge to [bus 04-67]
[ 0.852604] pci 0000:03:00.0: bridge window [mem 0xa0700000-0xa09fffff]
[ 0.852683] pci 0000:00:01.0: PCI bridge to [bus 03-97]
[ 0.852751] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.852823] pci 0000:00:01.0: bridge window [mem 0xa0700000-0xa49fffff]
[ 0.852897] pci 0000:00:01.0: bridge window [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.852986] pci 0000:00:1c.0: PCI bridge to [bus 01-01]
[ 0.853061] pci 0000:00:1c.0: bridge window [mem 0xa0500000-0xa05fffff]
[ 0.853145] pci 0000:00:1c.1: PCI bridge to [bus 02-02]
[ 0.853219] pci 0000:00:1c.1: bridge window [mem 0xa0400000-0xa04fffff]
[ 0.853320] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.853393] pci 0000:00:01.0: setting latency timer to 64
[ 0.853402] pci 0000:03:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.853477] pci 0000:03:00.0: setting latency timer to 64
[ 0.853486] pci 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.853559] pci 0000:04:00.0: setting latency timer to 64
[ 0.853568] pci 0000:04:03.0: enabling device (0000 -> 0002)
[ 0.853644] pci 0000:04:03.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[ 0.854219] pci 0000:04:03.0: setting latency timer to 64
[ 0.854227] pci 0000:04:04.0: enabling device (0000 -> 0002)
[ 0.854299] pci 0000:04:04.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.854373] pci 0000:04:04.0: setting latency timer to 64
[ 0.854382] pci 0000:00:1c.0: enabling device (0000 -> 0002)
[ 0.854453] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 0.854531] pci 0000:00:1c.0: setting latency timer to 64
[ 0.854618] pci 0000:00:1c.1: power state changed by ACPI to D0
[ 0.854693] pci 0000:00:1c.1: power state changed by ACPI to D0
[ 0.854772] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 0.854848] pci 0000:00:1c.1: setting latency timer to 64
[ 0.854854] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.854857] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.854859] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.854862] pci_bus 0000:00: resource 7 [mem 0x8fa00000-0xfeafffff]
[ 0.854865] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.854868] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
[ 0.854870] pci_bus 0000:03: resource 1 [mem 0xa0700000-0xa49fffff]
[ 0.854873] pci_bus 0000:03: resource 2 [mem 0xa4a00000-0xa89fffff 64bit pref]
[ 0.854876] pci_bus 0000:04: resource 1 [mem 0xa0700000-0xa09fffff]
[ 0.854879] pci_bus 0000:05: resource 1 [mem 0xa0700000-0xa07fffff]
[ 0.854881] pci_bus 0000:06: resource 1 [mem 0xa0800000-0xa08fffff]
[ 0.854884] pci_bus 0000:37: resource 1 [mem 0xa0900000-0xa09fffff]
[ 0.854887] pci_bus 0000:01: resource 1 [mem 0xa0500000-0xa05fffff]
[ 0.854890] pci_bus 0000:02: resource 1 [mem 0xa0400000-0xa04fffff]
[ 0.855007] NET: Registered protocol family 2
[ 0.855407] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.857226] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.859491] TCP bind hash table entries: 65536 (order: 10, 4194304 bytes)
[ 0.865392] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.865509] TCP reno registered
[ 0.865623] UDP hash table entries: 2048 (order: 6, 327680 bytes)
[ 0.866105] UDP-Lite hash table entries: 2048 (order: 6, 327680 bytes)
[ 0.866801] NET: Registered protocol family 1
[ 0.866894] pci 0000:00:02.0: Boot video device
[ 0.867320] PCI: CLS 256 bytes, default 64
[ 0.867474] Unpacking initramfs...
[ 0.942816] Freeing initrd memory: 2900k freed
[ 0.943435] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.943511] Placing 64MB software IO TLB between ffff880086d31000 - ffff88008ad31000
[ 0.943597] software IO TLB at phys 0x86d31000 - 0x8ad31000
[ 0.944646] audit: initializing netlink socket (disabled)
[ 0.944752] type=2000 audit(1319149764.783:1): initialized
[ 0.950966] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.965951] VFS: Disk quotas dquot_6.5.2
[ 0.966235] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.966795] msgmni has been set to 7713
[ 0.967369] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.967528] io scheduler noop registered
[ 0.967594] io scheduler deadline registered
[ 0.967738] io scheduler cfq registered (default)
[ 0.968089] pcieport 0000:00:01.0: setting latency timer to 64
[ 0.968159] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[ 0.968466] pcieport 0000:03:00.0: setting latency timer to 64
[ 0.968519] pcieport 0000:03:00.0: irq 41 for MSI/MSI-X
[ 0.968652] pcieport 0000:04:00.0: setting latency timer to 64
[ 0.968725] pcieport 0000:04:00.0: irq 42 for MSI/MSI-X
[ 0.968859] pcieport 0000:04:03.0: setting latency timer to 64
[ 0.968913] pcieport 0000:04:03.0: irq 43 for MSI/MSI-X
[ 0.969048] pcieport 0000:04:04.0: setting latency timer to 64
[ 0.969102] pcieport 0000:04:04.0: irq 44 for MSI/MSI-X
[ 0.969687] intel_idle: MWAIT substates: 0x21120
[ 0.969689] intel_idle: v0.4 model 0x2A
[ 0.969691] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.969848] ERST: Table is not found!
[ 0.969913] GHES: HEST is not enabled!
[ 0.970090] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 1.162451] Linux agpgart interface v0.103
[ 1.162763] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.163726] i8042: No controller found
[ 1.163977] mousedev: PS/2 mouse device common for all mice
[ 1.164223] rtc_cmos 00:06: RTC can wake from S4
[ 1.164602] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[ 1.164718] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.165065] cpuidle: using governor ladder
[ 1.165818] cpuidle: using governor menu
[ 1.166562] TCP cubic registered
[ 1.166627] NET: Registered protocol family 17
[ 1.166701] Registering the dns_resolver key type
[ 1.167149] PM: Hibernation image not present or could not be loaded.
[ 1.167157] registered taskstats version 1
[ 1.173667] rtc_cmos 00:06: setting system clock to 2011-10-20 22:29:25 UTC (1319149765)
[ 1.173889] Initializing network drop monitor service
[ 1.176260] Freeing unused kernel memory: 724k freed
[ 1.176459] Write protecting the kernel read-only data: 8192k
[ 1.184107] Freeing unused kernel memory: 1832k freed
[ 1.185593] Freeing unused kernel memory: 232k freed
[ 1.222859] udevd[86]: starting version 173
[ 1.314799] usbcore: registered new interface driver usbfs
[ 1.315143] usbcore: registered new interface driver hub
[ 1.318246] usbcore: registered new device driver usb
[ 1.320520] SCSI subsystem initialized
[ 1.321545] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.321786] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 1.321949] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 1.321957] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 1.322602] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 1.322800] ehci_hcd 0000:00:1a.7: debug port 2
[ 1.324140] libata version 3.00 loaded.
[ 1.326751] ehci_hcd 0000:00:1a.7: cache line size of 256 is not supported
[ 1.326802] ehci_hcd 0000:00:1a.7: irq 23, io mem 0xa0606c00
[ 1.338739] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 1.342941] hub 1-0:1.0: USB hub found
[ 1.343046] hub 1-0:1.0: 6 ports detected
[ 1.343502] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 1.343624] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 1.343630] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 1.343716] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 1.343846] ehci_hcd 0000:00:1d.7: debug port 2
[ 1.347790] ehci_hcd 0000:00:1d.7: cache line size of 256 is not supported
[ 1.347823] ehci_hcd 0000:00:1d.7: irq 22, io mem 0xa0606800
[ 1.358602] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.359061] hub 2-0:1.0: USB hub found
[ 1.359135] hub 2-0:1.0: 8 ports detected
[ 1.359447] ata_piix 0000:00:1f.2: version 2.13
[ 1.359473] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.359562] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[ 1.415613] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.511908] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 1.512932] scsi0 : ata_piix
[ 1.513395] scsi1 : ata_piix
[ 1.513875] ata1: SATA max UDMA/133 cmd 0x2168 ctl 0x217c bmdma 0x2060 irq 19
[ 1.513952] ata2: SATA max UDMA/133 cmd 0x2160 ctl 0x2178 bmdma 0x2068 irq 19
[ 1.514156] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 1.514250] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 1.514256] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 1.514379] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 1.514550] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00002140
[ 1.514992] hub 3-0:1.0: USB hub found
[ 1.515096] hub 3-0:1.0: 2 ports detected
[ 1.515363] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.515443] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 1.515448] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.515532] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 1.515648] uhci_hcd 0000:00:1d.0: irq 19, io base 0x000020e0
[ 1.516029] hub 4-0:1.0: USB hub found
[ 1.516103] hub 4-0:1.0: 2 ports detected
[ 1.648457] usb 1-1: new high speed USB device number 2 using ehci_hcd
[ 1.773190] hub 1-1:1.0: USB hub found
[ 1.773439] hub 1-1:1.0: 3 ports detected
[ 1.878299] usb 1-2: new high speed USB device number 3 using ehci_hcd
[ 1.945005] Refined TSC clocksource calibration: 1700.012 MHz.
[ 1.945101] Switching to clocksource tsc
[ 2.124818] usb 2-1: new high speed USB device number 2 using ehci_hcd
[ 2.249358] hub 2-1:1.0: USB hub found
[ 2.249527] hub 2-1:1.0: 2 ports detected
[ 2.328188] usb 1-1.1: new full speed USB device number 4 using ehci_hcd
[ 2.427483] hub 1-1.1:1.0: USB hub found
[ 2.427671] hub 1-1.1:1.0: 3 ports detected
[ 2.508084] usb 1-1.2: new full speed USB device number 5 using ehci_hcd
[ 2.534592] ata2.00: failed to resume link (SControl 0)
[ 2.625877] usbcore: registered new interface driver usbhid
[ 2.625955] usbhid: USB HID core driver
[ 2.638231] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.0/input/input0
[ 2.639063] apple 0003:05AC:024D.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input0
[ 2.694742] usb 2-1.1: new high speed USB device number 3 using ehci_hcd
[ 2.736895] apple 0003:05AC:024D.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input1
[ 2.854382] ata1.01: failed to resume link (SControl 0)
[ 2.874637] usb 2-1.2: new high speed USB device number 4 using ehci_hcd
[ 3.007689] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.007776] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 3.014736] ata1.00: ATA-8: APPLE SSD SM256C, AXM09A1Q, max UDMA/133
[ 3.014812] ata1.00: 490234752 sectors, multi 16: LBA48 NCQ (depth 0/32)
[ 3.021235] ata1.00: configured for UDMA/133
[ 3.022079] scsi 0:0:0:0: Direct-Access ATA APPLE SSD SM256C AXM0 PQ: 0 ANSI: 5
[ 3.051176] usb 1-1.1.1: new full speed USB device number 6 using ehci_hcd
[ 3.139208] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.1/1-1.1.1:1.0/input/input1
[ 3.139658] generic-usb 0003:05AC:820A.0003: input,hidraw2: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.1/input0
[ 3.204442] usb 1-1.1.2: new full speed USB device number 7 using ehci_hcd
[ 3.292459] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/input/input2
[ 3.293283] generic-usb 0003:05AC:820B.0004: input,hidraw3: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.2/input0
[ 3.370984] usb 1-1.1.3: new full speed USB device number 8 using ehci_hcd
[ 3.557318] ata2.01: failed to resume link (SControl 0)
[ 3.569018] ata2.00: SATA link down (SStatus 0 SControl 0)
[ 3.569101] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 3.579760] sd 0:0:0:0: [sda] 490234752 512-byte logical blocks: (251 GB/233 GiB)
[ 3.580066] sd 0:0:0:0: [sda] Write Protect is off
[ 3.580136] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.580192] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.586115] sda: sda1 sda2 sda3 sda4 sda5
[ 3.587353] sd 0:0:0:0: [sda] Attached SCSI disk
[ 3.798904] device-mapper: uevent: version 1.0.3
[ 3.799423] device-mapper: ioctl: 4.21.0-ioctl (2011-07-06) initialised: dm-devel@redhat.com
[ 9.705147] padlock_aes: VIA PadLock not detected.
[ 9.948112] JFS: nTxBlock = 8192, nTxLock = 65536
[ 10.391916] udevd[368]: starting version 173
[ 10.476167] agpgart-intel 0000:00:00.0: Intel Sandybridge Chipset
[ 10.476681] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 10.478947] agpgart-intel 0000:00:00.0: detected 65536K stolen memory
[ 10.481625] ACPI: acpi_idle yielding to intel_idle
[ 10.487065] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x90000000
[ 10.488635] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
[ 10.489546] ACPI: Lid Switch [LID0]
[ 10.489784] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
[ 10.489904] ACPI: Power Button [PWRB]
[ 10.497253] mei: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.497961] mei 0000:00:16.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 10.498048] mei 0000:00:16.0: setting latency timer to 64
[ 10.514037] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input5
[ 10.514136] ACPI: Sleep Button [SLPB]
[ 10.514668] ACPI: AC Adapter [ADP1] (on-line)
[ 10.517726] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[ 10.517819] ACPI: Power Button [PWRF]
[ 10.564844] iTCO_vendor_support: vendor-support=0
[ 10.577388] i801_smbus 0000:00:1f.3: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 10.582567] input: PC Speaker as /devices/platform/pcspkr/input/input7
[ 10.613432] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 10.628638] ACPI: Battery Slot [BAT0] (battery present)
[ 10.636099] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
[ 10.636372] iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
[ 10.641636] cfg80211: Calling CRDA to update world regulatory domain
[ 10.648790] brcmutil: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.652173] [drm] Initialized drm 1.1.0 20060810
[ 10.675639] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 10.675873] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[ 10.675960] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 10.693243] brcmsmac: module is from the staging directory, the quality is unknown, you have been warned.
[ 10.704015] brcmsmac 0000:02:00.0: bus 2 slot 0 func 0 irq 11
[ 10.704149] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 10.704243] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 10.729682] input: bcm5974 as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.2/input/input8
[ 10.731790] usbcore: registered new interface driver bcm5974
[ 10.732604] usbcore: registered new interface driver uas
[ 10.740161] applesmc: key=349 fan=1 temp=25 acc=0 lux=2 kbd=1
[ 10.742137] Initializing USB Mass Storage driver...
[ 10.742994] scsi2 : usb-storage 2-1.1:1.0
[ 10.744328] Linux media interface: v0.10
[ 10.744736] usb-storage 2-1.2:1.0: Quirks match for vid 1058 pid 0704: 8000
[ 10.745161] scsi3 : usb-storage 2-1.2:1.0
[ 10.752205] Registered led device: smc::kbd_backlight
[ 10.753310] Linux video capture interface: v2.00
[ 10.754397] usbcore: registered new interface driver usb-storage
[ 10.754487] USB Mass Storage support registered.
[ 10.757698] uvcvideo: Found UVC 1.00 device FaceTime Camera (Built-in) (05ac:850a)
[ 10.767084] input: FaceTime Camera (Built-in) as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2:1.0/input/input9
[ 10.767394] usbcore: registered new interface driver uvcvideo
[ 10.767477] USB Video Class driver (1.1.1)
[ 10.985179] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 11.228836] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
[ 11.229249] HDMI status: Codec=3 Pin=6 Presence_Detect=0 ELD_Valid=0
[ 11.229654] HDMI status: Codec=3 Pin=7 Presence_Detect=0 ELD_Valid=0
[ 11.234622] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 11.234876] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 11.235105] input: HDA Intel PCH HDMI/DP as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 11.235952] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 11.236035] i915 0000:00:02.0: setting latency timer to 64
[ 11.384448] i915 0000:00:02.0: irq 46 for MSI/MSI-X
[ 11.384460] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 11.384533] [drm] Driver supports precise vblank timestamp query.
[ 11.384721] [drm:intel_dsm_platform_mux_info] *ERROR* MUX INFO call failed
[ 11.385048] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 11.753747] scsi 3:0:0:0: Direct-Access WD 5000BMV External 1.75 PQ: 0 ANSI: 4
[ 11.754843] sd 3:0:0:0: Attached scsi generic sg1 type 0
[ 11.755479] sd 3:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 11.756842] sd 3:0:0:0: [sdb] Write Protect is off
[ 11.756911] sd 3:0:0:0: [sdb] Mode Sense: 23 00 00 00
[ 11.757465] sd 3:0:0:0: [sdb] No Caching mode page present
[ 11.757533] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[ 11.760738] sd 3:0:0:0: [sdb] No Caching mode page present
[ 11.760802] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[ 11.761625] sdb: unknown partition table
[ 11.763711] sd 3:0:0:0: [sdb] No Caching mode page present
[ 11.763775] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[ 11.763839] sd 3:0:0:0: [sdb] Attached SCSI disk
[ 11.764881] scsi 2:0:0:0: Direct-Access APPLE SD Card Reader 2.00 PQ: 0 ANSI: 0
[ 11.765644] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 11.767205] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[ 12.720129] fbcon: inteldrmfb (fb0) is primary device
[ 13.708979] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 13.897858] Console: switching to colour frame buffer device 180x56
[ 13.901770] fb0: inteldrmfb frame buffer device
[ 13.901797] drm: registered panic notifier
[ 13.933717] acpi device:0d: registered as cooling_device4
[ 13.934500] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input13
[ 13.935501] ACPI: Video Device [IGPU] (multi-head: yes rom: no post: no)
[ 13.935760] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 14.193534] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[ 15.015659] NET: Registered protocol family 10
[ 71.813695] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 71.813701] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 71.826233] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 71.826916] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 73.915918] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 73.915924] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 73.928372] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 73.928781] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 78.156442] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[ 78.158309] wlan0: authenticated
[ 78.162231] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[ 78.176749] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=7)
[ 78.176754] wlan0: associated
[ 78.177848] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 78.177857] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 78.177882] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 78.178360] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 86.682691] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[ 88.951094] wlan0: no IPv6 routers present
[ 457.569163] tun: Universal TUN/TAP device driver, 1.6
[ 457.569168] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1226.896028] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 1709.122015] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.122047] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123571] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123635] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123693] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123750] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123807] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123863] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123920] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.123977] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.124033] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.124092] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.124149] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 1709.124175] ieee80211 phy0: brcms_c_prec_enq_head: No where to go, prec == 4
[ 2398.268001] EXT4-fs (sda4): re-mounted. Opts: commit=0
[ 2398.574168] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 2399.651461] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2399.651514] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[ 2399.651525] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[ 2399.651698] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[ 2399.769383] cfg80211: Calling CRDA for country: X3
[ 2400.042139] PM: Syncing filesystems ... done.
[ 2400.076909] PM: Preparing system for mem sleep
[ 2401.497327] Freezing user space processes ... (elapsed 0.01 seconds) done.
[ 2401.511190] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[ 2401.524508] PM: Entering mem sleep
[ 2401.524568] Suspending console(s) (use no_console_suspend to debug)
[ 2401.526968] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 2401.528308] sd 0:0:0:0: [sda] Stopping disk
[ 2401.528640] brcmsmac 0000:02:00.0: PCI INT A disabled
[ 2401.528889] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[ 2401.529004] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[ 2401.564507] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[ 2401.577820] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[ 2401.734527] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[ 2402.798010] ata_piix 0000:00:1f.2: PCI INT B disabled
[ 2402.810491] PM: suspend of devices complete after 1285.713 msecs
[ 2402.850503] PM: late suspend of devices complete after 40.026 msecs
[ 2402.850817] ACPI: Preparing to enter system sleep state S3
[ 2402.877230] PM: Saving platform NVS memory
[ 2402.877957] Disabling non-boot CPUs ...
[ 2402.881789] CPU 1 is now offline
[ 2402.987004] CPU 2 is now offline
[ 2403.090262] CPU 3 is now offline
[ 2403.090265] lockdep: fixing up alternatives.
[ 2403.090983] Extended CMOS year: 2000
[ 2403.091430] ACPI: Low-level resume complete
[ 2403.091486] PM: Restoring platform NVS memory
[ 2403.091875] Extended CMOS year: 2000
[ 2403.091908] Enabling non-boot CPUs ...
[ 2403.098911] lockdep: fixing up alternatives.
[ 2403.098921] Booting Node 0 Processor 1 APIC 0x2
[ 2403.098923] smpboot cpu 1: start_ip = 9a000
[ 2403.110136] Calibrating delay loop (skipped) already calibrated this CPU
[ 2403.131403] Switched to NOHz mode on CPU #1
[ 2403.133982] NMI watchdog enabled, takes one hw-pmu counter.
[ 2403.137872] CPU1 is up
[ 2403.141452] lockdep: fixing up alternatives.
[ 2403.141458] Booting Node 0 Processor 2 APIC 0x1
[ 2403.141460] smpboot cpu 2: start_ip = 9a000
[ 2403.152571] Calibrating delay loop (skipped) already calibrated this CPU
[ 2403.173653] NMI watchdog enabled, takes one hw-pmu counter.
[ 2403.174234] CPU2 is up
[ 2403.174362] Switched to NOHz mode on CPU #2
[ 2403.175601] lockdep: fixing up alternatives.
[ 2403.175607] Booting Node 0 Processor 3 APIC 0x3
[ 2403.175609] smpboot cpu 3: start_ip = 9a000
[ 2403.186818] Calibrating delay loop (skipped) already calibrated this CPU
[ 2403.207863] Switched to NOHz mode on CPU #3
[ 2403.212854] NMI watchdog enabled, takes one hw-pmu counter.
[ 2403.216811] CPU3 is up
[ 2403.220663] ACPI: Waking up from system sleep state S3
[ 2403.721038] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 2403.721049] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[ 2403.721055] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[ 2403.721060] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[ 2403.721067] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 2403.721073] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 2403.721112] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.721128] i915 0000:00:02.0: restoring config space at offset 0x2 (was 0x3800009, writing 0x3000009)
[ 2403.721133] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[ 2403.721175] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.721205] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[ 2403.721248] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[ 2403.721269] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[ 2403.721290] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 2403.721334] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.721364] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[ 2403.721376] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 2403.721431] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.721461] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[ 2403.721468] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 2403.721478] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[ 2403.721536] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 2403.721555] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.721562] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[ 2403.721569] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[ 2403.721577] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[ 2403.721589] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 2403.721600] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 2403.721667] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[ 2403.721686] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.721694] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[ 2403.721701] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[ 2403.721708] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[ 2403.721720] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 2403.721730] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 2403.721781] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 2403.721802] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[ 2403.721823] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 2403.721865] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.721895] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[ 2403.721907] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 2403.722017] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 2403.722038] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[ 2403.722045] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[ 2403.722053] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[ 2403.722060] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[ 2403.722067] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[ 2403.722079] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[ 2403.722108] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[ 2403.722138] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[ 2403.722150] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[ 2403.722194] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.722200] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[ 2403.722205] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 2403.722211] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[ 2403.722219] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 2403.722226] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 2403.722293] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.722299] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[ 2403.722305] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 2403.722310] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[ 2403.722319] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 2403.722326] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 2403.722394] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.722400] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[ 2403.722406] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 2403.722412] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[ 2403.722420] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 2403.722427] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 2403.722496] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 2403.722501] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[ 2403.722507] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 2403.722513] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[ 2403.722521] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 2403.722529] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 2403.722594] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[ 2403.722617] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[ 2403.722623] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[ 2403.722629] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 2403.722637] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 2403.722765] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 2403.722823] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[ 2403.722836] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 2403.722853] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 2403.723298] PM: early resume of devices complete after 2.402 msecs
[ 2403.724408] i915 0000:00:02.0: setting latency timer to 64
[ 2403.724415] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 2403.724427] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 2403.724458] usb usb3: root hub lost power or was reset
[ 2403.724487] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2403.724498] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 2403.724587] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 2403.724600] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 2403.724685] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[ 2403.724771] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2403.724781] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 2403.724815] usb usb4: root hub lost power or was reset
[ 2403.724842] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 2403.724849] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2403.724859] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 2403.724862] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 2403.725011] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 2403.725024] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 2403.727431] sd 0:0:0:0: [sda] Starting disk
[ 2403.755329] bcm5974: bad trackpad package, length: 8
[ 2403.756326] bcm5974: bad trackpad package, length: 8
[ 2403.758324] bcm5974: bad trackpad package, length: 8
[ 2403.759324] bcm5974: bad trackpad package, length: 8
[ 2403.760294] bcm5974: bad trackpad package, length: 8
[ 2403.761329] bcm5974: bad trackpad package, length: 8
[ 2403.763307] bcm5974: bad trackpad package, length: 8
[ 2403.764292] bcm5974: bad trackpad package, length: 8
[ 2403.765287] bcm5974: bad trackpad package, length: 8
[ 2403.767287] bcm5974: bad trackpad package, length: 8
[ 2403.861115] Extended CMOS year: 2000
[ 2404.746855] ata2.00: failed to resume link (SControl 0)
[ 2405.066674] ata1.01: failed to resume link (SControl 0)
[ 2405.220005] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2405.220020] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 2405.226739] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[ 2405.233515] ata1.00: configured for UDMA/133
[ 2405.450694] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 2405.689883] PM: resume of devices complete after 1966.775 msecs
[ 2405.691447] PM: Finishing wakeup.
[ 2405.691450] Restarting tasks ...
[ 2405.692796] usb 2-1.2: USB disconnect, device number 4
[ 2405.696416] done.
[ 2405.730172] video LNXVIDEO:00: Restoring backlight state
[ 2405.769585] ata2.01: failed to resume link (SControl 0)
[ 2405.781246] ata2.00: SATA link down (SStatus 4 SControl 0)
[ 2405.781267] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 2408.613195] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 2408.613200] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 2408.627566] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2408.632253] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2410.669486] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 2410.669493] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 2410.683881] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2410.684307] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2429.922397] EXT4-fs (sda4): re-mounted. Opts: commit=0
[ 2479.308752] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 2479.308758] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 2479.323026] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2479.323427] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2481.407682] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 2481.407688] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 2481.421949] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2481.426600] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 2485.588757] wlan0: authenticate with 00:03:52:29:cf:40 (try 1)
[ 2485.590325] wlan0: authenticated
[ 2485.594233] wlan0: associate with 00:03:52:29:cf:40 (try 1)
[ 2485.596270] wlan0: RX AssocResp from 00:03:52:29:cf:40 (capab=0x431 status=0 aid=1)
[ 2485.596275] wlan0: associated
[ 2485.597168] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 2485.597175] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 2485.597200] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 2485.597562] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 2495.770749] wlan0: no IPv6 routers present
[ 2502.177289] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[ 3941.530655] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 5717.531594] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 6635.546190] EXT4-fs (sda4): re-mounted. Opts: commit=0
[ 6635.746248] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 6636.927834] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6636.927857] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[ 6636.927869] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[ 6636.927904] wlan0: deauthenticating from 00:03:52:29:cf:40 by local choice (reason=3)
[ 6637.018140] cfg80211: Calling CRDA to update world regulatory domain
[ 6637.272616] PM: Syncing filesystems ... done.
[ 6637.315959] PM: Preparing system for mem sleep
[ 6638.970582] Freezing user space processes ... (elapsed 0.01 seconds) done.
[ 6638.983452] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[ 6638.996781] PM: Entering mem sleep
[ 6638.996819] Suspending console(s) (use no_console_suspend to debug)
[ 6638.998851] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 6639.000182] sd 0:0:0:0: [sda] Stopping disk
[ 6639.000225] brcmsmac 0000:02:00.0: PCI INT A disabled
[ 6639.000489] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[ 6639.000771] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[ 6639.036754] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[ 6639.050078] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[ 6639.103515] do_IRQ: 0.169 No irq handler for vector (irq -1)
[ 6639.103520] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[ 6640.616805] ata_piix 0000:00:1f.2: PCI INT B disabled
[ 6640.629174] PM: suspend of devices complete after 1632.392 msecs
[ 6640.669256] PM: late suspend of devices complete after 40.093 msecs
[ 6640.669570] ACPI: Preparing to enter system sleep state S3
[ 6640.695903] PM: Saving platform NVS memory
[ 6640.696494] Disabling non-boot CPUs ...
[ 6640.699926] CPU 1 is now offline
[ 6640.703047] CPU 2 is now offline
[ 6640.705911] CPU 3 is now offline
[ 6640.705914] lockdep: fixing up alternatives.
[ 6640.706591] Extended CMOS year: 2000
[ 6640.706995] ACPI: Low-level resume complete
[ 6640.707049] PM: Restoring platform NVS memory
[ 6640.707363] Extended CMOS year: 2000
[ 6640.707383] Enabling non-boot CPUs ...
[ 6640.707559] lockdep: fixing up alternatives.
[ 6640.707564] Booting Node 0 Processor 1 APIC 0x2
[ 6640.707566] smpboot cpu 1: start_ip = 9a000
[ 6640.718775] Calibrating delay loop (skipped) already calibrated this CPU
[ 6640.740120] Switched to NOHz mode on CPU #1
[ 6640.747866] NMI watchdog enabled, takes one hw-pmu counter.
[ 6640.748361] CPU1 is up
[ 6640.757939] lockdep: fixing up alternatives.
[ 6640.757944] Booting Node 0 Processor 2 APIC 0x1
[ 6640.757946] smpboot cpu 2: start_ip = 9a000
[ 6640.769057] Calibrating delay loop (skipped) already calibrated this CPU
[ 6640.789756] Switched to NOHz mode on CPU #2
[ 6640.790259] NMI watchdog enabled, takes one hw-pmu counter.
[ 6640.791661] CPU2 is up
[ 6640.795603] lockdep: fixing up alternatives.
[ 6640.795609] Booting Node 0 Processor 3 APIC 0x3
[ 6640.795612] smpboot cpu 3: start_ip = 9a000
[ 6640.806753] Calibrating delay loop (skipped) already calibrated this CPU
[ 6640.829947] Switched to NOHz mode on CPU #3
[ 6640.832420] NMI watchdog enabled, takes one hw-pmu counter.
[ 6640.834384] CPU3 is up
[ 6640.837755] ACPI: Waking up from system sleep state S3
[ 6641.339760] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 6641.339771] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[ 6641.339777] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[ 6641.339782] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x20003030)
[ 6641.339789] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 6641.339795] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 6641.339834] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.339851] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[ 6641.339893] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.339923] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[ 6641.339967] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[ 6641.339988] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[ 6641.340009] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 6641.340052] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.340083] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[ 6641.340094] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 6641.340149] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.340180] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[ 6641.340187] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 6641.340197] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[ 6641.340257] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[ 6641.340276] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.340283] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[ 6641.340290] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[ 6641.340298] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[ 6641.340310] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 6641.340320] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 6641.340388] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[ 6641.340408] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.340415] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[ 6641.340423] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[ 6641.340430] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[ 6641.340443] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[ 6641.340453] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6641.340504] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 6641.340525] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[ 6641.340547] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[ 6641.340589] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.340619] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[ 6641.340631] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[ 6641.340741] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[ 6641.340762] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[ 6641.340770] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[ 6641.340777] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[ 6641.340784] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[ 6641.340791] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[ 6641.340803] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[ 6641.340832] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[ 6641.340862] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[ 6641.340874] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[ 6641.340918] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.340924] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[ 6641.340929] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 6641.340935] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[ 6641.340943] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 6641.340950] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 6641.341017] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.341023] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[ 6641.341029] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 6641.341034] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[ 6641.341043] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 6641.341050] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[ 6641.341119] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.341124] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[ 6641.341130] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 6641.341136] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[ 6641.341144] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 6641.341151] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 6641.341220] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[ 6641.341225] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[ 6641.341231] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[ 6641.341237] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[ 6641.341245] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[ 6641.341252] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[ 6641.341318] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[ 6641.341341] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[ 6641.341347] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[ 6641.341353] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 6641.341361] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[ 6641.341489] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[ 6641.341549] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[ 6641.341561] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[ 6641.341578] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[ 6641.342011] PM: early resume of devices complete after 2.393 msecs
[ 6641.343067] i915 0000:00:02.0: setting latency timer to 64
[ 6641.343084] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 6641.343096] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 6641.343127] usb usb3: root hub lost power or was reset
[ 6641.343153] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 6641.343164] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 6641.343249] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 6641.343260] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 6641.343337] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[ 6641.343412] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 6641.343422] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 6641.343452] usb usb4: root hub lost power or was reset
[ 6641.343475] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 6641.343485] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 6641.343578] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 6641.343586] ata_piix 0000:00:1f.2: setting latency timer to 64
[ 6641.343687] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 6641.343702] brcmsmac 0000:02:00.0: setting latency timer to 64
[ 6641.345371] sd 0:0:0:0: [sda] Starting disk
[ 6641.375933] bcm5974: bad trackpad package, length: 8
[ 6641.407956] bcm5974: bad trackpad package, length: 8
[ 6641.408921] bcm5974: bad trackpad package, length: 8
[ 6641.409957] bcm5974: bad trackpad package, length: 8
[ 6641.411902] bcm5974: bad trackpad package, length: 8
[ 6641.412983] bcm5974: bad trackpad package, length: 8
[ 6641.489812] Extended CMOS year: 2000
[ 6642.365583] ata2.00: failed to resume link (SControl 0)
[ 6642.685429] ata1.01: failed to resume link (SControl 0)
[ 6642.838724] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 6642.838739] ata1.01: SATA link down (SStatus 0 SControl 0)
[ 6642.845459] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[ 6642.852224] ata1.00: configured for UDMA/133
[ 6643.109398] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[ 6643.132853] PM: resume of devices complete after 1790.925 msecs
[ 6643.134475] PM: Finishing wakeup.
[ 6643.134477] Restarting tasks ... done.
[ 6643.175179] video LNXVIDEO:00: Restoring backlight state
[ 6643.388277] ata2.01: failed to resume link (SControl 0)
[ 6643.399832] ata2.00: SATA link down (SStatus 4 SControl 0)
[ 6643.399852] ata2.01: SATA link down (SStatus 0 SControl 0)
[ 6645.449846] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 6645.449852] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 6645.464194] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6645.464597] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6647.517572] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 6647.517578] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 6647.531782] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6647.532182] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6651.710025] wlan0: direct probe to 00:03:52:e3:0e:10 (try 1/3)
[ 6651.906728] wlan0: direct probe to 00:03:52:e3:0e:10 (try 2/3)
[ 6651.907594] wlan0: direct probe responded
[ 6651.936709] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[ 6651.937352] wlan0: authenticated
[ 6651.961348] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[ 6651.961906] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=2)
[ 6651.961909] wlan0: associated
[ 6651.962617] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6651.962623] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 6651.962648] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 6651.963011] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 6662.663784] wlan0: no IPv6 routers present
[ 6665.673461] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6665.673484] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[ 6665.673496] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[ 6665.673505] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[ 6665.695554] cfg80211: Calling CRDA to update world regulatory domain
[ 6666.768973] EXT4-fs (sda4): re-mounted. Opts: commit=0
[ 6694.068569] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 6694.068575] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 6694.092054] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6694.096756] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6696.133810] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[ 6696.133816] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[ 6696.157291] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6696.161966] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6700.240643] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[ 6700.241301] wlan0: authenticated
[ 6700.241481] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[ 6700.242303] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=2)
[ 6700.242307] wlan0: associated
[ 6700.243017] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[ 6700.243022] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[ 6700.243048] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[ 6700.243407] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 6710.636014] wlan0: no IPv6 routers present
[ 6716.552808] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[10184.374166] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[10825.122904] EXT4-fs (sda4): re-mounted. Opts: commit=0
[10825.322862] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[10826.402277] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[10826.402292] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[10826.402305] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[10826.402314] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[10826.547951] cfg80211: Calling CRDA to update world regulatory domain
[10826.839684] PM: Syncing filesystems ... done.
[10826.889158] PM: Preparing system for mem sleep
[10828.507165] Freezing user space processes ... (elapsed 0.01 seconds) done.
[10828.520036] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[10828.533364] PM: Entering mem sleep
[10828.533402] Suspending console(s) (use no_console_suspend to debug)
[10828.535447] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[10828.536635] brcmsmac 0000:02:00.0: PCI INT A disabled
[10828.536794] sd 0:0:0:0: [sda] Stopping disk
[10828.537018] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[10828.537256] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[10828.573339] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[10828.586655] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[10828.640093] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[10828.640099] do_IRQ: 0.177 No irq handler for vector (irq -1)
[10830.169574] ata_piix 0000:00:1f.2: PCI INT B disabled
[10830.182474] PM: suspend of devices complete after 1649.095 msecs
[10830.222506] PM: late suspend of devices complete after 40.057 msecs
[10830.222820] ACPI: Preparing to enter system sleep state S3
[10830.249146] PM: Saving platform NVS memory
[10830.249760] Disabling non-boot CPUs ...
[10830.253035] CPU 1 is now offline
[10830.256412] CPU 2 is now offline
[10830.259101] CPU 3 is now offline
[10830.259104] lockdep: fixing up alternatives.
[10830.259728] Extended CMOS year: 2000
[10830.260134] ACPI: Low-level resume complete
[10830.260188] PM: Restoring platform NVS memory
[10830.260502] Extended CMOS year: 2000
[10830.260522] Enabling non-boot CPUs ...
[10830.267485] lockdep: fixing up alternatives.
[10830.267491] Booting Node 0 Processor 1 APIC 0x2
[10830.267493] smpboot cpu 1: start_ip = 9a000
[10830.278702] Calibrating delay loop (skipped) already calibrated this CPU
[10830.300013] Switched to NOHz mode on CPU #1
[10830.306263] NMI watchdog enabled, takes one hw-pmu counter.
[10830.310177] CPU1 is up
[10830.320773] lockdep: fixing up alternatives.
[10830.320778] Booting Node 0 Processor 2 APIC 0x1
[10830.320780] smpboot cpu 2: start_ip = 9a000
[10830.331891] Calibrating delay loop (skipped) already calibrated this CPU
[10830.352997] Switched to NOHz mode on CPU #2
[10830.353040] NMI watchdog enabled, takes one hw-pmu counter.
[10830.354540] CPU2 is up
[10830.358463] lockdep: fixing up alternatives.
[10830.358469] Booting Node 0 Processor 3 APIC 0x3
[10830.358471] smpboot cpu 3: start_ip = 9a000
[10830.369681] Calibrating delay loop (skipped) already calibrated this CPU
[10830.393188] Switched to NOHz mode on CPU #3
[10830.398631] NMI watchdog enabled, takes one hw-pmu counter.
[10830.400673] CPU3 is up
[10830.404088] ACPI: Waking up from system sleep state S3
[10830.889671] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[10830.889682] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[10830.889687] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[10830.889692] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[10830.889700] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[10830.889706] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[10830.889745] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.889762] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[10830.889804] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.889834] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[10830.889877] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[10830.889898] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[10830.889919] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[10830.889963] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.889993] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[10830.890005] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[10830.890060] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.890090] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[10830.890098] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[10830.890107] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[10830.890166] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[10830.890186] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.890194] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[10830.890201] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[10830.890208] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[10830.890220] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[10830.890230] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[10830.890298] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[10830.890317] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.890324] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[10830.890332] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[10830.890339] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[10830.890351] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[10830.890361] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[10830.890411] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[10830.890432] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[10830.890453] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[10830.890496] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.890526] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[10830.890538] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[10830.890648] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[10830.890669] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[10830.890676] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[10830.890683] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[10830.890690] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[10830.890697] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[10830.890709] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[10830.890739] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[10830.890768] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[10830.890780] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[10830.890824] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.890830] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[10830.890835] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[10830.890841] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[10830.890849] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[10830.890856] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[10830.890923] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.890929] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[10830.890935] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[10830.890940] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[10830.890949] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[10830.890956] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[10830.891024] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.891030] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[10830.891035] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[10830.891041] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[10830.891049] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[10830.891057] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[10830.891125] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[10830.891130] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[10830.891136] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[10830.891142] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[10830.891150] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[10830.891157] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[10830.891222] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[10830.891245] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[10830.891251] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[10830.891257] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[10830.891265] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[10830.891393] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[10830.891452] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[10830.891465] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[10830.891482] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[10830.891909] PM: early resume of devices complete after 2.378 msecs
[10830.892908] i915 0000:00:02.0: setting latency timer to 64
[10830.892941] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[10830.892956] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[10830.892990] usb usb3: root hub lost power or was reset
[10830.893003] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[10830.893017] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[10830.893027] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[10830.893039] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[10830.893118] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[10830.893125] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[10830.893140] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[10830.893182] usb usb4: root hub lost power or was reset
[10830.893202] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[10830.893215] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[10830.893219] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[10830.893229] ata_piix 0000:00:1f.2: setting latency timer to 64
[10830.893347] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[10830.893361] brcmsmac 0000:02:00.0: setting latency timer to 64
[10830.895138] sd 0:0:0:0: [sda] Starting disk
[10831.029074] Extended CMOS year: 2000
[10831.915499] ata2.00: failed to resume link (SControl 0)
[10832.235336] ata1.01: failed to resume link (SControl 0)
[10832.388621] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[10832.388635] ata1.01: SATA link down (SStatus 0 SControl 0)
[10832.395330] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[10832.405510] ata1.00: configured for UDMA/133
[10832.572696] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[10832.596143] PM: resume of devices complete after 1704.293 msecs
[10832.597771] PM: Finishing wakeup.
[10832.597773] Restarting tasks ... done.
[10832.657655] video LNXVIDEO:00: Restoring backlight state
[10832.938252] ata2.01: failed to resume link (SControl 0)
[10832.949862] ata2.00: SATA link down (SStatus 4 SControl 0)
[10832.949882] ata2.01: SATA link down (SStatus 0 SControl 0)
[10834.935675] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[10834.935680] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[10834.959246] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[10834.959649] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[10837.024502] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[10837.024508] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[10837.047860] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[10837.048259] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[10841.152043] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[10841.152672] wlan0: authenticated
[10841.152851] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[10841.153645] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=3)
[10841.153648] wlan0: associated
[10841.154364] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[10841.154370] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[10841.154396] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[10841.154761] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[10855.412118] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[10855.545493] EXT4-fs (sda4): re-mounted. Opts: commit=0
[13071.070367] EXT4-fs (sda4): re-mounted. Opts: commit=0
[13071.275551] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[13072.451467] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[13072.451483] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[13072.451495] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[13072.451504] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[13072.570669] cfg80211: Calling CRDA to update world regulatory domain
[13072.839560] PM: Syncing filesystems ... done.
[13072.890829] PM: Preparing system for mem sleep
[13074.523215] Freezing user space processes ... (elapsed 0.01 seconds) done.
[13074.536085] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[13074.549413] PM: Entering mem sleep
[13074.549449] Suspending console(s) (use no_console_suspend to debug)
[13074.551518] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[13074.552793] sd 0:0:0:0: [sda] Stopping disk
[13074.553724] brcmsmac 0000:02:00.0: PCI INT A disabled
[13074.553789] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[13074.553904] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[13074.589388] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[13074.602711] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[13074.656124] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[13076.189744] ata_piix 0000:00:1f.2: PCI INT B disabled
[13076.201836] PM: suspend of devices complete after 1652.449 msecs
[13076.241871] PM: late suspend of devices complete after 40.043 msecs
[13076.242185] ACPI: Preparing to enter system sleep state S3
[13076.268518] PM: Saving platform NVS memory
[13076.269107] Disabling non-boot CPUs ...
[13076.272587] CPU 1 is now offline
[13076.276229] CPU 2 is now offline
[13076.278940] CPU 3 is now offline
[13076.278943] lockdep: fixing up alternatives.
[13076.279586] Extended CMOS year: 2000
[13076.279992] ACPI: Low-level resume complete
[13076.280046] PM: Restoring platform NVS memory
[13076.280358] Extended CMOS year: 2000
[13076.280378] Enabling non-boot CPUs ...
[13076.287337] lockdep: fixing up alternatives.
[13076.287342] Booting Node 0 Processor 1 APIC 0x2
[13076.287344] smpboot cpu 1: start_ip = 9a000
[13076.298553] Calibrating delay loop (skipped) already calibrated this CPU
[13076.322607] Switched to NOHz mode on CPU #1
[13076.325407] NMI watchdog enabled, takes one hw-pmu counter.
[13076.329324] CPU1 is up
[13076.340385] lockdep: fixing up alternatives.
[13076.340390] Booting Node 0 Processor 2 APIC 0x1
[13076.340391] smpboot cpu 2: start_ip = 9a000
[13076.351503] Calibrating delay loop (skipped) already calibrated this CPU
[13076.372369] Switched to NOHz mode on CPU #2
[13076.372708] NMI watchdog enabled, takes one hw-pmu counter.
[13076.374137] CPU2 is up
[13076.377927] lockdep: fixing up alternatives.
[13076.377934] Booting Node 0 Processor 3 APIC 0x3
[13076.377936] smpboot cpu 3: start_ip = 9a000
[13076.389147] Calibrating delay loop (skipped) already calibrated this CPU
[13076.412555] Switched to NOHz mode on CPU #3
[13076.414509] NMI watchdog enabled, takes one hw-pmu counter.
[13076.416227] CPU3 is up
[13076.419903] ACPI: Waking up from system sleep state S3
[13076.905722] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[13076.905734] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[13076.905739] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[13076.905744] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x20003030)
[13076.905752] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[13076.905758] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[13076.905796] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.905814] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[13076.905856] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.905886] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[13076.905929] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[13076.905951] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[13076.905972] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[13076.906015] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.906046] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[13076.906057] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[13076.906112] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.906142] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[13076.906150] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[13076.906159] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[13076.906218] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[13076.906238] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.906245] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[13076.906253] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[13076.906260] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[13076.906272] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[13076.906282] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[13076.906350] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[13076.906370] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.906378] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[13076.906385] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[13076.906393] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[13076.906405] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[13076.906415] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[13076.906466] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[13076.906488] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[13076.906508] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[13076.906551] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.906581] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[13076.906593] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[13076.906703] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[13076.906724] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[13076.906731] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[13076.906739] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[13076.906746] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[13076.906753] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[13076.906765] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[13076.906794] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[13076.906825] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[13076.906836] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[13076.906880] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.906886] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[13076.906892] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[13076.906897] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[13076.906905] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[13076.906912] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[13076.906980] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.906985] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[13076.906991] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[13076.906997] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[13076.907005] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[13076.907012] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[13076.907080] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.907086] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[13076.907092] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[13076.907097] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[13076.907106] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[13076.907113] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[13076.907181] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[13076.907187] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[13076.907193] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[13076.907198] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[13076.907207] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[13076.907214] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[13076.907279] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[13076.907302] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[13076.907308] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[13076.907314] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[13076.907322] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[13076.907450] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[13076.907509] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[13076.907522] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[13076.907539] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[13076.907966] PM: early resume of devices complete after 2.385 msecs
[13076.908962] i915 0000:00:02.0: setting latency timer to 64
[13076.909600] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[13076.909611] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[13076.909642] usb usb3: root hub lost power or was reset
[13076.909697] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[13076.909703] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[13076.909709] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[13076.909719] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[13076.909798] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[13076.909812] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[13076.909816] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[13076.909849] usb usb4: root hub lost power or was reset
[13076.909869] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[13076.909879] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[13076.909897] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[13076.909905] ata_piix 0000:00:1f.2: setting latency timer to 64
[13076.910006] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[13076.910020] brcmsmac 0000:02:00.0: setting latency timer to 64
[13076.911788] sd 0:0:0:0: [sda] Starting disk
[13077.064755] Extended CMOS year: 2000
[13077.931576] ata2.00: failed to resume link (SControl 0)
[13078.251361] ata1.01: failed to resume link (SControl 0)
[13078.404671] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[13078.404685] ata1.01: SATA link down (SStatus 0 SControl 0)
[13078.411416] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[13078.415558] ata1.00: configured for UDMA/133
[13078.615388] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[13078.638836] PM: resume of devices complete after 1730.949 msecs
[13078.640441] PM: Finishing wakeup.
[13078.640444] Restarting tasks ... done.
[13078.690007] video LNXVIDEO:00: Restoring backlight state
[13078.954285] ata2.01: failed to resume link (SControl 0)
[13078.966134] ata2.00: SATA link down (SStatus 4 SControl 0)
[13078.966154] ata2.01: SATA link down (SStatus 0 SControl 0)
[13080.981860] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[13080.981866] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[13081.005342] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[13081.005748] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[13083.070670] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[13083.070677] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[13083.094024] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[13083.094425] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[13087.194911] wlan0: authenticate with 00:03:52:e3:0e:10 (try 1)
[13087.195547] wlan0: authenticated
[13087.195708] wlan0: associate with 00:03:52:e3:0e:10 (try 1)
[13087.196234] wlan0: RX AssocResp from 00:03:52:e3:0e:10 (capab=0x11 status=0 aid=3)
[13087.196238] wlan0: associated
[13087.197088] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[13087.197094] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[13087.197119] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[13087.197485] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[13095.911334] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[13096.043975] EXT4-fs (sda4): re-mounted. Opts: commit=0
[14906.512927] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[16791.871993] EXT4-fs (sda4): re-mounted. Opts: commit=0
[16792.077133] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[16793.155308] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[16793.155323] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[16793.155336] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[16793.155345] wlan0: deauthenticating from 00:03:52:e3:0e:10 by local choice (reason=3)
[16793.222263] cfg80211: Calling CRDA to update world regulatory domain
[16793.485688] PM: Syncing filesystems ... done.
[16793.546655] PM: Preparing system for mem sleep
[16795.178115] Freezing user space processes ... (elapsed 0.01 seconds) done.
[16795.191016] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[16795.204344] PM: Entering mem sleep
[16795.204380] Suspending console(s) (use no_console_suspend to debug)
[16795.206712] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[16795.207965] brcmsmac 0000:02:00.0: PCI INT A disabled
[16795.207994] sd 0:0:0:0: [sda] Stopping disk
[16795.208280] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[16795.208626] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[16795.244314] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[16795.257639] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[16795.311058] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[16796.746863] ata_piix 0000:00:1f.2: PCI INT B disabled
[16796.760144] PM: suspend of devices complete after 1555.732 msecs
[16796.800205] PM: late suspend of devices complete after 40.083 msecs
[16796.800520] ACPI: Preparing to enter system sleep state S3
[16796.826843] PM: Saving platform NVS memory
[16796.827456] Disabling non-boot CPUs ...
[16796.831022] CPU 1 is now offline
[16796.834097] CPU 2 is now offline
[16796.836870] CPU 3 is now offline
[16796.836873] lockdep: fixing up alternatives.
[16796.837563] Extended CMOS year: 2000
[16796.837968] ACPI: Low-level resume complete
[16796.838021] PM: Restoring platform NVS memory
[16796.838333] Extended CMOS year: 2000
[16796.838354] Enabling non-boot CPUs ...
[16796.845287] lockdep: fixing up alternatives.
[16796.845293] Booting Node 0 Processor 1 APIC 0x2
[16796.845295] smpboot cpu 1: start_ip = 9a000
[16796.856506] Calibrating delay loop (skipped) already calibrated this CPU
[16796.877587] Switched to NOHz mode on CPU #1
[16796.882477] NMI watchdog enabled, takes one hw-pmu counter.
[16796.882974] CPU1 is up
[16796.892439] lockdep: fixing up alternatives.
[16796.892444] Booting Node 0 Processor 2 APIC 0x1
[16796.892445] smpboot cpu 2: start_ip = 9a000
[16796.903556] Calibrating delay loop (skipped) already calibrated this CPU
[16796.924028] Switched to NOHz mode on CPU #2
[16796.924694] NMI watchdog enabled, takes one hw-pmu counter.
[16796.925986] CPU2 is up
[16796.929923] lockdep: fixing up alternatives.
[16796.929930] Booting Node 0 Processor 3 APIC 0x3
[16796.929932] smpboot cpu 3: start_ip = 9a000
[16796.941042] Calibrating delay loop (skipped) already calibrated this CPU
[16796.964215] Switched to NOHz mode on CPU #3
[16796.968840] NMI watchdog enabled, takes one hw-pmu counter.
[16796.970471] CPU3 is up
[16796.974156] ACPI: Waking up from system sleep state S3
[16797.477365] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[16797.477377] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[16797.477382] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[16797.477387] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[16797.477395] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[16797.477401] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[16797.477439] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.477456] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[16797.477499] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.477529] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[16797.477572] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[16797.477593] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[16797.477614] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[16797.477657] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.477688] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[16797.477700] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[16797.477754] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.477785] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[16797.477792] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[16797.477802] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[16797.477860] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[16797.477879] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.477887] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[16797.477895] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[16797.477902] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[16797.477915] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[16797.477924] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[16797.477994] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[16797.478013] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.478021] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[16797.478029] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[16797.478037] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[16797.478048] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[16797.478058] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[16797.478110] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[16797.478132] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[16797.478153] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[16797.478195] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.478226] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[16797.478237] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[16797.478347] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[16797.478368] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[16797.478375] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[16797.478382] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[16797.478390] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[16797.478397] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[16797.478409] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[16797.478438] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[16797.478469] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[16797.478480] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[16797.478525] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.478530] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[16797.478536] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[16797.478541] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[16797.478550] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[16797.478557] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[16797.478624] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.478630] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[16797.478635] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[16797.478641] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[16797.478649] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[16797.478656] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[16797.478724] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.478730] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[16797.478736] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[16797.478741] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[16797.478750] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[16797.478757] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[16797.478826] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[16797.478831] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[16797.478837] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[16797.478843] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[16797.478851] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[16797.478858] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[16797.478923] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[16797.478946] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[16797.478952] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[16797.478959] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[16797.478967] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[16797.479094] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[16797.479153] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[16797.479165] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[16797.479183] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[16797.479614] PM: early resume of devices complete after 2.389 msecs
[16797.480618] i915 0000:00:02.0: setting latency timer to 64
[16797.481240] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[16797.481251] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[16797.481285] usb usb3: root hub lost power or was reset
[16797.481310] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[16797.481321] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[16797.481343] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[16797.481356] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[16797.481388] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[16797.481402] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[16797.481416] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[16797.481432] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[16797.481445] usb usb4: root hub lost power or was reset
[16797.481458] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[16797.481482] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[16797.481492] ata_piix 0000:00:1f.2: setting latency timer to 64
[16797.481824] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[16797.481838] brcmsmac 0000:02:00.0: setting latency timer to 64
[16797.483354] sd 0:0:0:0: [sda] Starting disk
[16797.512900] bcm5974: bad trackpad package, length: 8
[16797.531887] bcm5974: bad trackpad package, length: 8
[16797.532888] bcm5974: bad trackpad package, length: 8
[16797.533886] bcm5974: bad trackpad package, length: 8
[16797.534885] bcm5974: bad trackpad package, length: 8
[16797.536890] bcm5974: bad trackpad package, length: 8
[16797.537941] bcm5974: bad trackpad package, length: 8
[16797.538889] bcm5974: bad trackpad package, length: 8
[16797.540943] bcm5974: bad trackpad package, length: 8
[16797.571870] bcm5974: bad trackpad package, length: 8
[16797.647080] Extended CMOS year: 2000
[16798.503185] ata2.00: failed to resume link (SControl 0)
[16798.822998] ata1.01: failed to resume link (SControl 0)
[16798.976308] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[16798.976322] ata1.01: SATA link down (SStatus 0 SControl 0)
[16798.983075] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[16798.989833] ata1.00: configured for UDMA/133
[16799.250332] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[16799.273817] PM: resume of devices complete after 1794.308 msecs
[16799.275439] PM: Finishing wakeup.
[16799.275441] Restarting tasks ... done.
[16799.313394] video LNXVIDEO:00: Restoring backlight state
[16799.525886] ata2.01: failed to resume link (SControl 0)
[16799.537443] ata2.00: SATA link down (SStatus 4 SControl 0)
[16799.537464] ata2.01: SATA link down (SStatus 0 SControl 0)
[16801.597664] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[16801.597670] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[16801.621165] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[16801.625828] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[16803.685594] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[16803.685600] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[16803.708944] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[16803.709341] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[16822.953984] EXT4-fs (sda4): re-mounted. Opts: commit=600
[17141.367140] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[17141.367146] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[17141.390641] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[17141.391042] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[17145.673634] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[17145.673639] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[17145.696969] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[17145.697376] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[17147.802217] wlan0: direct probe to 00:18:39:50:07:f3 (try 1/3)
[17148.000690] wlan0: direct probe to 00:18:39:50:07:f3 (try 2/3)
[17148.003558] wlan0: direct probe responded
[17148.040611] wlan0: authenticate with 00:18:39:50:07:f3 (try 1)
[17148.042269] wlan0: authenticated
[17148.066574] wlan0: associate with 00:18:39:50:07:f3 (try 1)
[17148.068771] wlan0: RX AssocResp from 00:18:39:50:07:f3 (capab=0x421 status=0 aid=4)
[17148.068776] wlan0: associated
[17148.069642] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[17148.069647] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[17148.069673] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[17148.070037] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[17152.759135] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[17152.759166] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[17152.759178] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[17152.759201] wlan0: deauthenticating from 00:18:39:50:07:f3 by local choice (reason=3)
[17152.798037] cfg80211: Calling CRDA to update world regulatory domain
[17154.797077] wlan0: authenticate with 00:18:39:50:07:f3 (try 1)
[17154.798738] wlan0: authenticated
[17154.798909] wlan0: associate with 00:18:39:50:07:f3 (try 1)
[17154.801148] wlan0: RX ReassocResp from 00:18:39:50:07:f3 (capab=0x421 status=0 aid=4)
[17154.801152] wlan0: associated
[17154.802031] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[17154.802037] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[17154.802061] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[17158.397953] wlan0: no IPv6 routers present
[17163.705160] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[18120.611269] EXT4-fs (sda4): re-mounted. Opts: commit=0
[18121.113590] PM: Syncing filesystems ... done.
[18121.195285] PM: Preparing system for mem sleep
[18122.806313] Freezing user space processes ... (elapsed 0.01 seconds) done.
[18122.819186] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[18122.832514] PM: Entering mem sleep
[18122.832550] Suspending console(s) (use no_console_suspend to debug)
[18122.837548] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[18122.838864] sd 0:0:0:0: [sda] Stopping disk
[18122.839030] brcmsmac 0000:02:00.0: PCI INT A disabled
[18122.839128] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[18122.839446] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[18122.875821] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[18122.889152] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[18122.942573] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[18124.472264] ata_piix 0000:00:1f.2: PCI INT B disabled
[18124.484917] PM: suspend of devices complete after 1652.406 msecs
[18124.524980] PM: late suspend of devices complete after 40.070 msecs
[18124.525294] ACPI: Preparing to enter system sleep state S3
[18124.551627] PM: Saving platform NVS memory
[18124.552221] Disabling non-boot CPUs ...
[18124.555708] CPU 1 is now offline
[18124.558870] CPU 2 is now offline
[18124.561550] CPU 3 is now offline
[18124.561553] lockdep: fixing up alternatives.
[18124.562214] Extended CMOS year: 2000
[18124.562619] ACPI: Low-level resume complete
[18124.562672] PM: Restoring platform NVS memory
[18124.562985] Extended CMOS year: 2000
[18124.563005] Enabling non-boot CPUs ...
[18124.569968] lockdep: fixing up alternatives.
[18124.569974] Booting Node 0 Processor 1 APIC 0x2
[18124.569976] smpboot cpu 1: start_ip = 9a000
[18124.581185] Calibrating delay loop (skipped) already calibrated this CPU
[18124.605707] Switched to NOHz mode on CPU #1
[18124.606848] NMI watchdog enabled, takes one hw-pmu counter.
[18124.610682] CPU1 is up
[18124.617804] lockdep: fixing up alternatives.
[18124.617809] Booting Node 0 Processor 2 APIC 0x1
[18124.617811] smpboot cpu 2: start_ip = 9a000
[18124.628921] Calibrating delay loop (skipped) already calibrated this CPU
[18124.650089] NMI watchdog enabled, takes one hw-pmu counter.
[18124.651346] CPU2 is up
[18124.652153] Switched to NOHz mode on CPU #2
[18124.655140] lockdep: fixing up alternatives.
[18124.655147] Booting Node 0 Processor 3 APIC 0x3
[18124.655149] smpboot cpu 3: start_ip = 9a000
[18124.666359] Calibrating delay loop (skipped) already calibrated this CPU
[18124.689008] Switched to NOHz mode on CPU #3
[18124.691688] NMI watchdog enabled, takes one hw-pmu counter.
[18124.693826] CPU3 is up
[18124.697283] ACPI: Waking up from system sleep state S3
[18125.198822] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[18125.198834] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[18125.198839] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[18125.198844] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x20003030)
[18125.198852] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18125.198857] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18125.198896] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.198913] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[18125.198955] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.198985] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[18125.199029] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[18125.199050] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[18125.199071] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[18125.199114] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.199144] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[18125.199156] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[18125.199211] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.199241] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[18125.199249] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18125.199258] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[18125.199317] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[18125.199337] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.199344] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[18125.199352] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[18125.199359] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[18125.199371] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18125.199381] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[18125.199452] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[18125.199472] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.199479] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[18125.199487] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[18125.199494] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[18125.199506] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18125.199516] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[18125.199568] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[18125.199589] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[18125.199611] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[18125.199652] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.199683] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[18125.199695] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[18125.199804] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[18125.199825] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[18125.199833] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[18125.199840] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[18125.199847] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[18125.199854] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[18125.199866] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[18125.199895] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[18125.199926] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[18125.199938] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[18125.199982] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.199987] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[18125.199993] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18125.199998] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[18125.200007] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18125.200014] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18125.200081] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.200086] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[18125.200092] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18125.200098] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[18125.200106] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18125.200113] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18125.200181] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.200187] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[18125.200192] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18125.200198] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[18125.200207] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18125.200214] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[18125.200282] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18125.200287] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[18125.200293] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18125.200299] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[18125.200307] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18125.200314] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[18125.200379] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[18125.200402] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[18125.200408] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[18125.200414] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18125.200422] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[18125.200550] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18125.200609] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[18125.200622] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18125.200639] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[18125.201066] PM: early resume of devices complete after 2.384 msecs
[18125.202062] i915 0000:00:02.0: setting latency timer to 64
[18125.202160] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[18125.202170] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[18125.202202] usb usb3: root hub lost power or was reset
[18125.202241] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[18125.202251] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[18125.202345] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[18125.202355] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[18125.202425] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[18125.202512] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[18125.202523] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[18125.202552] usb usb4: root hub lost power or was reset
[18125.202579] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[18125.202588] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[18125.202697] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[18125.202704] ata_piix 0000:00:1f.2: setting latency timer to 64
[18125.202854] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[18125.202867] brcmsmac 0000:02:00.0: setting latency timer to 64
[18125.204498] sd 0:0:0:0: [sda] Starting disk
[18125.233282] bcm5974: bad trackpad package, length: 8
[18125.234278] bcm5974: bad trackpad package, length: 8
[18125.235280] bcm5974: bad trackpad package, length: 8
[18125.237283] bcm5974: bad trackpad package, length: 8
[18125.345187] Extended CMOS year: 2000
[18126.224639] ata2.00: failed to resume link (SControl 0)
[18126.544454] ata1.01: failed to resume link (SControl 0)
[18126.697763] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[18126.697778] ata1.01: SATA link down (SStatus 0 SControl 0)
[18126.704522] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[18126.711289] ata1.00: configured for UDMA/133
[18126.802527] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[18126.802531] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[18126.803610] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[18126.803641] ieee80211 phy0: brcms_ops_bss_info_changed: cqm change: threshold 0, hys 0 (implement)
[18126.803644] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18126.958465] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[18126.981952] PM: resume of devices complete after 1780.988 msecs
[18126.983675] PM: Finishing wakeup.
[18126.983678] Restarting tasks ... done.
[18127.023223] video LNXVIDEO:00: Restoring backlight state
[18127.093941] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18127.093962] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[18127.093974] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[18127.108259] cfg80211: Calling CRDA for country: GB
[18127.250656] ata2.01: failed to resume link (SControl 0)
[18127.262265] ata2.00: SATA link down (SStatus 4 SControl 0)
[18127.262282] ata2.01: SATA link down (SStatus 0 SControl 0)
[18129.108439] EXT4-fs (sda4): re-mounted. Opts: commit=600
[18129.146629] wlan0: authenticate with 00:18:39:50:07:f3 (try 1)
[18129.148357] wlan0: authenticated
[18129.148464] wlan0: associate with 00:18:39:50:07:f3 (try 1)
[18129.150750] wlan0: RX ReassocResp from 00:18:39:50:07:f3 (capab=0x421 status=0 aid=4)
[18129.150754] wlan0: associated
[18129.151595] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18129.151601] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[18129.151627] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[18135.059725] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[18162.247310] usb 2-1.2: new high speed USB device number 5 using ehci_hcd
[18163.511599] asix 2-1.2:1.0: eth0: register 'asix' at usb-0000:00:1d.7-1.2, ASIX AX88772 USB 2.0 Ethernet, 00:50:b6:05:85:62
[18163.511689] usbcore: registered new interface driver asix
[18265.664802] asix 2-1.2:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0xCDE1
[18265.926612] asix 2-1.2:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0xCDE1
[18276.231019] eth0: no IPv6 routers present
[18441.689390] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[18709.903968] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[18834.421401] usb 2-1.2: USB disconnect, device number 5
[18834.421936] asix 2-1.2:1.0: eth0: unregister 'asix' usb-0000:00:1d.7-1.2, ASIX AX88772 USB 2.0 Ethernet
[18874.040815] EXT4-fs (sda4): re-mounted. Opts: commit=0
[18874.519380] PM: Syncing filesystems ... done.
[18874.563917] PM: Preparing system for mem sleep
[18876.197233] Freezing user space processes ... (elapsed 0.01 seconds) done.
[18876.210104] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[18876.223431] PM: Entering mem sleep
[18876.223470] Suspending console(s) (use no_console_suspend to debug)
[18876.227683] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[18876.228922] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[18876.228992] sd 0:0:0:0: [sda] Stopping disk
[18876.229000] brcmsmac 0000:02:00.0: PCI INT A disabled
[18876.229123] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[18876.266741] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[18876.280056] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[18876.330159] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[18877.871485] ata_piix 0000:00:1f.2: PCI INT B disabled
[18877.882519] PM: suspend of devices complete after 1659.100 msecs
[18877.922560] PM: late suspend of devices complete after 40.056 msecs
[18877.922874] ACPI: Preparing to enter system sleep state S3
[18877.949200] PM: Saving platform NVS memory
[18877.949793] Disabling non-boot CPUs ...
[18877.953357] CPU 1 is now offline
[18877.956421] CPU 2 is now offline
[18877.959261] CPU 3 is now offline
[18877.959264] lockdep: fixing up alternatives.
[18877.959891] Extended CMOS year: 2000
[18877.960297] ACPI: Low-level resume complete
[18877.960350] PM: Restoring platform NVS memory
[18877.960663] Extended CMOS year: 2000
[18877.960683] Enabling non-boot CPUs ...
[18877.967643] lockdep: fixing up alternatives.
[18877.967648] Booting Node 0 Processor 1 APIC 0x2
[18877.967650] smpboot cpu 1: start_ip = 9a000
[18877.978866] Calibrating delay loop (skipped) already calibrated this CPU
[18878.003347] Switched to NOHz mode on CPU #1
[18878.003956] NMI watchdog enabled, takes one hw-pmu counter.
[18878.007855] CPU1 is up
[18878.014129] lockdep: fixing up alternatives.
[18878.014134] Booting Node 0 Processor 2 APIC 0x1
[18878.014136] smpboot cpu 2: start_ip = 9a000
[18878.025248] Calibrating delay loop (skipped) already calibrated this CPU
[18878.046385] Switched to NOHz mode on CPU #2
[18878.046395] NMI watchdog enabled, takes one hw-pmu counter.
[18878.048001] CPU2 is up
[18878.052071] lockdep: fixing up alternatives.
[18878.052077] Booting Node 0 Processor 3 APIC 0x3
[18878.052079] smpboot cpu 3: start_ip = 9a000
[18878.063290] Calibrating delay loop (skipped) already calibrated this CPU
[18878.086603] Switched to NOHz mode on CPU #3
[18878.087613] NMI watchdog enabled, takes one hw-pmu counter.
[18878.089322] CPU3 is up
[18878.092691] ACPI: Waking up from system sleep state S3
[18878.593062] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[18878.593074] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[18878.593079] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[18878.593084] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[18878.593092] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18878.593098] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18878.593136] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.593153] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[18878.593196] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.593226] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[18878.593269] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[18878.593290] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[18878.593312] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[18878.593355] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.593386] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[18878.593398] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[18878.593452] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.593482] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[18878.593490] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18878.593499] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[18878.593558] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[18878.593577] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.593584] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[18878.593592] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[18878.593599] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[18878.593611] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18878.593621] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[18878.593690] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[18878.593710] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.593718] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[18878.593725] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[18878.593733] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[18878.593745] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[18878.593755] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[18878.593807] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[18878.593828] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[18878.593849] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[18878.593891] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.593922] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[18878.593933] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[18878.594043] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[18878.594064] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[18878.594071] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[18878.594079] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[18878.594086] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[18878.594093] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[18878.594105] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[18878.594134] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[18878.594164] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[18878.594176] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[18878.594220] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.594225] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[18878.594231] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18878.594236] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[18878.594245] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18878.594252] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18878.594319] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.594325] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[18878.594330] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18878.594336] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[18878.594344] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18878.594351] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[18878.594420] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.594425] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[18878.594431] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18878.594436] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[18878.594445] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18878.594452] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[18878.594520] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[18878.594526] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[18878.594531] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[18878.594537] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[18878.594546] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[18878.594553] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[18878.594618] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[18878.594641] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[18878.594647] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[18878.594653] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18878.594661] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[18878.594788] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[18878.594848] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[18878.594860] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[18878.594877] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[18878.595311] PM: early resume of devices complete after 2.391 msecs
[18878.596325] i915 0000:00:02.0: setting latency timer to 64
[18878.596357] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[18878.596365] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[18878.596371] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[18878.596380] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[18878.596410] usb usb3: root hub lost power or was reset
[18878.596450] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[18878.596458] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[18878.596464] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[18878.596471] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[18878.596505] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[18878.596513] usb usb4: root hub lost power or was reset
[18878.596525] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[18878.596552] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[18878.596565] ata_piix 0000:00:1f.2: setting latency timer to 64
[18878.596568] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[18878.596671] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[18878.596683] brcmsmac 0000:02:00.0: setting latency timer to 64
[18878.598462] sd 0:0:0:0: [sda] Starting disk
[18878.732349] Extended CMOS year: 2000
[18879.618881] ata2.00: failed to resume link (SControl 0)
[18879.938697] ata1.01: failed to resume link (SControl 0)
[18880.092007] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[18880.092022] ata1.01: SATA link down (SStatus 0 SControl 0)
[18880.098754] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[18880.105528] ata1.00: configured for UDMA/133
[18880.196671] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[18880.196676] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[18880.197719] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[18880.197745] ieee80211 phy0: brcms_ops_bss_info_changed: cqm change: threshold 0, hys 0 (implement)
[18880.197747] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18880.329321] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18880.329333] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[18880.329344] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[18880.332718] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[18880.356228] PM: resume of devices complete after 1760.991 msecs
[18880.358023] PM: Finishing wakeup.
[18880.358025] Restarting tasks ...
[18880.365079] cfg80211: Calling CRDA to update world regulatory domain
[18880.365282] done.
[18880.388337] video LNXVIDEO:00: Restoring backlight state
[18880.641636] ata2.01: failed to resume link (SControl 0)
[18880.653214] ata2.00: SATA link down (SStatus 4 SControl 0)
[18880.653232] ata2.01: SATA link down (SStatus 0 SControl 0)
[18882.180139] EXT4-fs (sda4): re-mounted. Opts: commit=600
[18882.402726] wlan0: authenticate with 00:21:04:10:d9:bb (try 1)
[18882.402915] wlan0: deauthenticating from 00:21:04:10:d9:bb by local choice (reason=2)
[18882.627293] wlan0: authenticate with 00:21:04:10:d9:bb (try 1)
[18882.827029] wlan0: authenticate with 00:21:04:10:d9:bb (try 2)
[18883.026905] wlan0: authenticate with 00:21:04:10:d9:bb (try 3)
[18883.226790] wlan0: authentication with 00:21:04:10:d9:bb timed out
[18894.337362] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18894.536908] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18894.736785] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18894.936688] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18908.206003] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18908.206508] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18908.405541] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18908.605436] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18908.805308] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18915.784918] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18915.984482] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18916.184360] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18916.384243] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18920.139060] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18920.338632] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18920.538508] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18920.738395] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18927.078384] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18927.078847] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18927.277940] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18927.477826] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18927.677708] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18934.657325] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18934.856891] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18935.056766] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18935.256655] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18940.551883] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[18940.551889] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[18940.566083] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18940.566522] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[18940.566538] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18940.763464] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18940.963337] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18941.163226] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18951.594156] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18951.793730] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18951.993624] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18952.193499] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18979.760047] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[18979.760053] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[18979.778557] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18979.779026] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[18981.858627] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[18981.858633] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[18981.872855] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[18981.877545] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[18981.966584] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18981.966857] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18982.166128] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18982.366015] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18982.565898] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[18982.585492] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18982.687714] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18982.790058] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18982.995738] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.097084] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.199430] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.301770] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.404124] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.506460] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.608805] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.711148] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.813493] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18983.916049] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18984.018180] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18984.277328] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18984.334834] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18986.672272] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18986.774612] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18986.846995] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[18992.906875] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[18993.106462] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[18993.306342] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[18993.506232] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[19004.124931] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[19004.124936] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[19004.139206] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19004.139678] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19006.200606] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[19006.200612] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[19006.214995] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19006.219730] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19006.308884] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[19006.309207] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[19006.508706] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[19006.708580] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[19006.908458] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[19010.348616] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19010.348938] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[19010.353191] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19010.358883] wlan0: authenticated
[19010.358996] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19010.367351] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=2)
[19010.367355] wlan0: associated
[19010.368199] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19010.368205] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19010.368231] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19010.368635] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19020.445578] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19020.446151] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19020.446164] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19020.446176] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19020.611246] cfg80211: Calling CRDA for country: GB
[19020.611549] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19021.173492] wlan0: no IPv6 routers present
[19022.549741] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19022.550151] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[19022.556154] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19022.558342] wlan0: authenticated
[19022.558448] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19022.567787] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[19022.567791] wlan0: associated
[19022.568648] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19022.568653] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19022.568679] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19032.650049] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19032.650075] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19032.650088] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19032.650107] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19032.786922] cfg80211: Calling CRDA to update world regulatory domain
[19034.725992] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19034.727848] wlan0: authenticated
[19034.727956] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19034.737851] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[19034.737856] wlan0: associated
[19034.738698] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19034.738704] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19034.738729] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19035.564163] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19035.564184] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19035.564200] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19035.564213] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19035.728472] cfg80211: Calling CRDA to update world regulatory domain
[19035.729183] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19039.808412] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[19039.808417] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[19039.822610] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19039.827253] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19041.909159] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[19041.909165] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[19041.912642] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19041.913084] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19046.006080] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19046.006388] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[19046.012530] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19046.014703] wlan0: authenticated
[19046.014816] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19046.022109] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=5)
[19046.022114] wlan0: associated
[19046.023190] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19046.023196] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19046.023223] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19046.023611] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[19056.104437] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19056.105160] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19056.105173] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19056.105185] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19056.247096] cfg80211: Calling CRDA to update world regulatory domain
[19056.247464] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19056.473042] wlan0: no IPv6 routers present
[19058.185736] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19058.186148] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[19058.192167] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19058.194073] wlan0: authenticated
[19058.194178] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19058.203915] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=6)
[19058.203919] wlan0: associated
[19058.204761] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19058.204766] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19058.204792] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19066.141044] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[19068.660333] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19068.660347] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19068.660360] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[19068.660368] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19068.822656] cfg80211: Calling CRDA to update world regulatory domain
[19070.762029] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19070.762186] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[19070.768187] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19070.770083] wlan0: authenticated
[19070.770190] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19070.779559] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=7)
[19070.779564] wlan0: associated
[19070.780409] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19070.780415] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19070.780441] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19080.858910] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19080.859470] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19080.859483] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19080.859495] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19080.999413] cfg80211: Calling CRDA to update world regulatory domain
[19081.000396] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19082.941330] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19082.943233] wlan0: authenticated
[19082.943340] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19082.952689] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=8)
[19082.952694] wlan0: associated
[19082.953540] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19082.953546] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19082.953572] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19088.285095] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[19093.036787] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19093.036801] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19093.036813] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[19093.036821] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19093.171883] cfg80211: Calling CRDA to update world regulatory domain
[19095.110941] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19095.113015] wlan0: authenticated
[19095.113122] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19095.122746] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=9)
[19095.122751] wlan0: associated
[19095.123592] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19095.123598] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19095.123622] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19103.829198] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[19105.208773] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19105.208787] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19105.208800] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[19105.208808] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19105.344820] cfg80211: Calling CRDA to update world regulatory domain
[19107.283882] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19107.288068] wlan0: authenticated
[19107.288180] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19107.297929] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=10)
[19107.297934] wlan0: associated
[19107.298788] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19107.298794] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19107.298820] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19117.377826] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19117.378387] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19117.378400] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19117.378412] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19117.514928] cfg80211: Calling CRDA to update world regulatory domain
[19117.515237] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19119.453528] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19119.455380] wlan0: authenticated
[19119.455487] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19119.465148] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=11)
[19119.465153] wlan0: associated
[19119.465997] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19119.466003] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19119.466029] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19130.555157] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19130.555172] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[19130.555184] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[19130.555192] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[19130.716766] cfg80211: Calling CRDA to update world regulatory domain
[19132.655853] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[19132.658648] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[19132.659412] wlan0: authenticated
[19132.668556] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[19132.677794] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=12)
[19132.677798] wlan0: associated
[19132.678638] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[19132.678644] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[19132.678669] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[19141.607286] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[20863.784327] wlan0: deauthenticated from 00:14:6c:67:9c:32 (Reason: 1)
[20863.784881] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[20863.784900] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[20863.784911] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[20863.946122] cfg80211: Calling CRDA to update world regulatory domain
[20865.931627] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20866.131185] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20866.331067] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20866.530945] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20872.874185] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20873.073837] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20873.141853] wlan0: authenticated
[20873.141967] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[20873.340333] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[20873.540230] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[20873.740107] wlan0: association with 00:14:6c:67:9c:32 timed out
[20879.905578] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20879.905784] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20880.102660] wlan0: direct probe responded
[20880.126409] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20880.326293] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20880.526182] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20880.726054] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20887.692329] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20887.746863] wlan0: authenticated
[20887.747040] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[20887.945208] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[20888.145090] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[20888.344973] wlan0: association with 00:14:6c:67:9c:32 timed out
[20891.931409] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20891.931567] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20891.967049] wlan0: direct probe responded
[20892.012854] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20892.212741] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20892.412631] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20892.612503] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20899.583839] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20899.781701] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20899.782916] wlan0: direct probe responded
[20899.821664] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20900.021544] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20900.221439] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20900.421350] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20903.871131] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20903.871287] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20904.069204] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20904.269085] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20904.468965] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20911.443691] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20911.641479] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20911.841364] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20912.041246] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20922.747178] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20922.944930] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20923.144813] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20923.344699] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20929.687953] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20929.688229] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20929.887583] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20930.087459] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20930.287344] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20937.253539] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20937.453226] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20937.653085] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20937.852968] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20941.621093] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20941.820665] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20942.020556] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20942.220437] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20962.520725] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20962.521094] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20962.718535] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20962.918435] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20963.118320] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20977.115622] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20977.115893] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20977.313429] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20977.513320] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20977.713192] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20984.686072] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[20984.885705] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[20985.085600] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[20985.285484] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[20989.050213] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20989.249862] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20989.449728] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20989.649621] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[20995.989540] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[20996.189173] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[20996.389057] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[20996.588935] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[21004.366437] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[21004.564319] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[21004.764204] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[21004.964077] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[21007.927736] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[21008.125584] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[21008.325414] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[21008.525348] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[21015.586642] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[21015.784470] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[21015.984354] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[21016.184234] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[21019.864252] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[21019.864530] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[21020.061996] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[21020.261873] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[21020.461763] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[21027.429759] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21027.431630] wlan0: authenticated
[21027.435453] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21027.446370] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[21027.446374] wlan0: associated
[21027.447272] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21027.447277] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21027.447303] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21037.105668] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21037.566621] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21037.566642] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21037.566653] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21037.566661] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21037.698495] cfg80211: Calling CRDA to update world regulatory domain
[21039.637600] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21039.638001] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21039.644050] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21039.645943] wlan0: authenticated
[21039.646051] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21039.660631] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[21039.660635] wlan0: associated
[21039.661514] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21039.661520] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21039.661546] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21049.751742] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21049.752332] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21049.752345] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21049.752357] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21049.891909] cfg80211: Calling CRDA to update world regulatory domain
[21049.892296] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21051.830542] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21051.830876] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21051.837004] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21051.838732] wlan0: authenticated
[21051.838844] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21051.852525] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=5)
[21051.852529] wlan0: associated
[21051.853398] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21051.853404] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21051.853429] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21061.943745] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21061.944347] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21061.944360] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21061.944372] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21062.084837] cfg80211: Calling CRDA to update world regulatory domain
[21062.085139] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21064.026772] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21064.028633] wlan0: authenticated
[21064.028741] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21064.038109] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=6)
[21064.038114] wlan0: associated
[21064.038971] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21064.038977] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21064.039003] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21073.254690] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21074.118979] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21074.118994] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21074.119006] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21074.119014] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21074.287305] cfg80211: Calling CRDA to update world regulatory domain
[21076.226577] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21076.226962] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21076.232845] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21076.234777] wlan0: authenticated
[21076.234885] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21076.432661] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[21076.525028] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=7)
[21076.525033] wlan0: associated
[21076.525921] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21076.525929] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21076.525959] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21085.677507] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21086.621920] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21086.621934] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21086.621947] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21086.621955] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21086.766733] cfg80211: Calling CRDA to update world regulatory domain
[21088.705818] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21088.707702] wlan0: authenticated
[21088.707810] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21088.717057] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=8)
[21088.717061] wlan0: associated
[21088.717916] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21088.717924] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21088.717953] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21098.733405] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21098.797842] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21098.797856] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21098.797869] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21098.797877] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21098.972995] cfg80211: Calling CRDA to update world regulatory domain
[21100.912082] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21100.914874] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[21100.918136] wlan0: authenticated
[21100.920091] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21100.929680] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=9)
[21100.929684] wlan0: associated
[21100.930540] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21100.930546] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21100.930572] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21110.063370] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21198.256706] EXT4-fs (sda4): re-mounted. Opts: commit=0
[21198.529361] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21199.621660] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21199.621683] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21199.621695] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21199.621704] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21199.748003] cfg80211: Calling CRDA to update world regulatory domain
[21200.277410] PM: Syncing filesystems ... done.
[21200.322272] PM: Preparing system for mem sleep
[21201.917061] Freezing user space processes ... (elapsed 0.01 seconds) done.
[21201.929961] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[21201.943277] PM: Entering mem sleep
[21201.943317] Suspending console(s) (use no_console_suspend to debug)
[21201.945436] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[21201.946760] sd 0:0:0:0: [sda] Stopping disk
[21201.946915] brcmsmac 0000:02:00.0: PCI INT A disabled
[21201.947308] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[21201.947365] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[21201.947455] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[21201.983336] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[21201.996581] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[21203.587190] ata_piix 0000:00:1f.2: PCI INT B disabled
[21203.599063] PM: suspend of devices complete after 1655.794 msecs
[21203.639081] PM: late suspend of devices complete after 40.027 msecs
[21203.639395] ACPI: Preparing to enter system sleep state S3
[21203.665757] PM: Saving platform NVS memory
[21203.666380] Disabling non-boot CPUs ...
[21203.669825] CPU 1 is now offline
[21203.672914] CPU 2 is now offline
[21203.675792] CPU 3 is now offline
[21203.675795] lockdep: fixing up alternatives.
[21203.676408] Extended CMOS year: 2000
[21203.676814] ACPI: Low-level resume complete
[21203.676867] PM: Restoring platform NVS memory
[21203.677181] Extended CMOS year: 2000
[21203.677202] Enabling non-boot CPUs ...
[21203.684156] lockdep: fixing up alternatives.
[21203.684162] Booting Node 0 Processor 1 APIC 0x2
[21203.684164] smpboot cpu 1: start_ip = 9a000
[21203.695374] Calibrating delay loop (skipped) already calibrated this CPU
[21203.716580] Switched to NOHz mode on CPU #1
[21203.724120] NMI watchdog enabled, takes one hw-pmu counter.
[21203.727978] CPU1 is up
[21203.734575] lockdep: fixing up alternatives.
[21203.734580] Booting Node 0 Processor 2 APIC 0x1
[21203.734582] smpboot cpu 2: start_ip = 9a000
[21203.745770] Calibrating delay loop (skipped) already calibrated this CPU
[21203.766247] Switched to NOHz mode on CPU #2
[21203.766912] NMI watchdog enabled, takes one hw-pmu counter.
[21203.768156] CPU2 is up
[21203.771873] lockdep: fixing up alternatives.
[21203.771880] Booting Node 0 Processor 3 APIC 0x3
[21203.771882] smpboot cpu 3: start_ip = 9a000
[21203.783093] Calibrating delay loop (skipped) already calibrated this CPU
[21203.806436] Switched to NOHz mode on CPU #3
[21203.808118] NMI watchdog enabled, takes one hw-pmu counter.
[21203.809720] CPU3 is up
[21203.813369] ACPI: Waking up from system sleep state S3
[21204.316254] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[21204.316265] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[21204.316270] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[21204.316275] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x20003030)
[21204.316283] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[21204.316289] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[21204.316327] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.316344] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[21204.316387] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.316417] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[21204.316459] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[21204.316480] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[21204.316502] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[21204.316545] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.316575] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[21204.316587] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[21204.316642] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.316672] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[21204.316679] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[21204.316689] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[21204.316747] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[21204.316766] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.316774] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[21204.316781] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[21204.316788] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[21204.316801] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[21204.316810] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[21204.316879] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[21204.316898] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.316906] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[21204.316913] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0xf0)
[21204.316920] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[21204.316932] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[21204.316942] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[21204.316993] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[21204.317014] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[21204.317035] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[21204.317077] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.317108] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[21204.317119] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[21204.317229] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[21204.317250] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[21204.317257] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[21204.317265] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[21204.317272] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[21204.317279] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[21204.317291] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[21204.317320] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[21204.317350] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[21204.317362] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[21204.317406] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.317412] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[21204.317417] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[21204.317423] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[21204.317431] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[21204.317438] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[21204.317505] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.317511] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[21204.317516] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[21204.317522] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[21204.317530] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[21204.317538] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[21204.317606] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.317611] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[21204.317617] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[21204.317623] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[21204.317631] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[21204.317638] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[21204.317707] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[21204.317712] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[21204.317718] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[21204.317723] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[21204.317732] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[21204.317739] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[21204.317804] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[21204.317827] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[21204.317833] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[21204.317840] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[21204.317848] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[21204.317974] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[21204.318033] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[21204.318045] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[21204.318062] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[21204.318492] PM: early resume of devices complete after 2.379 msecs
[21204.319483] i915 0000:00:02.0: setting latency timer to 64
[21204.319512] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[21204.319519] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[21204.319529] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[21204.319533] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[21204.319568] usb usb3: root hub lost power or was reset
[21204.319607] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[21204.319619] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[21204.319622] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[21204.319631] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[21204.319660] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[21204.319671] usb usb4: root hub lost power or was reset
[21204.319684] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[21204.319710] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[21204.319721] ata_piix 0000:00:1f.2: setting latency timer to 64
[21204.319726] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[21204.319829] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[21204.319843] brcmsmac 0000:02:00.0: setting latency timer to 64
[21204.321617] sd 0:0:0:0: [sda] Starting disk
[21204.458464] Extended CMOS year: 2000
[21205.342072] ata2.00: failed to resume link (SControl 0)
[21205.661892] ata1.01: failed to resume link (SControl 0)
[21205.815200] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[21205.815214] ata1.01: SATA link down (SStatus 0 SControl 0)
[21205.821950] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[21205.828714] ata1.00: configured for UDMA/133
[21206.009267] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[21206.032739] PM: resume of devices complete after 1714.316 msecs
[21206.034355] PM: Finishing wakeup.
[21206.034357] Restarting tasks ... done.
[21206.062400] video LNXVIDEO:00: Restoring backlight state
[21206.364849] ata2.01: failed to resume link (SControl 0)
[21206.376479] ata2.00: SATA link down (SStatus 4 SControl 0)
[21206.376499] ata2.01: SATA link down (SStatus 0 SControl 0)
[21208.342832] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[21208.342838] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[21208.346292] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21208.346741] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[21210.390821] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[21210.390828] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[21210.394315] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21210.394795] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[21214.493813] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21214.495658] wlan0: authenticated
[21214.495774] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21214.503728] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=10)
[21214.503732] wlan0: associated
[21214.504604] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21214.504610] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21214.504634] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21214.505000] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[21224.582712] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21224.582727] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21224.582740] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21224.582748] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21224.744181] cfg80211: Calling CRDA to update world regulatory domain
[21224.804095] wlan0: no IPv6 routers present
[21226.683295] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21226.686094] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[21226.687083] wlan0: authenticated
[21226.694877] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21226.708482] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=11)
[21226.708486] wlan0: associated
[21226.709369] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21226.709374] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21226.709400] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21227.636995] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21227.637022] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21227.637038] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21227.637051] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21227.782536] cfg80211: Calling CRDA to update world regulatory domain
[21227.783280] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[21228.737983] EXT4-fs (sda4): re-mounted. Opts: commit=600
[21237.757137] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[21237.757143] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[21237.760639] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21237.761044] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[21239.843104] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[21239.843109] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[21239.846594] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21239.846998] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[21243.940007] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21243.940320] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21243.949767] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21243.952044] wlan0: authenticated
[21243.952157] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21243.959427] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=12)
[21243.959432] wlan0: associated
[21243.960387] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21243.960393] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21243.960418] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21243.960829] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[21254.035558] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21254.036181] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21254.036195] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21254.036207] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21254.184338] cfg80211: Calling CRDA to update world regulatory domain
[21254.184685] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21254.919980] wlan0: no IPv6 routers present
[21256.122946] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21256.124836] wlan0: authenticated
[21256.124946] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21256.134331] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=13)
[21256.134335] wlan0: associated
[21256.135224] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21256.135230] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21256.135255] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21262.335923] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21266.250707] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21266.250722] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21266.250735] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21266.250742] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21266.386773] cfg80211: Calling CRDA to update world regulatory domain
[21268.332515] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21268.335220] wlan0: authenticated
[21268.335327] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21268.347279] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=14)
[21268.347283] wlan0: associated
[21268.348151] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21268.348156] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21268.348182] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21277.823742] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21278.810425] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21278.810440] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21278.810452] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21278.810460] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21278.972816] cfg80211: Calling CRDA to update world regulatory domain
[21280.911885] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21280.913760] wlan0: authenticated
[21280.913869] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21280.923203] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=15)
[21280.923207] wlan0: associated
[21280.924075] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21280.924080] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21280.924106] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21291.008263] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21291.010981] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21291.011001] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21291.011016] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21291.145732] cfg80211: Calling CRDA to update world regulatory domain
[21291.146895] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21293.084845] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21293.085259] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21293.091322] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21293.093411] wlan0: authenticated
[21293.093580] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21293.104708] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[21293.104712] wlan0: associated
[21293.105574] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21293.105579] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21293.105605] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21303.197414] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21303.198020] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21303.198033] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21303.198045] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[21303.335866] cfg80211: Calling CRDA to update world regulatory domain
[21303.336212] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21305.274492] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21305.274745] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[21305.280938] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21305.282880] wlan0: authenticated
[21305.282989] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21305.293383] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[21305.293388] wlan0: associated
[21305.294281] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21305.294287] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21305.294313] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21314.452406] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[21315.373554] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21315.373569] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[21315.373581] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[21315.373589] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[21315.531631] cfg80211: Calling CRDA to update world regulatory domain
[21317.470729] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[21317.471946] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[21317.670329] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[21317.670348] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[21317.673468] wlan0: authenticated
[21317.705484] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[21317.716008] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=5)
[21317.716013] wlan0: associated
[21317.716907] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[21317.716916] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[21317.716945] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[21327.358250] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[22152.089208] EXT4-fs (sda4): re-mounted. Opts: commit=0
[22152.360803] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22153.443347] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22153.443370] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22153.443382] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22153.443391] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22153.562806] cfg80211: Calling CRDA to update world regulatory domain
[22154.386065] PM: Syncing filesystems ... done.
[22154.441026] PM: Preparing system for mem sleep
[22156.028364] Freezing user space processes ... (elapsed 0.01 seconds) done.
[22156.041237] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
[22156.054566] PM: Entering mem sleep
[22156.054600] Suspending console(s) (use no_console_suspend to debug)
[22156.057023] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[22156.058295] brcmsmac 0000:02:00.0: PCI INT A disabled
[22156.058340] sd 0:0:0:0: [sda] Stopping disk
[22156.058688] uhci_hcd 0000:00:1d.0: PCI INT B disabled
[22156.058946] uhci_hcd 0000:00:1a.0: PCI INT B disabled
[22156.094543] ehci_hcd 0000:00:1d.7: PCI INT A disabled
[22156.107859] ehci_hcd 0000:00:1a.7: PCI INT A disabled
[22156.161271] snd_hda_intel 0000:00:1b.0: PCI INT A disabled
[22157.701978] ata_piix 0000:00:1f.2: PCI INT B disabled
[22157.713602] PM: suspend of devices complete after 1659.085 msecs
[22157.753664] PM: late suspend of devices complete after 40.064 msecs
[22157.753978] ACPI: Preparing to enter system sleep state S3
[22157.780312] PM: Saving platform NVS memory
[22157.780904] Disabling non-boot CPUs ...
[22157.783974] CPU 1 is now offline
[22157.787591] CPU 2 is now offline
[22157.790397] CPU 3 is now offline
[22157.790400] lockdep: fixing up alternatives.
[22157.791122] Extended CMOS year: 2000
[22157.791526] ACPI: Low-level resume complete
[22157.791580] PM: Restoring platform NVS memory
[22157.791893] Extended CMOS year: 2000
[22157.791913] Enabling non-boot CPUs ...
[22157.798846] lockdep: fixing up alternatives.
[22157.798851] Booting Node 0 Processor 1 APIC 0x2
[22157.798853] smpboot cpu 1: start_ip = 9a000
[22157.810062] Calibrating delay loop (skipped) already calibrated this CPU
[22157.834397] Switched to NOHz mode on CPU #1
[22157.839478] NMI watchdog enabled, takes one hw-pmu counter.
[22157.839977] CPU1 is up
[22157.849178] lockdep: fixing up alternatives.
[22157.849183] Booting Node 0 Processor 2 APIC 0x1
[22157.849185] smpboot cpu 2: start_ip = 9a000
[22157.860296] Calibrating delay loop (skipped) already calibrated this CPU
[22157.880833] Switched to NOHz mode on CPU #2
[22157.881561] NMI watchdog enabled, takes one hw-pmu counter.
[22157.882747] CPU2 is up
[22157.886240] lockdep: fixing up alternatives.
[22157.886247] Booting Node 0 Processor 3 APIC 0x3
[22157.886249] smpboot cpu 3: start_ip = 9a000
[22157.897458] Calibrating delay loop (skipped) already calibrated this CPU
[22157.921022] Switched to NOHz mode on CPU #3
[22157.923746] NMI watchdog enabled, takes one hw-pmu counter.
[22157.925709] CPU3 is up
[22157.929045] ACPI: Waking up from system sleep state S3
[22158.430840] pcieport 0000:00:01.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[22158.430852] pcieport 0000:00:01.0: restoring config space at offset 0x9 (was 0x1fff1, writing 0xa891a4a1)
[22158.430857] pcieport 0000:00:01.0: restoring config space at offset 0x8 (was 0xfff0, writing 0xa490a070)
[22158.430862] pcieport 0000:00:01.0: restoring config space at offset 0x7 (was 0x200000f0, writing 0x3030)
[22158.430870] pcieport 0000:00:01.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[22158.430876] pcieport 0000:00:01.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[22158.430914] i915 0000:00:02.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.430932] i915 0000:00:02.0: restoring config space at offset 0x1 (was 0x900007, writing 0x900407)
[22158.430974] mei 0000:00:16.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.431004] mei 0000:00:16.0: restoring config space at offset 0x4 (was 0xfed1b004, writing 0xa0607104)
[22158.431047] uhci_hcd 0000:00:1a.0: restoring config space at offset 0xf (was 0x200, writing 0x20a)
[22158.431068] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x8 (was 0x1, writing 0x2141)
[22158.431089] uhci_hcd 0000:00:1a.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[22158.431133] ehci_hcd 0000:00:1a.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.431163] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606c00)
[22158.431175] ehci_hcd 0000:00:1a.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[22158.431230] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.431260] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0600004)
[22158.431268] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[22158.431277] snd_hda_intel 0000:00:1b.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100002)
[22158.431335] pcieport 0000:00:1c.0: restoring config space at offset 0xf (was 0x100, writing 0x1ff)
[22158.431355] pcieport 0000:00:1c.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.431362] pcieport 0000:00:1c.0: restoring config space at offset 0x8 (was 0x0, writing 0xa050a050)
[22158.431370] pcieport 0000:00:1c.0: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[22158.431378] pcieport 0000:00:1c.0: restoring config space at offset 0x6 (was 0x0, writing 0x10100)
[22158.431390] pcieport 0000:00:1c.0: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[22158.431400] pcieport 0000:00:1c.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[22158.431470] pcieport 0000:00:1c.1: restoring config space at offset 0xf (was 0x200, writing 0x2ff)
[22158.431489] pcieport 0000:00:1c.1: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.431496] pcieport 0000:00:1c.1: restoring config space at offset 0x8 (was 0x0, writing 0xa040a040)
[22158.431504] pcieport 0000:00:1c.1: restoring config space at offset 0x7 (was 0x20000000, writing 0x200000f0)
[22158.431512] pcieport 0000:00:1c.1: restoring config space at offset 0x6 (was 0x0, writing 0x20200)
[22158.431523] pcieport 0000:00:1c.1: restoring config space at offset 0x3 (was 0x810000, writing 0x810040)
[22158.431533] pcieport 0000:00:1c.1: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[22158.431585] uhci_hcd 0000:00:1d.0: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[22158.431606] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x8 (was 0x1, writing 0x20e1)
[22158.431627] uhci_hcd 0000:00:1d.0: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900001)
[22158.431669] ehci_hcd 0000:00:1d.7: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.431699] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x4 (was 0x0, writing 0xa0606800)
[22158.431711] ehci_hcd 0000:00:1d.7: restoring config space at offset 0x1 (was 0x2900000, writing 0x2900002)
[22158.431821] ata_piix 0000:00:1f.2: restoring config space at offset 0xf (was 0x200, writing 0x20b)
[22158.431842] ata_piix 0000:00:1f.2: restoring config space at offset 0x8 (was 0x1, writing 0x2061)
[22158.431850] ata_piix 0000:00:1f.2: restoring config space at offset 0x7 (was 0x1, writing 0x2179)
[22158.431857] ata_piix 0000:00:1f.2: restoring config space at offset 0x6 (was 0x1, writing 0x2161)
[22158.431864] ata_piix 0000:00:1f.2: restoring config space at offset 0x5 (was 0x1, writing 0x217d)
[22158.431871] ata_piix 0000:00:1f.2: restoring config space at offset 0x4 (was 0x1, writing 0x2169)
[22158.431883] ata_piix 0000:00:1f.2: restoring config space at offset 0x1 (was 0x2b00000, writing 0x2b00007)
[22158.431913] i801_smbus 0000:00:1f.3: restoring config space at offset 0xf (was 0x300, writing 0x30b)
[22158.431943] i801_smbus 0000:00:1f.3: restoring config space at offset 0x4 (was 0x4, writing 0xa0607004)
[22158.431955] i801_smbus 0000:00:1f.3: restoring config space at offset 0x1 (was 0x2800001, writing 0x2800003)
[22158.431999] pcieport 0000:03:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.432004] pcieport 0000:03:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a070)
[22158.432010] pcieport 0000:03:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[22158.432015] pcieport 0000:03:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x670403)
[22158.432024] pcieport 0000:03:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[22158.432031] pcieport 0000:03:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[22158.432098] pcieport 0000:04:00.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.432104] pcieport 0000:04:00.0: restoring config space at offset 0x8 (was 0x0, writing 0xa070a070)
[22158.432110] pcieport 0000:04:00.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[22158.432115] pcieport 0000:04:00.0: restoring config space at offset 0x6 (was 0x0, writing 0x50504)
[22158.432124] pcieport 0000:04:00.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[22158.432131] pcieport 0000:04:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100407)
[22158.432199] pcieport 0000:04:03.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.432205] pcieport 0000:04:03.0: restoring config space at offset 0x8 (was 0x0, writing 0xa080a080)
[22158.432210] pcieport 0000:04:03.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[22158.432216] pcieport 0000:04:03.0: restoring config space at offset 0x6 (was 0x0, writing 0x360604)
[22158.432224] pcieport 0000:04:03.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[22158.432232] pcieport 0000:04:03.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[22158.432300] pcieport 0000:04:04.0: restoring config space at offset 0x9 (was 0x10001, writing 0x1fff1)
[22158.432305] pcieport 0000:04:04.0: restoring config space at offset 0x8 (was 0x0, writing 0xa090a090)
[22158.432311] pcieport 0000:04:04.0: restoring config space at offset 0x7 (was 0x101, writing 0x1f1)
[22158.432316] pcieport 0000:04:04.0: restoring config space at offset 0x6 (was 0x0, writing 0x673704)
[22158.432325] pcieport 0000:04:04.0: restoring config space at offset 0x3 (was 0x10000, writing 0x10040)
[22158.432332] pcieport 0000:04:04.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100406)
[22158.432397] pci 0000:05:00.0: restoring config space at offset 0xf (was 0x1ff, writing 0x10b)
[22158.432420] pci 0000:05:00.0: restoring config space at offset 0x5 (was 0x0, writing 0xa0740000)
[22158.432426] pci 0000:05:00.0: restoring config space at offset 0x4 (was 0x0, writing 0xa0700000)
[22158.432432] pci 0000:05:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[22158.432440] pci 0000:05:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100007)
[22158.432568] brcmsmac 0000:02:00.0: restoring config space at offset 0xf (was 0x100, writing 0x10b)
[22158.432627] brcmsmac 0000:02:00.0: restoring config space at offset 0x4 (was 0x4, writing 0xa0400004)
[22158.432640] brcmsmac 0000:02:00.0: restoring config space at offset 0x3 (was 0x0, writing 0x40)
[22158.432657] brcmsmac 0000:02:00.0: restoring config space at offset 0x1 (was 0x100000, writing 0x100006)
[22158.433091] PM: early resume of devices complete after 2.393 msecs
[22158.434095] i915 0000:00:02.0: setting latency timer to 64
[22158.434120] uhci_hcd 0000:00:1a.0: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[22158.434127] ehci_hcd 0000:00:1a.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[22158.434133] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[22158.434143] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[22158.434170] usb usb3: root hub lost power or was reset
[22158.434208] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[22158.434223] uhci_hcd 0000:00:1d.0: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[22158.434226] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[22158.434236] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[22158.434272] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[22158.434277] usb usb4: root hub lost power or was reset
[22158.434288] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[22158.434319] ata_piix 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[22158.434331] ata_piix 0000:00:1f.2: setting latency timer to 64
[22158.434336] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[22158.434435] brcmsmac 0000:02:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[22158.434449] brcmsmac 0000:02:00.0: setting latency timer to 64
[22158.436205] sd 0:0:0:0: [sda] Starting disk
[22158.561078] Extended CMOS year: 2000
[22159.456670] ata2.00: failed to resume link (SControl 0)
[22159.776507] ata1.01: failed to resume link (SControl 0)
[22159.929782] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[22159.929796] ata1.01: SATA link down (SStatus 0 SControl 0)
[22159.936541] ata1.00: ACPI cmd ef/03:46:00:00:00:a0 (SET FEATURES) filtered out
[22159.943307] ata1.00: configured for UDMA/133
[22160.140510] [drm:intel_dp_complete_link_train] *ERROR* failed to train DP, aborting
[22160.163970] PM: resume of devices complete after 1730.975 msecs
[22160.165587] PM: Finishing wakeup.
[22160.165589] Restarting tasks ... done.
[22160.205490] video LNXVIDEO:00: Restoring backlight state
[22160.479408] ata2.01: failed to resume link (SControl 0)
[22160.491004] ata2.00: SATA link down (SStatus 4 SControl 0)
[22160.491022] ata2.01: SATA link down (SStatus 0 SControl 0)
[22162.497160] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22162.497166] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22162.500965] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22162.501449] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22164.541992] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22164.541998] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22164.545508] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22164.545947] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22183.785770] EXT4-fs (sda4): re-mounted. Opts: commit=600
[22198.046757] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22198.046763] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22198.050215] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22198.050633] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22200.130780] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22200.130787] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22200.134308] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22200.134717] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22721.380785] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22721.380791] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22721.384300] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22721.384828] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22723.461048] ieee80211 phy0: brcms_ops_config: change monitor mode: false (implement)
[22723.461054] ieee80211 phy0: brcms_ops_config: change power-save mode: false (implement)
[22723.464568] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22723.464989] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[22727.562963] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22727.563319] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[22727.567543] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22727.678942] wlan0: authenticated
[22727.679117] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22727.877310] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[22727.907275] wlan0: RX AssocResp from 00:14:6c:67:9c:32 (capab=0x611 status=0 aid=2)
[22727.907279] wlan0: associated
[22727.908134] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22727.908140] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22727.908165] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22727.908528] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[22737.175461] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[22738.026761] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22738.026776] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22738.026788] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[22738.026796] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22738.158074] cfg80211: Calling CRDA to update world regulatory domain
[22738.461160] wlan0: no IPv6 routers present
[22740.100551] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22740.100874] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[22740.106948] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22740.120596] wlan0: authenticated
[22740.120705] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22740.158585] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[22740.158589] wlan0: associated
[22740.159428] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22740.159434] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22740.159460] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22751.073620] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22751.074221] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22751.074234] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22751.074246] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22751.227676] cfg80211: Calling CRDA to update world regulatory domain
[22751.228017] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22753.169692] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22753.170126] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[22753.176070] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22753.193072] wlan0: authenticated
[22753.193180] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22753.208931] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[22753.208936] wlan0: associated
[22753.209857] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22753.209863] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22753.209889] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22763.767336] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22763.767351] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22763.767363] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22763.767371] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22763.929819] cfg80211: Calling CRDA to update world regulatory domain
[22765.868864] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22765.871662] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[22765.986048] wlan0: authenticated
[22765.987976] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22766.020277] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=5)
[22766.020284] wlan0: associated
[22766.021149] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22766.021156] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22766.021182] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22770.629394] usb 2-1.2: new high speed USB device number 6 using ehci_hcd
[22770.728527] usb-storage 2-1.2:1.0: Quirks match for vid 1058 pid 0704: 8000
[22770.728621] scsi4 : usb-storage 2-1.2:1.0
[22771.729791] scsi 4:0:0:0: Direct-Access WD 5000BMV External 1.75 PQ: 0 ANSI: 4
[22771.730555] sd 4:0:0:0: Attached scsi generic sg1 type 0
[22771.730930] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[22771.731442] sd 4:0:0:0: [sdb] Write Protect is off
[22771.731449] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
[22771.732292] sd 4:0:0:0: [sdb] No Caching mode page present
[22771.732299] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[22771.734668] sd 4:0:0:0: [sdb] No Caching mode page present
[22771.734673] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[22771.760640] sdb: unknown partition table
[22771.762656] sd 4:0:0:0: [sdb] No Caching mode page present
[22771.762661] sd 4:0:0:0: [sdb] Assuming drive cache: write through
[22771.762664] sd 4:0:0:0: [sdb] Attached SCSI disk
[22778.581476] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[22948.429930] wlan0: deauthenticated from 00:14:6c:67:9c:32 (Reason: 1)
[22948.430469] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22948.430489] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22948.430500] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[22948.566216] cfg80211: Calling CRDA to update world regulatory domain
[22950.551865] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22950.667941] wlan0: authenticated
[22950.668047] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22950.687824] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=6)
[22950.687829] wlan0: associated
[22950.688917] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22950.688923] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22950.688949] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22961.269448] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22961.269462] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22961.269474] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22961.269482] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22961.415388] cfg80211: Calling CRDA to update world regulatory domain
[22963.357779] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22963.557412] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[22963.691645] wlan0: authenticated
[22963.691766] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22963.883100] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=8)
[22963.883105] wlan0: associated
[22963.883992] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22963.884000] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22963.884031] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22975.087624] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22975.087638] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22975.087650] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22975.087658] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22975.250698] cfg80211: Calling CRDA to update world regulatory domain
[22977.193106] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22977.198501] wlan0: authenticated
[22977.198607] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22977.231065] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=9)
[22977.231070] wlan0: associated
[22977.231916] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22977.231922] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22977.231948] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22986.554300] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[22987.546406] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22987.546421] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22987.546433] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[22987.546441] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22987.716823] cfg80211: Calling CRDA to update world regulatory domain
[22989.655873] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22989.665885] wlan0: authenticated
[22989.665996] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22989.865496] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[22989.888508] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=10)
[22989.888512] wlan0: associated
[22989.889468] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22989.889474] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22989.889500] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[22995.756945] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[22995.757469] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22995.757482] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[22995.757494] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[22995.785558] cfg80211: Calling CRDA to update world regulatory domain
[22995.785648] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[22997.824484] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[22997.857332] wlan0: authenticated
[22997.857446] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[22997.964074] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=11)
[22997.964078] wlan0: associated
[22997.964921] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[22997.964927] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[22997.964953] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[23010.722888] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23010.722902] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[23010.722914] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[23010.722922] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[23010.883385] cfg80211: Calling CRDA to update world regulatory domain
[23012.822447] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[23012.825268] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[23013.022091] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[23013.022110] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[23013.048544] wlan0: authenticated
[23013.050607] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[23013.248629] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[23013.448486] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[23013.458807] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=12)
[23013.458812] wlan0: associated
[23013.459662] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23013.459668] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[23013.459694] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[23022.533547] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[23022.534071] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23022.534090] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[23022.534101] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[23022.563497] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[23022.564523] cfg80211: Calling CRDA to update world regulatory domain
[23024.605638] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[23024.613819] wlan0: authenticated
[23027.110826] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[23027.110917] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[23027.310489] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[23027.462618] wlan0: authenticated
[23027.462739] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[23027.660269] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[23027.860160] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[23028.060041] wlan0: association with 00:14:6c:67:9c:32 timed out
[23034.050148] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[23034.052934] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[23034.196837] wlan0: authenticated
[23034.198748] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[23034.288003] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=14)
[23034.288007] wlan0: associated
[23034.288876] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23034.288882] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[23034.288903] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[23046.866025] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[23296.458512] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23296.458526] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[23296.458538] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[23296.458546] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[23296.511248] cfg80211: Calling CRDA to update world regulatory domain
[23296.512279] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[23296.514811] wlan0: authenticated
[23296.515008] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[23296.552959] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=2)
[23296.552964] wlan0: associated
[23296.553924] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[23296.553930] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[23296.553950] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[23305.476189] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[23359.002903] padlock_sha: VIA PadLock Hash Engine not detected.
[24012.704780] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24012.704801] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24012.704816] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24012.856113] cfg80211: Calling CRDA to update world regulatory domain
[24014.853333] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24014.853493] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[24014.944948] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24015.144726] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24015.344621] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[24015.544498] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[24034.979933] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.081210] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.183602] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.286065] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.388267] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.490698] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.593595] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.710650] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.784688] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.798591] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24035.901115] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.003207] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.105112] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.208109] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.313314] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.412187] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.514683] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24036.626123] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24038.939243] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24039.045727] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24039.103998] ieee80211 phy0: wl0: brcms_c_recv: dropping a frame with invalid src mac address, a2: 00:00:00:00:00:00
[24062.602613] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24062.607359] wlan0: authenticated
[24062.607476] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24062.759493] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=2)
[24062.759498] wlan0: associated
[24062.760585] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24062.760593] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24062.760640] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24072.763147] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24072.763786] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24072.763806] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24072.763823] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24072.894696] cfg80211: Calling CRDA to update world regulatory domain
[24072.895758] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24074.833813] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24074.834094] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[24074.840227] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24074.845038] wlan0: authenticated
[24074.845156] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24074.882483] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[24074.882487] wlan0: associated
[24074.883328] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24074.883334] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24074.883358] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24084.574695] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[24085.065531] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24085.065546] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24085.065556] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24085.065565] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24085.234217] cfg80211: Calling CRDA to update world regulatory domain
[24087.175093] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24087.177978] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24087.223587] wlan0: authenticated
[24087.223755] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24087.260719] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[24087.260724] wlan0: associated
[24087.261619] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24087.261628] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24087.261658] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24104.018231] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24104.018754] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24104.018774] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24104.018785] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24104.183204] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24104.183307] cfg80211: Calling CRDA to update world regulatory domain
[24106.225678] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24106.295465] wlan0: authenticated
[24106.295606] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24106.495137] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24106.695031] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[24106.780714] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=5)
[24106.780719] wlan0: associated
[24106.781599] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24106.781608] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24106.781636] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24116.917451] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24116.917467] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24116.917479] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24116.917488] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24117.082415] cfg80211: Calling CRDA to update world regulatory domain
[24119.021514] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24119.024302] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24119.164848] wlan0: authenticated
[24119.166835] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24119.205321] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=6)
[24119.205326] wlan0: associated
[24119.206180] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24119.206186] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24119.206211] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24124.586283] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24124.586847] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24124.586866] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24124.586876] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24124.628157] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24124.628167] cfg80211: Calling CRDA to update world regulatory domain
[24126.667052] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24126.699963] wlan0: authenticated
[24126.700168] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24126.899992] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24127.017905] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=7)
[24127.017910] wlan0: associated
[24127.018877] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24127.018884] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24127.018909] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24137.286102] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24137.286117] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24137.286130] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24137.286138] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24137.450596] cfg80211: Calling CRDA to update world regulatory domain
[24139.389627] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24139.426918] wlan0: authenticated
[24139.427053] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24139.523436] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=8)
[24139.523440] wlan0: associated
[24139.524304] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24139.524310] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24139.524335] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24148.774196] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[24149.523884] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24149.523899] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24149.523911] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24149.523919] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24149.676903] cfg80211: Calling CRDA to update world regulatory domain
[24151.616749] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24151.682253] wlan0: authenticated
[24151.682435] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24151.694086] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=9)
[24151.694090] wlan0: associated
[24151.694942] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24151.694948] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24151.694973] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24160.207608] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[24161.853717] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24161.853738] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24161.853754] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24161.853781] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24161.973063] cfg80211: Calling CRDA to update world regulatory domain
[24163.916214] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24163.919068] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24164.115069] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24164.118556] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[24164.120282] wlan0: authenticated
[24164.122403] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24164.321635] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24164.486713] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=10)
[24164.486718] wlan0: associated
[24164.487569] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24164.487575] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24164.487599] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24174.342707] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[24300.724249] wlan0: deauthenticated from 00:14:6c:67:9c:32 (Reason: 1)
[24300.724828] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24300.724847] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24300.724858] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24300.862590] cfg80211: Calling CRDA to update world regulatory domain
[24302.844991] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24302.845447] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=2)
[24302.851439] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24303.051247] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24303.056434] wlan0: authenticated
[24303.056620] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24303.254472] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24303.357548] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=11)
[24303.357554] wlan0: associated
[24303.359354] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24303.359361] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24303.359387] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24308.603118] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24308.603723] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24308.603736] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24308.603748] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24308.641502] cfg80211: Calling CRDA to update world regulatory domain
[24308.641568] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24310.680521] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24310.681773] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24310.880055] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24310.880084] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[24311.079933] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[24311.079962] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[24311.279821] wlan0: authentication with 00:14:6c:67:9c:32 timed out
[24311.319772] wlan0: direct probe to 00:21:04:10:d9:bb timed out
[24315.299689] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24315.338498] wlan0: authenticated
[24315.342298] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24315.434248] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=12)
[24315.434254] wlan0: associated
[24315.435555] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24315.435561] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24315.435588] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24319.981326] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24319.981914] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24319.981934] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24319.981945] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24320.034784] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24320.034885] cfg80211: Calling CRDA to update world regulatory domain
[24322.073783] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24322.085592] wlan0: authenticated
[24322.085738] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24322.283418] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24322.303207] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=13)
[24322.303216] wlan0: associated
[24322.304161] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24322.304170] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24322.304200] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24327.748544] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24327.749097] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24327.749110] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24327.749122] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24327.807098] cfg80211: Calling CRDA to update world regulatory domain
[24327.807157] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24329.849303] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24329.850514] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24330.048963] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24330.048989] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[24330.173715] wlan0: authenticated
[24330.175694] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24330.375436] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24330.507532] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=14)
[24330.507537] wlan0: associated
[24330.508401] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24330.508407] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24330.508429] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24335.559092] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24335.559690] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24335.559709] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24335.559719] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24335.612535] cfg80211: Calling CRDA to update world regulatory domain
[24335.612647] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24337.651529] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24337.851084] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24337.864532] wlan0: authenticated
[24337.864711] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24338.064296] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24338.264188] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[24338.464074] wlan0: association with 00:14:6c:67:9c:32 timed out
[24342.445369] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24342.506867] wlan0: authenticated
[24342.506993] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24342.614867] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=2)
[24342.614872] wlan0: associated
[24342.615829] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24342.615835] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24342.615855] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24347.674398] wlan0: disassociated from 00:14:6c:67:9c:32 (Reason: 1)
[24347.675004] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24347.675017] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24347.675029] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24347.715506] cfg80211: Calling CRDA to update world regulatory domain
[24347.715599] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24349.757773] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24349.758968] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24349.957427] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24349.957451] wlan0: direct probe to 00:21:04:10:d9:bb (try 2/3)
[24350.157312] wlan0: authenticate with 00:14:6c:67:9c:32 (try 3)
[24350.157335] wlan0: direct probe to 00:21:04:10:d9:bb (try 3/3)
[24350.352914] wlan0: authenticated
[24350.354946] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24350.393016] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=3)
[24350.393021] wlan0: associated
[24350.393884] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24350.393892] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24350.393917] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24361.847386] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 1 (implement)
[24521.403299] wlan0: deauthenticated from 00:14:6c:67:9c:32 (Reason: 7)
[24521.403882] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24521.403901] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24521.403911] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 1 (implement)
[24521.474874] cfg80211: Calling CRDA to update world regulatory domain
[24523.490389] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24523.690095] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24523.718164] wlan0: authenticated
[24523.718333] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24523.916603] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24524.116518] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[24524.312450] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=4)
[24524.312455] wlan0: associated
[24524.313445] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24524.313452] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24524.313477] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
[24534.309525] wlan0: disassociating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24534.310103] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24534.310115] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: disassociated
[24534.310127] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled false, count 0 (implement)
[24534.347418] cfg80211: Calling CRDA to update world regulatory domain
[24534.349136] wlan0: deauthenticating from 00:14:6c:67:9c:32 by local choice (reason=3)
[24536.286315] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24536.486012] wlan0: authenticate with 00:14:6c:67:9c:32 (try 2)
[24536.650794] wlan0: authenticated
[24536.650987] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24536.849093] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24537.049004] wlan0: associate with 00:14:6c:67:9c:32 (try 3)
[24537.248886] wlan0: association with 00:14:6c:67:9c:32 timed out
[24543.222454] wlan0: direct probe to 00:14:6c:67:9c:32 (try 1/3)
[24543.421975] wlan0: direct probe to 00:14:6c:67:9c:32 (try 2/3)
[24543.621865] wlan0: direct probe to 00:14:6c:67:9c:32 (try 3/3)
[24543.821773] wlan0: direct probe to 00:14:6c:67:9c:32 timed out
[24550.158307] wlan0: authenticate with 00:14:6c:67:9c:32 (try 1)
[24550.161167] wlan0: direct probe to 00:21:04:10:d9:bb (try 1/3)
[24550.323150] wlan0: authenticated
[24550.325195] wlan0: associate with 00:14:6c:67:9c:32 (try 1)
[24550.524512] wlan0: associate with 00:14:6c:67:9c:32 (try 2)
[24550.627282] wlan0: RX ReassocResp from 00:14:6c:67:9c:32 (capab=0x211 status=0 aid=6)
[24550.627287] wlan0: associated
[24550.628227] ieee80211 phy0: brcms_ops_bss_info_changed: qos enabled: false (implement)
[24550.628233] ieee80211 phy0: brcmsmac: brcms_ops_bss_info_changed: associated
[24550.628259] ieee80211 phy0: brcms_ops_bss_info_changed: arp filtering: enabled true, count 0 (implement)
^ permalink raw reply
* Re: Setting negative value in dBm for power output (txpower)
From: Adrian Chadd @ 2011-10-22 1:44 UTC (permalink / raw)
To: Patryk Żółtowski; +Cc: linux-wireless
In-Reply-To: <CAJ5hJZSm4P5Vpzmi6yfF3vy2XAMKH9kE-Kv=FfDLVX9DwQC4Aw@mail.gmail.com>
Hi,
The AR9280 and later atheros NICs support a minimum TX power of -5 dBm.
It depends on what the actual NIC manufacturer does (if they glue an
amplifier on the end, then all bets are off) but the chipsets are
capable of it.
It's also possible someone's glued attenuators to pre-AR9280 series
NICs to achieve the same output. Or you could do the same.
But at that point you're not communicating < 0 dBm to the NIC, and I
don't think cfg80211 has the idea of a TX power offset (ie, that the
NIC output is +/- x dBm different to the programmed value.)
HTH,
Adrian
^ permalink raw reply
* Re: ath9k: irq storm after suspend/resume
From: Adrian Chadd @ 2011-10-22 0:47 UTC (permalink / raw)
To: Clemens Buchacher; +Cc: Mohammed Shafi, linux-wireless, ath9k-devel
In-Reply-To: <20111021202038.GA1523@ecki.lan>
.. then I don't think it's specifically the NIC.
>From what I understand, unless there are bus errors happening (and
that'd occur with the NIC awake or having something being written to
it) the NIC shouldn't be generating interrupts if:
* sync/async cause are 0;
* ier is 0;
* imr is 0.
Now maybe some part of ath9k is still trying to write to the NIC when
it's asleep, but it would set some bits in sync_cause/async_cause.
At this point I'd really suggest whacking other devices into the slot
to see if they generate the same kind of behaviour.
Adrian
^ permalink raw reply
* Re: where to find ipw2200 driver files for backtrac 5
From: Gábor Stefanik @ 2011-10-21 23:35 UTC (permalink / raw)
To: Patrick Trépanier-Gravelle; +Cc: linux-wireless
In-Reply-To: <CALVkfMpoyY9j3g3GjnWAdvZSuWMjDQT-m1HAMtJJMJXy2pot+A@mail.gmail.com>
I'm pretty sure BackTrack 5 has the ipw2200 driver included already.
Try "modprobe ipw2200".
2011/10/22 Patrick Trépanier-Gravelle <ptrepanierg@gmail.com>:
> I cant find the driver for my dell inspiron 700m laptop I tried the
> NDISSwrapper method but I cant extract the .inf file from the .EXE
> seems it isn't the right type of file.
> I would like to know where I could find the linux native drivers for
> ipw2200bg card.
>
> Thank you,
>
> Patrick
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
^ permalink raw reply
* where to find ipw2200 driver files for backtrac 5
From: Patrick Trépanier-Gravelle @ 2011-10-21 22:45 UTC (permalink / raw)
To: linux-wireless
I cant find the driver for my dell inspiron 700m laptop I tried the
NDISSwrapper method but I cant extract the .inf file from the .EXE
seems it isn't the right type of file.
I would like to know where I could find the linux native drivers for
ipw2200bg card.
Thank you,
Patrick
^ permalink raw reply
* Re: Setting negative value in dBm for power output (txpower)
From: wwguy @ 2011-10-21 22:00 UTC (permalink / raw)
To: Patryk Żółtowski; +Cc: linux-wireless@vger.kernel.org
In-Reply-To: <CAJ5hJZSm4P5Vpzmi6yfF3vy2XAMKH9kE-Kv=FfDLVX9DwQC4Aw@mail.gmail.com>
On Fri, 2011-10-21 at 14:35 -0700, Patryk Żółtowski wrote:
> I'm doing a research and I'm wondering if it's possible to hack
> wireless drivers to allow setting txpower to smaller value than 1mW
> (e.g. 0.1mW = -10dBM, or even 0.01mW). I've checked source code and in
> net/mac80211/cfg.c there is the following check:
>
> if (mbm < 0 || (mbm % 100))
> return -EOPNOTSUPP;
>
> and in e.g. in drivers/net/wireless/iwlwifi/iwl-4965.h also the min
> power output is limited by this define:
>
> IWL_TX_POWER_TARGET_POWER_MIN (0)
>
> Is it possible to modify source to allow negative power output in dBm
> that would work? Or is it physical limitation from the hardware? I'm
> doing just a research using Intel Corporation PRO/Wireless 4965 AG
> card and right now I don't require to support other hardware. Is
> there any way to check minimum power output capability by given
> wireless card? I'm not proficient with driver hacking so any hint
> where to start (which file to look up, references) would be helpful.
>
First, what kernel you are using, the latest iwlegacy driver does not
has IWL_TX_POWER_TARGET_POWER_MIN defined.
Also, for 4965, even the tx power table is filled and send by the
driver, but firmware still has the final call and I do not believe
negative power output is possible. Plus I don't think the tx power HCMD
can support negative value.
BTW, 4965 is the last Intel WiFi device still has tx power table filled
by the driver, starting from 5000 series, tx power is control by the
firmware.
Thanks
Wey
^ permalink raw reply
* Re: Setting negative value in dBm for power output (txpower)
From: Gábor Stefanik @ 2011-10-21 22:02 UTC (permalink / raw)
To: Patryk Żółtowski; +Cc: linux-wireless
In-Reply-To: <CAJ5hJZSm4P5Vpzmi6yfF3vy2XAMKH9kE-Kv=FfDLVX9DwQC4Aw@mail.gmail.com>
2011/10/21 Patryk Żółtowski <patryk.zoltowski@gmail.com>:
> I'm doing a research and I'm wondering if it's possible to hack
> wireless drivers to allow setting txpower to smaller value than 1mW
> (e.g. 0.1mW = -10dBM, or even 0.01mW). I've checked source code and in
> net/mac80211/cfg.c there is the following check:
>
> if (mbm < 0 || (mbm % 100))
> return -EOPNOTSUPP;
The "mbm % 100" part is even weirder; why do we even use millibels if
we only allow whole-decibel values?
>
> and in e.g. in drivers/net/wireless/iwlwifi/iwl-4965.h also the min
> power output is limited by this define:
>
> IWL_TX_POWER_TARGET_POWER_MIN (0)
>
> Is it possible to modify source to allow negative power output in dBm
> that would work? Or is it physical limitation from the hardware? I'm
> doing just a research using Intel Corporation PRO/Wireless 4965 AG
> card and right now I don't require to support other hardware. Is
> there any way to check minimum power output capability by given
> wireless card? I'm not proficient with driver hacking so any hint
> where to start (which file to look up, references) would be helpful.
>
> Thanks,
> Patryk
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
^ permalink raw reply
* Setting negative value in dBm for power output (txpower)
From: Patryk Żółtowski @ 2011-10-21 21:35 UTC (permalink / raw)
To: linux-wireless
I'm doing a research and I'm wondering if it's possible to hack
wireless drivers to allow setting txpower to smaller value than 1mW
(e.g. 0.1mW = -10dBM, or even 0.01mW). I've checked source code and in
net/mac80211/cfg.c there is the following check:
if (mbm < 0 || (mbm % 100))
return -EOPNOTSUPP;
and in e.g. in drivers/net/wireless/iwlwifi/iwl-4965.h also the min
power output is limited by this define:
IWL_TX_POWER_TARGET_POWER_MIN (0)
Is it possible to modify source to allow negative power output in dBm
that would work? Or is it physical limitation from the hardware? I'm
doing just a research using Intel Corporation PRO/Wireless 4965 AG
card and right now I don't require to support other hardware. Is
there any way to check minimum power output capability by given
wireless card? I'm not proficient with driver hacking so any hint
where to start (which file to look up, references) would be helpful.
Thanks,
Patryk
^ permalink raw reply
* Any wireless cards with this debug capability?
From: George Nychis @ 2011-10-21 21:09 UTC (permalink / raw)
To: linux-wireless@vger.kernel.org; +Cc: Eric Rozner
We are finding that under certain scenarios, various WiFi cards
(Atheros, Intel, ...) fail to decode incoming packets for certain
periods of time on the order of 5->20ms. We are trying to enable a
low-latency wireless link in which losses during this window break our
requirement. A retransmission would essentially be too late.
During this period, we are trying to determine the reason for loss.
Whether it is fading, improper tuning of AGC, failure to account for
frequency offset, etc. Ideally, what we would like to know is whether
the card *tried* to acquire the carrier and if so, where it failed. I
have noticed several Atheros kernel debug counters which show things
such as a PHY error, but it's not clear at what stage it failed.
Are there any firmwares or drivers paired with off the shelf 802.11
cards which would be good for trying to debug this?
Thanks!
George
^ permalink raw reply
* Re: ath9k: irq storm after suspend/resume
From: Clemens Buchacher @ 2011-10-21 20:20 UTC (permalink / raw)
To: Adrian Chadd; +Cc: Mohammed Shafi, linux-wireless, ath9k-devel
In-Reply-To: <CAJ-Vmonaec_i5d_LGupY5uwzMUn3CzNn-rGSh6oqLOHc8ewFVg@mail.gmail.com>
On Fri, Oct 21, 2011 at 10:10:21PM +0800, Adrian Chadd wrote:
>
> I assume you have disabled the NIC power save option. Not just APSM,
> etc, but the powersave options in iw. I don't know what they are,
> sorry, only that they exist.
I am not sure if that's what you mean, but if I set "iwconfig wlan0
power off" it makes no difference.
> I suggest modifying ath_intr() so if there is an interrupt storm,
> disable _all_ sources of interrupts (ie, set sync_cause, async_cause
> to 0, set imr to 0, set ier to 0) and see if it continues occuring.
They keep coming with this too.
> If the interrupt storm continue occuring, try putting the whole NIC to
> sleep entirely (ie, call pcipowersave to put the NIC to sleep, then
> make sure the NIC -stays- asleep somehow, ie so nothing else tries
> waking it up - I don't know how to do this, likely you'll have to
> clear some interface flag so the rest of the ath9k and 802.11 stack
> thinks the nic is actually down for the count) and see if you're still
> getting spurious interrupts.
I am now calling
ath9k_hw_ops(sc->sc_ah)->config_pci_powersave(sc->sc_ah, true);
ath9k_setpower(sc, ATH9K_PM_FULL_SLEEP);
right before request_irq, and the interrupts still come. And the
device is in FULL_SLEEP the whole time, at least according to
ah->power_mode.
Clemens
^ 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