* Re: [PATCH] rt2x00: rt2800lib: update rfcsr & bbp init code for SoC devices
From: Gertjan van Wingerde @ 2010-04-28 8:12 UTC (permalink / raw)
To: Helmut Schaa; +Cc: John Linville, Ivo van Doorn, linux-wireless
In-Reply-To: <201004280958.59704.helmut.schaa@googlemail.com>
2010/4/28 Helmut Schaa <helmut.schaa@googlemail.com>:
> Update the rfcsr and bbp init code for SoC devices to match with the
> latest Ralink driver.
>
> To have better control over which values are used for the register
> initialization create a new function rt2800_is_305x_soc which checks
> for SoC interface type, the correct RT chipset and the correct RF
> chipset. This is based on the assumption that all rt305x SoC devices
> use a rt2872 and rf3020/rf3021/rf3022.
>
> In case an unknown RF chipset is found on a SoC device with a rt2872
> don't treat it as rt305x and just print a message.
>
> Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Looks good to me.
Acked-by: Gertjan van Wingerde <gwingerde@gmail.com>
> ---
>
> Gertjan, this approach should be pretty safe and if there really exists
> a rt305x board with a different rf chipset we'll get a log message.
>
> At the moment rt2800_is_305x_soc is only used in rt2800lib.c but maybe
> it's worth to move it to one of the headers?
Well, at the moment I don't see a use case beyond rt2800lib.c.
So, let's leave it where it is now, and we'll move it when the need to
move it to
a header file when the need arises.
>
> drivers/net/wireless/rt2x00/rt2800lib.c | 43 ++++++++++++++++++++++++------
> 1 files changed, 34 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c
> index 50f4451..e7a61a3 100644
> --- a/drivers/net/wireless/rt2x00/rt2800lib.c
> +++ b/drivers/net/wireless/rt2x00/rt2800lib.c
> @@ -76,6 +76,23 @@ MODULE_LICENSE("GPL");
> rt2800_regbusy_read((__dev), H2M_MAILBOX_CSR, \
> H2M_MAILBOX_CSR_OWNER, (__reg))
>
> +static inline bool rt2800_is_305x_soc(struct rt2x00_dev *rt2x00dev)
> +{
> + /* check for rt2872 on SoC */
> + if (!rt2x00_is_soc(rt2x00dev) ||
> + !rt2x00_rt(rt2x00dev, RT2872))
> + return false;
> +
> + /* we know for sure that these rf chipsets are used on rt305x boards */
> + if (rt2x00_rf(rt2x00dev, RF3020) ||
> + rt2x00_rf(rt2x00dev, RF3021) ||
> + rt2x00_rf(rt2x00dev, RF3022))
> + return true;
> +
> + NOTICE(rt2x00dev, "Unknown RF chipset on rt305x\n");
> + return false;
> +}
> +
> static void rt2800_bbp_write(struct rt2x00_dev *rt2x00dev,
> const unsigned int word, const u8 value)
> {
> @@ -1556,6 +1573,9 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
> rt2800_wait_bbp_ready(rt2x00dev)))
> return -EACCES;
>
> + if (rt2800_is_305x_soc(rt2x00dev))
> + rt2800_bbp_write(rt2x00dev, 31, 0x08);
> +
> rt2800_bbp_write(rt2x00dev, 65, 0x2c);
> rt2800_bbp_write(rt2x00dev, 66, 0x38);
>
> @@ -1576,6 +1596,9 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
> rt2800_bbp_write(rt2x00dev, 79, 0x13);
> rt2800_bbp_write(rt2x00dev, 80, 0x05);
> rt2800_bbp_write(rt2x00dev, 81, 0x33);
> + } else if (rt2800_is_305x_soc(rt2x00dev)) {
> + rt2800_bbp_write(rt2x00dev, 78, 0x0e);
> + rt2800_bbp_write(rt2x00dev, 80, 0x08);
> } else {
> rt2800_bbp_write(rt2x00dev, 81, 0x37);
> }
> @@ -1596,12 +1619,16 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
> if (rt2x00_rt_rev_gte(rt2x00dev, RT3070, REV_RT3070F) ||
> rt2x00_rt_rev_gte(rt2x00dev, RT3071, REV_RT3071E) ||
> rt2x00_rt_rev_gte(rt2x00dev, RT3090, REV_RT3090E) ||
> - rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E))
> + rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E) ||
> + rt2800_is_305x_soc(rt2x00dev))
> rt2800_bbp_write(rt2x00dev, 103, 0xc0);
> else
> rt2800_bbp_write(rt2x00dev, 103, 0x00);
>
> - rt2800_bbp_write(rt2x00dev, 105, 0x05);
> + if (rt2800_is_305x_soc(rt2x00dev))
> + rt2800_bbp_write(rt2x00dev, 105, 0x01);
> + else
> + rt2800_bbp_write(rt2x00dev, 105, 0x05);
> rt2800_bbp_write(rt2x00dev, 106, 0x35);
>
> if (rt2x00_rt(rt2x00dev, RT3071) ||
> @@ -1618,11 +1645,6 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
> rt2800_bbp_write(rt2x00dev, 138, value);
> }
>
> - if (rt2x00_rt(rt2x00dev, RT2872)) {
> - rt2800_bbp_write(rt2x00dev, 31, 0x08);
> - rt2800_bbp_write(rt2x00dev, 78, 0x0e);
> - rt2800_bbp_write(rt2x00dev, 80, 0x08);
> - }
>
> for (i = 0; i < EEPROM_BBP_SIZE; i++) {
> rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
> @@ -1709,7 +1731,7 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
> !rt2x00_rt(rt2x00dev, RT3071) &&
> !rt2x00_rt(rt2x00dev, RT3090) &&
> !rt2x00_rt(rt2x00dev, RT3390) &&
> - !(rt2x00_is_soc(rt2x00dev) && rt2x00_rt(rt2x00dev, RT2872)))
> + !rt2800_is_305x_soc(rt2x00dev))
> return 0;
>
> /*
> @@ -1777,7 +1799,7 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
> rt2800_rfcsr_write(rt2x00dev, 29, 0x8f);
> rt2800_rfcsr_write(rt2x00dev, 30, 0x20);
> rt2800_rfcsr_write(rt2x00dev, 31, 0x0f);
> - } else if (rt2x00_rt(rt2x00dev, RT2872)) {
> + } else if (rt2800_is_305x_soc(rt2x00dev)) {
> rt2800_rfcsr_write(rt2x00dev, 0, 0x50);
> rt2800_rfcsr_write(rt2x00dev, 1, 0x01);
> rt2800_rfcsr_write(rt2x00dev, 2, 0xf7);
> @@ -1808,6 +1830,9 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
> rt2800_rfcsr_write(rt2x00dev, 27, 0x23);
> rt2800_rfcsr_write(rt2x00dev, 28, 0x13);
> rt2800_rfcsr_write(rt2x00dev, 29, 0x83);
> + rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
> + rt2800_rfcsr_write(rt2x00dev, 31, 0x00);
> + return 0;
> }
>
> if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
> --
> 1.6.4.2
>
>
^ permalink raw reply
* kernel warning on 2.6.33 ath9k
From: Xu, Martin @ 2010-04-28 8:01 UTC (permalink / raw)
To: ath9k-devel@lists.ath5k.org, linux-wireless@vger.kernel.org
In-Reply-To: <1272438045.2772.6.camel@jm-desktop>
SGkNCkkgZm91bmQgdGhhdCBrZXJuZWwgcmVwb3J0cyBiZWxvdyB3YXJuaW5nIHdoZW4gdXNpbmcg
YXRoOWsgaW4ga2VybmVsIDIuNi4zMy4NClNvbWVvbmUgY2FuIGtpbmRseSB0ZWxsIG1lIHdoZXRo
ZXIgaXQgaXMgdGhlIG5ldyBmb3VuZCBpc3N1ZSBvciB0aGUgaXNzdWUgaXMga25vd24gYW5kIGhh
cyBiZWVuIGZpeGVkIGluIGxhdGVyIGNvbW1pdCBpbiBnaXQgdHJlZT8NClRoYW5rcyENCg0KLS0t
LS0tLS0tLS0tWyBjdXQgaGVyZSBdLS0tLS0tLS0tLS0tDQpXQVJOSU5HOiBhdCBrZXJuZWwvc29m
dGlycS5jOjE0MyBsb2NhbF9iaF9lbmFibGVfaXArMHgzMi8weDc2KCkNCkhhcmR3YXJlIG5hbWU6
IEFPNTMyaCAgICAgICAgICANCk1vZHVsZXMgbGlua2VkIGluOiBjYmMgZWNyeXB0ZnMgYXRoOWsg
YXRoOWtfY29tbW9uIGJhdHRlcnkgYXRsMWMgam95ZGV2IGF0aDlrX2h3IHV2Y3ZpZGVvDQpQaWQ6
IDg1MCwgY29tbTogd3BhX3N1cHBsaWNhbnQgTm90IHRhaW50ZWQgMi42LjMzLjItOC4xLW5ldGJv
b2sgIzENCkNhbGwgVHJhY2U6DQogWzxjMTAzMDk3OD5dIHdhcm5fc2xvd3BhdGhfY29tbW9uKzB4
NjYvMHg3ZA0KIFs8YzEwMzVhNzQ+XSA/IGxvY2FsX2JoX2VuYWJsZV9pcCsweDMyLzB4NzYNCiBb
PGMxMDMwOTljPl0gd2Fybl9zbG93cGF0aF9udWxsKzB4ZC8weDEwDQogWzxjMTAzNWE3ND5dIGxv
Y2FsX2JoX2VuYWJsZV9pcCsweDMyLzB4NzYNCiBbPGMxNDc4OWMwPl0gX3Jhd19zcGluX3VubG9j
a19iaCsweDE3LzB4MTkNCiBbPGY4NzFkYmQzPl0gYXRoX3R4X25vZGVfY2xlYW51cCsweGUwLzB4
ZjkgW2F0aDlrXQ0KIFs8YzEwM2FlNDY+XSA/IGxvY2tfdGltZXJfYmFzZSsweDIyLzB4NDENCiBb
PGY4NzFhMDA1Pl0gYXRoOWtfc3RhX25vdGlmeSsweDc0LzB4NzggW2F0aDlrXQ0KIFs8YzE0NDM5
ODc+XSBfX3N0YV9pbmZvX3VubGluaysweDEzOS8weDE4OQ0KIFs8Zjg3MTlmOTE+XSA/IGF0aDlr
X3N0YV9ub3RpZnkrMHgwLzB4NzggW2F0aDlrXQ0KIFs8YzE0NDM5ZmE+XSBzdGFfaW5mb191bmxp
bmsrMHgyMy8weDMxDQogWzxjMTQ0ODgzND5dIGllZWU4MDIxMV9zZXRfZGlzYXNzb2MrMHgxYmQv
MHgxZTMNCiBbPGMxNDQ4Y2Y4Pl0gaWVlZTgwMjExX21nZF9kZWF1dGgrMHgzYy8weGZlDQogWzxj
MTQ0ZGYyMT5dIGllZWU4MDIxMV9kZWF1dGgrMHgxNC8weDE2DQogWzxjMTQzYzNmYz5dIF9fY2Zn
ODAyMTFfbWxtZV9kZWF1dGgrMHhlOS8weGYyDQogWzxjMTQzZWVhMT5dIF9fY2ZnODAyMTFfZGlz
Y29ubmVjdCsweGNiLzB4MTJlDQogWzxjMTQ0MGI3ND5dIGNmZzgwMjExX3dleHRfc2l3bWxtZSsw
eDY0LzB4ODANCiBbPGMxNDQxY2Y2Pl0gaW9jdGxfc3RhbmRhcmRfY2FsbCsweDFkNy8weDI2Zg0K
IFs8YzEzOTI4MWI+XSA/IGRldl9nZXRfYnlfbmFtZV9yY3UrMHg3My8weDgwDQogWzxjMTM5Mjhk
OT5dID8gX19kZXZfZ2V0X2J5X25hbWUrMHg3MS8weDdlDQogWzxjMTQ0MWU4MT5dIHdleHRfaGFu
ZGxlX2lvY3RsKzB4ZjMvMHgxN2UNCiBbPGMxNDQwYjEwPl0gPyBjZmc4MDIxMV93ZXh0X3Npd21s
bWUrMHgwLzB4ODANCiBbPGMxMzk2NDEwPl0gZGV2X2lvY3RsKzB4NTc4LzB4NTk4DQogWzxjMTAw
OTFiOT5dID8gcmVzdG9yZV9pMzg3X2Z4c2F2ZSsweDU0LzB4NjYNCiBbPGMxMzg3YjQ0Pl0gc29j
a19pb2N0bCsweDFjZi8weDFkYg0KIFs8YzEwYjA5Nzk+XSB2ZnNfaW9jdGwrMHgyOC8weDkyDQog
WzxjMTM4Nzk3NT5dID8gc29ja19pb2N0bCsweDAvMHgxZGINCiBbPGMxMGIwZWQ2Pl0gZG9fdmZz
X2lvY3RsKzB4NDUzLzB4NDkxDQogWzxjMTM4ODIzMz5dID8gc3lzX3JlY3Ztc2crMHgyYy8weDQ3
DQogWzxjMTM4OTU0Mj5dID8gc3lzX3NvY2tldGNhbGwrMHgxNDcvMHgxOGMNCiBbPGMxMGIwZjQz
Pl0gc3lzX2lvY3RsKzB4MmYvMHg0OQ0KIFs8YzEwMDI3ZDA+XSBzeXNlbnRlcl9kb19jYWxsKzB4
MTIvMHgyNg0KDQo=
^ permalink raw reply
* [PATCH] rt2x00: rt2800lib: update rfcsr & bbp init code for SoC devices
From: Helmut Schaa @ 2010-04-28 7:58 UTC (permalink / raw)
To: John Linville; +Cc: Gertjan van Wingerde, Ivo van Doorn, linux-wireless
Update the rfcsr and bbp init code for SoC devices to match with the
latest Ralink driver.
To have better control over which values are used for the register
initialization create a new function rt2800_is_305x_soc which checks
for SoC interface type, the correct RT chipset and the correct RF
chipset. This is based on the assumption that all rt305x SoC devices
use a rt2872 and rf3020/rf3021/rf3022.
In case an unknown RF chipset is found on a SoC device with a rt2872
don't treat it as rt305x and just print a message.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
---
Gertjan, this approach should be pretty safe and if there really exists
a rt305x board with a different rf chipset we'll get a log message.
At the moment rt2800_is_305x_soc is only used in rt2800lib.c but maybe
it's worth to move it to one of the headers?
drivers/net/wireless/rt2x00/rt2800lib.c | 43 ++++++++++++++++++++++++------
1 files changed, 34 insertions(+), 9 deletions(-)
diff --git a/drivers/net/wireless/rt2x00/rt2800lib.c b/drivers/net/wireless/rt2x00/rt2800lib.c
index 50f4451..e7a61a3 100644
--- a/drivers/net/wireless/rt2x00/rt2800lib.c
+++ b/drivers/net/wireless/rt2x00/rt2800lib.c
@@ -76,6 +76,23 @@ MODULE_LICENSE("GPL");
rt2800_regbusy_read((__dev), H2M_MAILBOX_CSR, \
H2M_MAILBOX_CSR_OWNER, (__reg))
+static inline bool rt2800_is_305x_soc(struct rt2x00_dev *rt2x00dev)
+{
+ /* check for rt2872 on SoC */
+ if (!rt2x00_is_soc(rt2x00dev) ||
+ !rt2x00_rt(rt2x00dev, RT2872))
+ return false;
+
+ /* we know for sure that these rf chipsets are used on rt305x boards */
+ if (rt2x00_rf(rt2x00dev, RF3020) ||
+ rt2x00_rf(rt2x00dev, RF3021) ||
+ rt2x00_rf(rt2x00dev, RF3022))
+ return true;
+
+ NOTICE(rt2x00dev, "Unknown RF chipset on rt305x\n");
+ return false;
+}
+
static void rt2800_bbp_write(struct rt2x00_dev *rt2x00dev,
const unsigned int word, const u8 value)
{
@@ -1556,6 +1573,9 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
rt2800_wait_bbp_ready(rt2x00dev)))
return -EACCES;
+ if (rt2800_is_305x_soc(rt2x00dev))
+ rt2800_bbp_write(rt2x00dev, 31, 0x08);
+
rt2800_bbp_write(rt2x00dev, 65, 0x2c);
rt2800_bbp_write(rt2x00dev, 66, 0x38);
@@ -1576,6 +1596,9 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
rt2800_bbp_write(rt2x00dev, 79, 0x13);
rt2800_bbp_write(rt2x00dev, 80, 0x05);
rt2800_bbp_write(rt2x00dev, 81, 0x33);
+ } else if (rt2800_is_305x_soc(rt2x00dev)) {
+ rt2800_bbp_write(rt2x00dev, 78, 0x0e);
+ rt2800_bbp_write(rt2x00dev, 80, 0x08);
} else {
rt2800_bbp_write(rt2x00dev, 81, 0x37);
}
@@ -1596,12 +1619,16 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
if (rt2x00_rt_rev_gte(rt2x00dev, RT3070, REV_RT3070F) ||
rt2x00_rt_rev_gte(rt2x00dev, RT3071, REV_RT3071E) ||
rt2x00_rt_rev_gte(rt2x00dev, RT3090, REV_RT3090E) ||
- rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E))
+ rt2x00_rt_rev_gte(rt2x00dev, RT3390, REV_RT3390E) ||
+ rt2800_is_305x_soc(rt2x00dev))
rt2800_bbp_write(rt2x00dev, 103, 0xc0);
else
rt2800_bbp_write(rt2x00dev, 103, 0x00);
- rt2800_bbp_write(rt2x00dev, 105, 0x05);
+ if (rt2800_is_305x_soc(rt2x00dev))
+ rt2800_bbp_write(rt2x00dev, 105, 0x01);
+ else
+ rt2800_bbp_write(rt2x00dev, 105, 0x05);
rt2800_bbp_write(rt2x00dev, 106, 0x35);
if (rt2x00_rt(rt2x00dev, RT3071) ||
@@ -1618,11 +1645,6 @@ int rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
rt2800_bbp_write(rt2x00dev, 138, value);
}
- if (rt2x00_rt(rt2x00dev, RT2872)) {
- rt2800_bbp_write(rt2x00dev, 31, 0x08);
- rt2800_bbp_write(rt2x00dev, 78, 0x0e);
- rt2800_bbp_write(rt2x00dev, 80, 0x08);
- }
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
@@ -1709,7 +1731,7 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
!rt2x00_rt(rt2x00dev, RT3071) &&
!rt2x00_rt(rt2x00dev, RT3090) &&
!rt2x00_rt(rt2x00dev, RT3390) &&
- !(rt2x00_is_soc(rt2x00dev) && rt2x00_rt(rt2x00dev, RT2872)))
+ !rt2800_is_305x_soc(rt2x00dev))
return 0;
/*
@@ -1777,7 +1799,7 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
rt2800_rfcsr_write(rt2x00dev, 29, 0x8f);
rt2800_rfcsr_write(rt2x00dev, 30, 0x20);
rt2800_rfcsr_write(rt2x00dev, 31, 0x0f);
- } else if (rt2x00_rt(rt2x00dev, RT2872)) {
+ } else if (rt2800_is_305x_soc(rt2x00dev)) {
rt2800_rfcsr_write(rt2x00dev, 0, 0x50);
rt2800_rfcsr_write(rt2x00dev, 1, 0x01);
rt2800_rfcsr_write(rt2x00dev, 2, 0xf7);
@@ -1808,6 +1830,9 @@ int rt2800_init_rfcsr(struct rt2x00_dev *rt2x00dev)
rt2800_rfcsr_write(rt2x00dev, 27, 0x23);
rt2800_rfcsr_write(rt2x00dev, 28, 0x13);
rt2800_rfcsr_write(rt2x00dev, 29, 0x83);
+ rt2800_rfcsr_write(rt2x00dev, 30, 0x00);
+ rt2800_rfcsr_write(rt2x00dev, 31, 0x00);
+ return 0;
}
if (rt2x00_rt_rev_lt(rt2x00dev, RT3070, REV_RT3070F)) {
--
1.6.4.2
^ permalink raw reply related
* Re: [PATCH] ath9k: Added get_survey callback in order to get channel noise
From: Jouni Malinen @ 2010-04-28 7:00 UTC (permalink / raw)
To: Benoit Papillault
Cc: Luis Rodriguez, ath9k-devel@lists.ath5k.org,
linux-wireless@vger.kernel.org
In-Reply-To: <1272406104-6870-1-git-send-email-benoit.papillault@free.fr>
On Tue, 2010-04-27 at 15:08 -0700, Benoit Papillault wrote:
> +static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
> + struct survey_info *survey)
> + struct ieee80211_conf *conf = &hw->conf;
> +
> + if (idx != 0)
> + return -ENOENT;
> +
> + survey->channel = conf->channel;
Are there any plans on providing this information from all channels? I
have assumed that the survey command was supposed to be used for
surveying all channels (e.g., to get information for auto-channel
selection) and returning something for the current channel is quite
limited subset of that. In other words, I would like to be able to run a
scan of all channels and then use NL80211_CMD_GET_SURVEY to fetch
additional per-channel information like noise (and also channel usage
statistics in case of ath9k) from the scanned channels.
- Jouni
^ permalink raw reply
* [PATCH 2/4] wl1271: Configure QOS nullfunc template for U-APSD
From: Luciano Coelho @ 2010-04-28 6:50 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, Saravanan Dhanabal
In-Reply-To: <1272437402-28801-1-git-send-email-luciano.coelho@nokia.com>
From: Saravanan Dhanabal <ext-saravanan.dhanabal@nokia.com>
When U-APSD is enabled, device is not sending power save
state notifications to AP using QOS nullfunc frames.
This patch configures nullfunc templates needed for U-APSD.
Signed-off-by: Saravanan Dhanabal <ext-saravanan.dhanabal@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
---
drivers/net/wireless/wl12xx/wl1271_main.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c
index e53dfc9..26e8fb1 100644
--- a/drivers/net/wireless/wl12xx/wl1271_main.c
+++ b/drivers/net/wireless/wl12xx/wl1271_main.c
@@ -1708,6 +1708,10 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
if (ret < 0)
goto out_sleep;
+ ret = wl1271_build_qos_null_data(wl);
+ if (ret < 0)
+ goto out_sleep;
+
/* filter out all packets not from this BSSID */
wl1271_configure_filters(wl, 0);
--
1.6.3.3
^ permalink raw reply related
* [PATCH 3/4] wl1271: Rewrite hardware keep-alive handling
From: Luciano Coelho @ 2010-04-28 6:50 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, Juuso Oikarinen
In-Reply-To: <1272437402-28801-1-git-send-email-luciano.coelho@nokia.com>
From: Juuso Oikarinen <juuso.oikarinen@nokia.com>
The driver had a join command without keep-alive restart procedures in the
channel changing code. After associated scans, the mac80211 does re-set the
current channel, causing the join to occur. This would stop the hardware
keep alive.
To make the joins safer in this respect, this patch adds a join function that
does the hardware-keep-alive magic along the join. This is now invoked in the
above mentioned scenario, and also other scenarios.
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: Teemu Paasikivi <ext-teemu.3.paasikivi@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
---
drivers/net/wireless/wl12xx/wl1271_main.c | 91 +++++++++++++++--------------
1 files changed, 46 insertions(+), 45 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c
index 26e8fb1..466106e 100644
--- a/drivers/net/wireless/wl12xx/wl1271_main.c
+++ b/drivers/net/wireless/wl12xx/wl1271_main.c
@@ -1118,14 +1118,13 @@ static void wl1271_configure_filters(struct wl1271 *wl, unsigned int filters)
}
}
-static int wl1271_join_channel(struct wl1271 *wl, int channel)
+static int wl1271_dummy_join(struct wl1271 *wl)
{
int ret = 0;
/* we need to use a dummy BSSID for now */
static const u8 dummy_bssid[ETH_ALEN] = { 0x0b, 0xad, 0xde,
0xad, 0xbe, 0xef };
- wl->channel = channel;
memcpy(wl->bssid, dummy_bssid, ETH_ALEN);
/* pass through frames from all BSS */
@@ -1141,7 +1140,47 @@ out:
return ret;
}
-static int wl1271_unjoin_channel(struct wl1271 *wl)
+static int wl1271_join(struct wl1271 *wl)
+{
+ int ret;
+
+ ret = wl1271_cmd_join(wl, wl->set_bss_type);
+ if (ret < 0)
+ goto out;
+
+ set_bit(WL1271_FLAG_JOINED, &wl->flags);
+
+ if (!test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
+ goto out;
+
+ /*
+ * The join command disable the keep-alive mode, shut down its process,
+ * and also clear the template config, so we need to reset it all after
+ * the join. The acx_aid starts the keep-alive process, and the order
+ * of the commands below is relevant.
+ */
+ ret = wl1271_acx_keep_alive_mode(wl, true);
+ if (ret < 0)
+ goto out;
+
+ ret = wl1271_acx_aid(wl, wl->aid);
+ if (ret < 0)
+ goto out;
+
+ ret = wl1271_cmd_build_klv_null_data(wl);
+ if (ret < 0)
+ goto out;
+
+ ret = wl1271_acx_keep_alive_config(wl, CMD_TEMPL_KLV_IDX_NULL_DATA,
+ ACX_KEEP_ALIVE_TPL_VALID);
+ if (ret < 0)
+ goto out;
+
+out:
+ return ret;
+}
+
+static int wl1271_unjoin(struct wl1271 *wl)
{
int ret;
@@ -1231,7 +1270,7 @@ static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed)
"failed %d", ret);
if (test_bit(WL1271_FLAG_JOINED, &wl->flags)) {
- ret = wl1271_cmd_join(wl, wl->set_bss_type);
+ ret = wl1271_join(wl);
if (ret < 0)
wl1271_warning("cmd join to update channel "
"failed %d", ret);
@@ -1241,9 +1280,9 @@ static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed)
if (changed & IEEE80211_CONF_CHANGE_IDLE) {
if (conf->flags & IEEE80211_CONF_IDLE &&
test_bit(WL1271_FLAG_JOINED, &wl->flags))
- wl1271_unjoin_channel(wl);
+ wl1271_unjoin(wl);
else if (!(conf->flags & IEEE80211_CONF_IDLE))
- wl1271_join_channel(wl, channel);
+ wl1271_dummy_join(wl);
if (conf->flags & IEEE80211_CONF_IDLE) {
wl->rate_set = wl1271_min_rate_get(wl);
@@ -1613,7 +1652,6 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
enum wl1271_cmd_ps_mode mode;
struct wl1271 *wl = hw->priv;
bool do_join = false;
- bool do_keepalive = false;
int ret;
wl1271_debug(DEBUG_MAC80211, "mac80211 bss info changed");
@@ -1756,19 +1794,6 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
ret = wl1271_cmd_build_probe_req(wl, NULL, 0,
NULL, 0, wl->band);
- /* Enable the keep-alive feature */
- ret = wl1271_acx_keep_alive_mode(wl, true);
- if (ret < 0)
- goto out_sleep;
-
- /*
- * This is awkward. The keep-alive configs must be done
- * *after* the join command, because otherwise it will
- * not work, but it must only be done *once* because
- * otherwise the firmware will start complaining.
- */
- do_keepalive = true;
-
/* enable the connection monitoring feature */
ret = wl1271_acx_conn_monit_params(wl, true);
if (ret < 0)
@@ -1836,35 +1861,11 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
}
if (do_join) {
- ret = wl1271_cmd_join(wl, wl->set_bss_type);
+ ret = wl1271_join(wl);
if (ret < 0) {
wl1271_warning("cmd join failed %d", ret);
goto out_sleep;
}
- set_bit(WL1271_FLAG_JOINED, &wl->flags);
- }
-
- /*
- * The JOIN operation shuts down the firmware keep-alive as a side
- * effect, and the ACX_AID will start the keep-alive as a side effect.
- * Hence, for non-IBSS, the ACX_AID must always happen *after* the
- * JOIN operation, and the template config after the ACX_AID.
- */
- if (test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags)) {
- ret = wl1271_acx_aid(wl, wl->aid);
- if (ret < 0)
- goto out_sleep;
- }
-
- if (do_keepalive) {
- ret = wl1271_cmd_build_klv_null_data(wl);
- if (ret < 0)
- goto out_sleep;
- ret = wl1271_acx_keep_alive_config(
- wl, CMD_TEMPL_KLV_IDX_NULL_DATA,
- ACX_KEEP_ALIVE_TPL_VALID);
- if (ret < 0)
- goto out_sleep;
}
out_sleep:
--
1.6.3.3
^ permalink raw reply related
* [PATCH 1/4] wl1271: Improve command polling
From: Luciano Coelho @ 2010-04-28 6:49 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, Juuso Oikarinen
In-Reply-To: <1272437402-28801-1-git-send-email-luciano.coelho@nokia.com>
From: Juuso Oikarinen <juuso.oikarinen@nokia.com>
In testing I noticed that the wl1271 commands fall into two categories. In the
first category are "fast" commands, these mostly take only 0 or 1 polls to
complete, but occasionally upto 50 (giving a 0.5ms execution time.) In the
second category, the command completion takes well more than 0.5ms (from
1.5ms upwards.)
This patch fixes command polling such that it is optimal for the fast commands,
but also allows sleep for the longer ones.
Signed-off-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
---
drivers/net/wireless/wl12xx/wl1271_cmd.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.c b/drivers/net/wireless/wl12xx/wl1271_cmd.c
index 6b5ba8e..61fb774 100644
--- a/drivers/net/wireless/wl12xx/wl1271_cmd.c
+++ b/drivers/net/wireless/wl12xx/wl1271_cmd.c
@@ -37,7 +37,7 @@
#include "wl1271_cmd.h"
#include "wl1271_event.h"
-#define WL1271_CMD_POLL_COUNT 5
+#define WL1271_CMD_FAST_POLL_COUNT 50
/*
* send command to firmware
@@ -77,11 +77,11 @@ int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len,
goto out;
}
- udelay(10);
poll_count++;
- if (poll_count == WL1271_CMD_POLL_COUNT)
- wl1271_info("cmd polling took over %d cycles",
- poll_count);
+ if (poll_count < WL1271_CMD_FAST_POLL_COUNT)
+ udelay(10);
+ else
+ msleep(1);
intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
}
--
1.6.3.3
^ permalink raw reply related
* [PATCH 0/4] wl1271: patches of the week
From: Luciano Coelho @ 2010-04-28 6:49 UTC (permalink / raw)
To: linville; +Cc: linux-wireless
Hi John,
It has been a while since I last sent patches for wl1271, but there hasn't been too much going on with the wl1271 driver itself. Most of our work is going to mac80211 at the moment.
Anyway, it's time to send them so that we catch up.
Cheers,
Luca.
Juuso Oikarinen (2):
wl1271: Improve command polling
wl1271: Rewrite hardware keep-alive handling
Luciano Coelho (1):
wl1271: fix a bunch of sparse warnings
Saravanan Dhanabal (1):
wl1271: Configure QOS nullfunc template for U-APSD
drivers/net/wireless/wl12xx/wl1271_acx.c | 2 +-
drivers/net/wireless/wl12xx/wl1271_boot.c | 8 +-
drivers/net/wireless/wl12xx/wl1271_cmd.c | 14 ++--
drivers/net/wireless/wl12xx/wl1271_conf.h | 2 +-
drivers/net/wireless/wl12xx/wl1271_main.c | 95 +++++++++++++++--------------
5 files changed, 63 insertions(+), 58 deletions(-)
^ permalink raw reply
* [PATCH 4/4] wl1271: fix a bunch of sparse warnings
From: Luciano Coelho @ 2010-04-28 6:50 UTC (permalink / raw)
To: linville; +Cc: linux-wireless
In-Reply-To: <1272437402-28801-1-git-send-email-luciano.coelho@nokia.com>
A couple of sparse warnings in some rate settings (missing cpu_to_le32) were
fixed. Changed the conf_sg_settings struct from le to native endianess. The
values are converted to le when copying them to the acx command instead.
Reported-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Luciano Coelho <luciano.coelho@nokia.com>
Reviewed-by: Juuso Oikarinen <juuso.oikarinen@nokia.com>
---
drivers/net/wireless/wl12xx/wl1271_acx.c | 2 +-
drivers/net/wireless/wl12xx/wl1271_boot.c | 8 ++++----
drivers/net/wireless/wl12xx/wl1271_cmd.c | 4 ++--
drivers/net/wireless/wl12xx/wl1271_conf.h | 2 +-
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/net/wireless/wl12xx/wl1271_acx.c b/drivers/net/wireless/wl12xx/wl1271_acx.c
index 2ad086e..e19e2f8 100644
--- a/drivers/net/wireless/wl12xx/wl1271_acx.c
+++ b/drivers/net/wireless/wl12xx/wl1271_acx.c
@@ -590,7 +590,7 @@ int wl1271_acx_sg_cfg(struct wl1271 *wl)
/* BT-WLAN coext parameters */
for (i = 0; i < CONF_SG_PARAMS_MAX; i++)
- param->params[i] = c->params[i];
+ param->params[i] = cpu_to_le32(c->params[i]);
param->param_idx = CONF_SG_PARAMS_ALL;
ret = wl1271_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
diff --git a/drivers/net/wireless/wl12xx/wl1271_boot.c b/drivers/net/wireless/wl12xx/wl1271_boot.c
index 8087dc1..acb1d9e 100644
--- a/drivers/net/wireless/wl12xx/wl1271_boot.c
+++ b/drivers/net/wireless/wl12xx/wl1271_boot.c
@@ -351,7 +351,7 @@ static int wl1271_boot_soft_reset(struct wl1271 *wl)
static int wl1271_boot_run_firmware(struct wl1271 *wl)
{
int loop, ret;
- u32 chip_id, interrupt;
+ u32 chip_id, intr;
wl1271_boot_set_ecpu_ctrl(wl, ECPU_CONTROL_HALT);
@@ -368,15 +368,15 @@ static int wl1271_boot_run_firmware(struct wl1271 *wl)
loop = 0;
while (loop++ < INIT_LOOP) {
udelay(INIT_LOOP_DELAY);
- interrupt = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
+ intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR);
- if (interrupt == 0xffffffff) {
+ if (intr == 0xffffffff) {
wl1271_error("error reading hardware complete "
"init indication");
return -EIO;
}
/* check that ACX_INTR_INIT_COMPLETE is enabled */
- else if (interrupt & WL1271_ACX_INTR_INIT_COMPLETE) {
+ else if (intr & WL1271_ACX_INTR_INIT_COMPLETE) {
wl1271_write32(wl, ACX_REG_INTERRUPT_ACK,
WL1271_ACX_INTR_INIT_COMPLETE);
break;
diff --git a/drivers/net/wireless/wl12xx/wl1271_cmd.c b/drivers/net/wireless/wl12xx/wl1271_cmd.c
index 61fb774..62c11af 100644
--- a/drivers/net/wireless/wl12xx/wl1271_cmd.c
+++ b/drivers/net/wireless/wl12xx/wl1271_cmd.c
@@ -318,7 +318,7 @@ int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type)
join->rx_config_options = cpu_to_le32(wl->rx_config);
join->rx_filter_options = cpu_to_le32(wl->rx_filter);
join->bss_type = bss_type;
- join->basic_rate_set = wl->basic_rate_set;
+ join->basic_rate_set = cpu_to_le32(wl->basic_rate_set);
if (wl->band == IEEE80211_BAND_5GHZ)
join->bss_type |= WL1271_JOIN_CMD_BSS_TYPE_5GHZ;
@@ -615,7 +615,7 @@ int wl1271_cmd_scan(struct wl1271 *wl, const u8 *ssid, size_t ssid_len,
params->params.scan_options = cpu_to_le16(scan_options);
params->params.num_probe_requests = probe_requests;
- params->params.tx_rate = rate;
+ params->params.tx_rate = cpu_to_le32(rate);
params->params.tid_trigger = 0;
params->params.scan_tag = WL1271_SCAN_DEFAULT_TAG;
diff --git a/drivers/net/wireless/wl12xx/wl1271_conf.h b/drivers/net/wireless/wl12xx/wl1271_conf.h
index c44307c..d046d04 100644
--- a/drivers/net/wireless/wl12xx/wl1271_conf.h
+++ b/drivers/net/wireless/wl12xx/wl1271_conf.h
@@ -401,7 +401,7 @@ enum {
};
struct conf_sg_settings {
- __le32 params[CONF_SG_PARAMS_MAX];
+ u32 params[CONF_SG_PARAMS_MAX];
u8 state;
};
--
1.6.3.3
^ permalink raw reply related
* Re: [ath9k-devel] ath9k: noise floor calibration process
From: Benoit PAPILLAULT @ 2010-04-28 6:04 UTC (permalink / raw)
To: RHS Linux User; +Cc: ath9k-devel, linux-wireless@vger.kernel.org
In-Reply-To: <Pine.LNX.3.95.1100427193637.9331F-100000@nei>
RHS Linux User a écrit :
> Hi All,
>
> <preaching>
>
> The chip *FOR SURE* *CANNOT* measure the thermal noise level!! It isn't
> that sensitive. That said under some conditions it CAN measure the
> local interference level which IS useful.
>
In fact, that's what I thought first, but according to Atheros patent,
it can. It seems pretty logic in fact : if you have no real signal at
the input, you are measuring ambient noise. A spectrum analyzer is able
to do it as well.
Sensitivity is the ability to decode 802.11 modulation out of the signal
received (which includes any kind of noise). Using the formulas below,
I measure the minimum signal levels of 802.11 packets by moving away
from an AP and I indeed found -95dBm which is the typical sensitivity
levels of an Atheros chip.
> I am *VERY MUCH* in favor of making real time level measurements of
> various parts of real packets easy to use! Troubleshooting becomes so
> much easier :).
>
> </preaching>
>
> Great ideas !!
>
> FWIW - I have on occasion used a low noise preamp to feed the chip.
> Many more signals are detectable which "proves" the chip by itself *IS
> NOT* that sensitive. Try it yourself !
>
Sure, in fact, I /think/ the thermal noise I'm talking is generated
inside the first RX amplifier (it's probably generated in every RX
amplifier, but the first is the biggest since it's amplified more than
the others). So, if you put a low noise preamp, you are feeding the chip
with more signal at the input but the chip has still the same amount of
noise. Am I correct?
> Have fun,
>
> Wiz
>
Regards,
Benoit
>
> On Tue, 27 Apr 2010, Benoit PAPILLAULT wrote:
>
>
>> Hello,
>>
>> In order to move forward with noise & signal reporting, I'd like to
>> share my current understanding of the way ath9k HW is working before
>> sending patches (unfortunately, I did the work before the introduction
>> of ar9003... so I need to redo the work).
>>
>> The ultimate purpose of this work is to be able to measure signal levels
>> (and noise if possible) as accurately as a spectrum analyzer or power meter.
>>
>> First, signal level reporting. It is reported in a per packet basis in
>> RX descriptors. There are 7 fields:
>> AR_RxRSSIAnt00 0x000000ff rs_rssi_ctl0
>> AR_RxRSSIAnt01 0x0000ff00 rs_rssi_ctl1
>> AR_RxRSSIAnt02 0x00ff0000 rs_rssi_ctl2
>> AR_RxRSSIAnt10 0x000000ff rs_rssi_ext0
>> AR_RxRSSIAnt11 0x0000ff00 rs_rssi_ext1
>> AR_RxRSSIAnt12 0x00ff0000 rs_rssi_ext2
>> AR_RxRSSICombined 0xff000000 rs_rssi
>>
>> Each value is for a 20 MHz wide channel, on the 3 RX chains. "ctl" is
>> for the primary channel and "ext" is for the secondary channel (using
>> the 802.11n words). The latter rs_rssi is the sum of the 6 previous
>> value. However, since each value is dB, the sum is not an arithmetic
>> sum. Each field is a signed value and the value -128 means that no
>> measurement has been done (no RX chain, RX chain disabled, no secondary
>> channel, ...). It seems that in some cases, the combined value is just
>> plain wrong. Here are few examples:
>>
>> RSSI: ctl=(10,7,-128) ext=(-128,-128,-128) => 12 (11.76) correct
>>
>> RSSI: ctl=(38,29,-128) ext=(69,-84,-101) => -22 incorrect!!!
>>
>>
>> Next, noise floor calibration. From what I understand, signal levels is
>> measured using the AGC + RX amplifiers gain (RF, IF and BB). However,
>> the various gains are not really accurate, only the relative gain are
>> accurate. This means that reading a signal value of -100dBm might not
>> exactly means -100dBm. There is a delta between real signal and measured
>> value. In order to know this value, we need a calibration process with a
>> known signal.
>>
>> One know signal is thermal noise. Thermal noise is generated in any
>> resistor and can be computed using the well know value N = kTB. For a 20
>> MHz bandwidth, this gives -101dBm. If the HW tries to measure signal
>> strength when the network is supposed to be idle (during SIFS) and with
>> RX/TX switch disabled (?), then it will in fact measure the thermal
>> noise at the RX input.
>>
>> So, we have :
>>
>> Real noise (-101dBm) = Measured noise + delta
>>
>> There are type of registers to control noise floor calibration :
>>
>> - control register at 0x9860 (AR_PHY_AGC_CONTROL)
>>
>> This register allows 3 differents operations :
>>
>> 1. start noise floor measurement
>>
>> write AR_PHY_MAXCCA_PWR (AR_PHY_CCA & 0x000001ff) : this is apparently
>> a max value
>> for noise floor
>> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
>> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
>> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
>>
>> When channel has been changed however, the noise floor needs to be
>> updated immediately, so AR_PHY_AGC_CONTROL_NO_UPDATE_NF should be
>> cleared in this particular case. Otherwise, the chip is no longer
>> receiving (problem since CCA is defined with noise floor as reference).
>>
>> 2. read noise floor measurement result
>>
>> check REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF
>> if 0 (noise floor calibration is finished), read AR_PHY_MINCCA_PWR :
>> nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR = 0x0ff80000)
>>
>> 3. write noise floor reference
>>
>> write AR_PHY_MAXCCA_PWR (the value has not the same meaning as
>> operation 1!)
>> REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
>> REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
>> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
>>
>> - data register at 0x9864 (AR_PHY_CCA, + more location for other RX chains)
>>
>> The fields are different for AR9280+ chipsets, but the mechanism is
>> the same.
>>
>> AR_PHY_MAXCCA_PWR 0x000001ff (half dBm unit!)
>> AR_PHY_CCA_THRESH62 0x0007f000
>> AR_PHY_MINCCA_PWR 0x0ff80000
>>
>> Now, we have :
>>
>> Real signal = Measured signal + delta
>> = RSSI + Noise floor + delta
>> = RSSI + (-101 dBm)
>>
>> Real noise is not thermal noise. There are a lot of definition for noise
>> since noise is NOT signal. Of course, noise includes thermal noise.
>> Since the noise measured by the chip is variable, I think we could do :
>>
>> - Noise floor = minimum (Noise floor measures)
>> - Noise = moving average (Noise floor measures) + delta
>> with delta = (-101 dBm) - Noise floor
>>
>> I'd like to get comments before sending patches. Since ath5k and ath9k
>> are quite close, I'm pretty sure a similar (if not same) process is used
>> on ath5k.
>>
>> Regards,
>> Benoit
>>
>> _______________________________________________
>> ath9k-devel mailing list
>> ath9k-devel@lists.ath9k.org
>> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>>
>>
>
> _______________________________________________
> ath9k-devel mailing list
> ath9k-devel@lists.ath9k.org
> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>
>
^ permalink raw reply
* Re: [ath9k-devel] ath9k: noise floor calibration process
From: RHS Linux User @ 2010-04-28 0:01 UTC (permalink / raw)
To: Benoit PAPILLAULT; +Cc: ath9k-devel, linux-wireless@vger.kernel.org
In-Reply-To: <4BD74B66.3030500@free.fr>
Hi All,
<preaching>
The chip *FOR SURE* *CANNOT* measure the thermal noise level!! It isn't
that sensitive. That said under some conditions it CAN measure the
local interference level which IS useful.
I am *VERY MUCH* in favor of making real time level measurements of
various parts of real packets easy to use! Troubleshooting becomes so
much easier :).
</preaching>
Great ideas !!
FWIW - I have on occasion used a low noise preamp to feed the chip.
Many more signals are detectable which "proves" the chip by itself *IS
NOT* that sensitive. Try it yourself !
Have fun,
Wiz
On Tue, 27 Apr 2010, Benoit PAPILLAULT wrote:
> Hello,
>
> In order to move forward with noise & signal reporting, I'd like to
> share my current understanding of the way ath9k HW is working before
> sending patches (unfortunately, I did the work before the introduction
> of ar9003... so I need to redo the work).
>
> The ultimate purpose of this work is to be able to measure signal levels
> (and noise if possible) as accurately as a spectrum analyzer or power meter.
>
> First, signal level reporting. It is reported in a per packet basis in
> RX descriptors. There are 7 fields:
> AR_RxRSSIAnt00 0x000000ff rs_rssi_ctl0
> AR_RxRSSIAnt01 0x0000ff00 rs_rssi_ctl1
> AR_RxRSSIAnt02 0x00ff0000 rs_rssi_ctl2
> AR_RxRSSIAnt10 0x000000ff rs_rssi_ext0
> AR_RxRSSIAnt11 0x0000ff00 rs_rssi_ext1
> AR_RxRSSIAnt12 0x00ff0000 rs_rssi_ext2
> AR_RxRSSICombined 0xff000000 rs_rssi
>
> Each value is for a 20 MHz wide channel, on the 3 RX chains. "ctl" is
> for the primary channel and "ext" is for the secondary channel (using
> the 802.11n words). The latter rs_rssi is the sum of the 6 previous
> value. However, since each value is dB, the sum is not an arithmetic
> sum. Each field is a signed value and the value -128 means that no
> measurement has been done (no RX chain, RX chain disabled, no secondary
> channel, ...). It seems that in some cases, the combined value is just
> plain wrong. Here are few examples:
>
> RSSI: ctl=(10,7,-128) ext=(-128,-128,-128) => 12 (11.76) correct
>
> RSSI: ctl=(38,29,-128) ext=(69,-84,-101) => -22 incorrect!!!
>
>
> Next, noise floor calibration. From what I understand, signal levels is
> measured using the AGC + RX amplifiers gain (RF, IF and BB). However,
> the various gains are not really accurate, only the relative gain are
> accurate. This means that reading a signal value of -100dBm might not
> exactly means -100dBm. There is a delta between real signal and measured
> value. In order to know this value, we need a calibration process with a
> known signal.
>
> One know signal is thermal noise. Thermal noise is generated in any
> resistor and can be computed using the well know value N = kTB. For a 20
> MHz bandwidth, this gives -101dBm. If the HW tries to measure signal
> strength when the network is supposed to be idle (during SIFS) and with
> RX/TX switch disabled (?), then it will in fact measure the thermal
> noise at the RX input.
>
> So, we have :
>
> Real noise (-101dBm) = Measured noise + delta
>
> There are type of registers to control noise floor calibration :
>
> - control register at 0x9860 (AR_PHY_AGC_CONTROL)
>
> This register allows 3 differents operations :
>
> 1. start noise floor measurement
>
> write AR_PHY_MAXCCA_PWR (AR_PHY_CCA & 0x000001ff) : this is apparently
> a max value
> for noise floor
> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
>
> When channel has been changed however, the noise floor needs to be
> updated immediately, so AR_PHY_AGC_CONTROL_NO_UPDATE_NF should be
> cleared in this particular case. Otherwise, the chip is no longer
> receiving (problem since CCA is defined with noise floor as reference).
>
> 2. read noise floor measurement result
>
> check REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF
> if 0 (noise floor calibration is finished), read AR_PHY_MINCCA_PWR :
> nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR = 0x0ff80000)
>
> 3. write noise floor reference
>
> write AR_PHY_MAXCCA_PWR (the value has not the same meaning as
> operation 1!)
> REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
> REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
> REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
>
> - data register at 0x9864 (AR_PHY_CCA, + more location for other RX chains)
>
> The fields are different for AR9280+ chipsets, but the mechanism is
> the same.
>
> AR_PHY_MAXCCA_PWR 0x000001ff (half dBm unit!)
> AR_PHY_CCA_THRESH62 0x0007f000
> AR_PHY_MINCCA_PWR 0x0ff80000
>
> Now, we have :
>
> Real signal = Measured signal + delta
> = RSSI + Noise floor + delta
> = RSSI + (-101 dBm)
>
> Real noise is not thermal noise. There are a lot of definition for noise
> since noise is NOT signal. Of course, noise includes thermal noise.
> Since the noise measured by the chip is variable, I think we could do :
>
> - Noise floor = minimum (Noise floor measures)
> - Noise = moving average (Noise floor measures) + delta
> with delta = (-101 dBm) - Noise floor
>
> I'd like to get comments before sending patches. Since ath5k and ath9k
> are quite close, I'm pretty sure a similar (if not same) process is used
> on ath5k.
>
> Regards,
> Benoit
>
> _______________________________________________
> ath9k-devel mailing list
> ath9k-devel@lists.ath9k.org
> https://lists.ath9k.org/mailman/listinfo/ath9k-devel
>
^ permalink raw reply
* Re: libertas sdio broken on XO-1.5s
From: Dan Williams @ 2010-04-28 0:14 UTC (permalink / raw)
To: Steve deRosier; +Cc: linux-wireless
In-Reply-To: <i2y446ae9281004271235sf6f04323j2faa28108481d81b@mail.gmail.com>
On Tue, 2010-04-27 at 12:35 -0700, Steve deRosier wrote:
> Dan,
>
> A change made by you on April 15th breaks firmware downloading to an
> sdio connected 8686 on the OLPC's XO-1.5s. I reverted it and was able
> to get firmware to load just fine, with it in, the firmware fails to
> load.
Ok, so we get to find out what fails with XO 1.5, and what works with
both the Wi2Wi and the Marvell 8686 dev board that I have that I tested
it with... I'll retest again I suppose.
> commit 96021f096e5178582af296a2fbb6df7dbd6b695c
> Author: Dan Williams <dcbw@redhat.com>
> Date: Thu Apr 15 13:27:44 2010 -0700
>
> libertas: consolidate SDIO firmware wait code
>
> Consolidate a bunch of C&P code that waits for the firmware to be ready.
>
> Signed-off-by: Dan Williams <dcbw@redhat.com>
> Signed-off-by: John W. Linville <linville@tuxdriver.com>
>
> dmesg:
> [ 15.391242] libertas_sdio: Libertas SDIO driver
> [ 15.391255] libertas_sdio: Copyright Pierre Ossman
> [ 15.539475] libertas_sdio mmc0:0001:1: firmware: requesting sd8686_helper.bin
> [ 17.540214] libertas: failed to load helper firmware
> [ 17.541054] libertas_sdio: probe of mmc0:0001:1 failed with error -110
>
> dmesg with it reverted:
> [ 15.141728] libertas_sdio: Libertas SDIO driver
> [ 15.141741] libertas_sdio: Copyright Pierre Ossman
> [ 15.275322] libertas_sdio mmc0:0001:1: firmware: requesting sd8686_helper.bin
> [ 16.430223] libertas_sdio mmc0:0001:1: firmware: requesting sd8686.bin
> [ 17.172443] libertas: 00:50:43:28:26:40, fw 9.70.7p0, cap 0x00000303
> [ 17.179552] libertas: wlan0: Marvell WLAN 802.11 adapter
>
> I don't know if there's something unique with this device where
> libertas_sdio works everywhere else and not with the XO-1.5, but I
> suspect we'll encounter this issue with other libertas devices.
The XO is all kinds of unique, but the 1.5 less so than the 1.0.
Dan
> I apologize for not sending a patch, but I don't have time right now
> to get to it. Perhaps you can get to it quicker, if so, I'll be happy
> to test anything you come up with.
>
> - Steve
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: [RFT] ar9170: implement get_survey
From: Benoit PAPILLAULT @ 2010-04-27 22:21 UTC (permalink / raw)
To: Christian Lamparter; +Cc: linux-wireless
In-Reply-To: <201004272323.22107.chunkeey@googlemail.com>
Christian Lamparter a écrit :
> This patch adds a basic get_survey for ar9170.
>
> Survey data from wlan1
> frequency: 2412 MHz
> noise: -85 dBm
>
> TODO:
> Currently, the noise level is updated only by a channel change.
> Now, we could simply add another ar9170_set_channel to always get
> a fresh result, but then we risk a RF lockup.
>
It seems to be a good start. The code is very similar to what is used in
ath9k. Just few questions below.
> ---
> diff --git a/drivers/net/wireless/ath/ar9170/ar9170.h b/drivers/net/wireless/ath/ar9170/ar9170.h
> index dc662b7..26fa31e 100644
> --- a/drivers/net/wireless/ath/ar9170/ar9170.h
> +++ b/drivers/net/wireless/ath/ar9170/ar9170.h
> @@ -198,7 +198,7 @@ struct ar9170 {
>
> /* PHY */
> struct ieee80211_channel *channel;
> - int noise[4];
> + int noise[6];
>
> /* power calibration data */
> u8 power_5G_leg[4];
> @@ -302,5 +302,5 @@ int ar9170_init_phy(struct ar9170 *ar, enum ieee80211_band band);
> int ar9170_init_rf(struct ar9170 *ar);
> int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
> enum ar9170_rf_init_mode rfi, enum ar9170_bw bw);
> -
> +int ar9170_get_noisefloor(struct ar9170 *ar);
> #endif /* __AR9170_H */
> diff --git a/drivers/net/wireless/ath/ar9170/main.c b/drivers/net/wireless/ath/ar9170/main.c
> index 3247db8..1e422ed 100644
> --- a/drivers/net/wireless/ath/ar9170/main.c
> +++ b/drivers/net/wireless/ath/ar9170/main.c
> @@ -2485,6 +2485,25 @@ static int ar9170_ampdu_action(struct ieee80211_hw *hw,
> return 0;
> }
>
> +static int ar9170_op_get_survey(struct ieee80211_hw *hw, int idx,
> + struct survey_info *survey)
> +{
> + struct ar9170 *ar = hw->priv;
> + int err;
> +
> + if (idx != 0)
> + return -ENOENT;
> +
> + err = ar9170_get_noisefloor(ar);
> + if (err)
> + return err;
> +
> + survey->channel = ar->channel;
> + survey->filled = SURVEY_INFO_NOISE_DBM;
> + survey->noise = ar->noise[0];
> + return 0;
> +}
> +
> static const struct ieee80211_ops ar9170_ops = {
> .start = ar9170_op_start,
> .stop = ar9170_op_stop,
> @@ -2501,6 +2520,7 @@ static const struct ieee80211_ops ar9170_ops = {
> .sta_add = ar9170_sta_add,
> .sta_remove = ar9170_sta_remove,
> .get_stats = ar9170_get_stats,
> + .get_survey = ar9170_op_get_survey,
> .ampdu_action = ar9170_ampdu_action,
> };
>
> diff --git a/drivers/net/wireless/ath/ar9170/phy.c b/drivers/net/wireless/ath/ar9170/phy.c
> index 45a415e..31ff163 100644
> --- a/drivers/net/wireless/ath/ar9170/phy.c
> +++ b/drivers/net/wireless/ath/ar9170/phy.c
> @@ -1584,6 +1584,31 @@ static int ar9170_calc_noise_dbm(u32 raw_noise)
> return (raw_noise & 0xff) >> 1;
> }
>
> +int ar9170_get_noisefloor(struct ar9170 *ar)
> +{
> + static const u32 phy_regs[] = {
> + 0x1c5864, 0x1c6864, 0x1c7864,
> + 0x1c59bc, 0x1c69bc, 0x1c79bc };
>
Maybe #define would be more appropriate. Moreover, it's clear in my
notes that some ar9170 registers are just ath9k registers + 0x1bc000.
> + u32 phy_res[ARRAY_SIZE(phy_regs)];
> + int err, i;
> +
> + BUILD_BUG_ON(ARRAY_SIZE(phy_regs) != ARRAY_SIZE(ar->noise));
> +
> + err = ar9170_read_mreg(ar, ARRAY_SIZE(phy_regs), phy_regs, phy_res);
> + if (err)
> + return err;
> +
> + for (i = 0; i < ARRAY_SIZE(phy_regs); i++) {
> + ar->noise[i] = ar9170_calc_noise_dbm(
> + (phy_res[i] >> 19) & 0x1ff);
> +
> + ar->noise[i + 3] = ar9170_calc_noise_dbm(
> + (phy_res[i + 3] >> 23) & 0x1ff);
> + }
> +
> + return 0;
> +}
> +
> int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
> enum ar9170_rf_init_mode rfi, enum ar9170_bw bw)
> {
> @@ -1708,12 +1733,12 @@ int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
> }
> }
>
> - for (i = 0; i < 2; i++) {
> + for (i = 0; i < 3; i++) {
>
Why using 3 RX channels ? ar9170 is always 2x2, isn't it ? And why read
3 values since only one will be used in ar9170_op_get_survey?
Maybe we should combine the 3 values before reporting a single value ?
> ar->noise[i] = ar9170_calc_noise_dbm(
> - (le32_to_cpu(vals[2 + i]) >> 19) & 0x1ff);
> + (le32_to_cpu(vals[i + 1]) >> 19) & 0x1ff);
>
> - ar->noise[i + 2] = ar9170_calc_noise_dbm(
> - (le32_to_cpu(vals[5 + i]) >> 23) & 0x1ff);
> + ar->noise[i + 3] = ar9170_calc_noise_dbm(
> + (le32_to_cpu(vals[i + 4]) >> 23) & 0x1ff);
> }
>
> ar->channel = channel;
>
Moreover (but my patch for ath9k has the very same error), I think we
are reported the noise floor calibration result which is not the noise
at all... that might be another story anyway.
Regards,
Benoit
^ permalink raw reply
* Re: [PATCH] ath9k: Added get_survey callback in order to get channel noise
From: Luis R. Rodriguez @ 2010-04-27 22:17 UTC (permalink / raw)
To: Benoit Papillault, John W. Linville
Cc: Luis Rodriguez, Jouni Malinen, ath9k-devel@lists.ath5k.org,
linux-wireless@vger.kernel.org
In-Reply-To: <1272406104-6870-1-git-send-email-benoit.papillault@free.fr>
On Tue, Apr 27, 2010 at 03:08:24PM -0700, Benoit Papillault wrote:
>
> Signed-off-by: Benoit Papillault <benoit.papillault@free.fr>
Looks good, thanks for this work.
Luis
^ permalink raw reply
* [PATCH] ath9k: Added get_survey callback in order to get channel noise
From: Benoit Papillault @ 2010-04-27 22:08 UTC (permalink / raw)
To: lrodriguez, jmalinen; +Cc: ath9k-devel, linux-wireless, Benoit Papillault
Signed-off-by: Benoit Papillault <benoit.papillault@free.fr>
---
drivers/net/wireless/ath/ath9k/main.c | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
index c03821e..f0b2aa2 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -2047,6 +2047,25 @@ static int ath9k_ampdu_action(struct ieee80211_hw *hw,
return ret;
}
+static int ath9k_get_survey(struct ieee80211_hw *hw, int idx,
+ struct survey_info *survey)
+{
+ struct ath_wiphy *aphy = hw->priv;
+ struct ath_softc *sc = aphy->sc;
+ struct ath_hw *ah = sc->sc_ah;
+ struct ath_common *common = ath9k_hw_common(ah);
+ struct ieee80211_conf *conf = &hw->conf;
+
+ if (idx != 0)
+ return -ENOENT;
+
+ survey->channel = conf->channel;
+ survey->filled = SURVEY_INFO_NOISE_DBM;
+ survey->noise = common->ani.noise_floor;
+
+ return 0;
+}
+
static void ath9k_sw_scan_start(struct ieee80211_hw *hw)
{
struct ath_wiphy *aphy = hw->priv;
@@ -2122,6 +2141,7 @@ struct ieee80211_ops ath9k_ops = {
.set_tsf = ath9k_set_tsf,
.reset_tsf = ath9k_reset_tsf,
.ampdu_action = ath9k_ampdu_action,
+ .get_survey = ath9k_get_survey,
.sw_scan_start = ath9k_sw_scan_start,
.sw_scan_complete = ath9k_sw_scan_complete,
.rfkill_poll = ath9k_rfkill_poll_state,
--
1.5.6.5
^ permalink raw reply related
* [RFT] ar9170: implement get_survey
From: Christian Lamparter @ 2010-04-27 21:23 UTC (permalink / raw)
To: Benoit PAPILLAULT; +Cc: linux-wireless
This patch adds a basic get_survey for ar9170.
Survey data from wlan1
frequency: 2412 MHz
noise: -85 dBm
TODO:
Currently, the noise level is updated only by a channel change.
Now, we could simply add another ar9170_set_channel to always get
a fresh result, but then we risk a RF lockup.
---
diff --git a/drivers/net/wireless/ath/ar9170/ar9170.h b/drivers/net/wireless/ath/ar9170/ar9170.h
index dc662b7..26fa31e 100644
--- a/drivers/net/wireless/ath/ar9170/ar9170.h
+++ b/drivers/net/wireless/ath/ar9170/ar9170.h
@@ -198,7 +198,7 @@ struct ar9170 {
/* PHY */
struct ieee80211_channel *channel;
- int noise[4];
+ int noise[6];
/* power calibration data */
u8 power_5G_leg[4];
@@ -302,5 +302,5 @@ int ar9170_init_phy(struct ar9170 *ar, enum ieee80211_band band);
int ar9170_init_rf(struct ar9170 *ar);
int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
enum ar9170_rf_init_mode rfi, enum ar9170_bw bw);
-
+int ar9170_get_noisefloor(struct ar9170 *ar);
#endif /* __AR9170_H */
diff --git a/drivers/net/wireless/ath/ar9170/main.c b/drivers/net/wireless/ath/ar9170/main.c
index 3247db8..1e422ed 100644
--- a/drivers/net/wireless/ath/ar9170/main.c
+++ b/drivers/net/wireless/ath/ar9170/main.c
@@ -2485,6 +2485,25 @@ static int ar9170_ampdu_action(struct ieee80211_hw *hw,
return 0;
}
+static int ar9170_op_get_survey(struct ieee80211_hw *hw, int idx,
+ struct survey_info *survey)
+{
+ struct ar9170 *ar = hw->priv;
+ int err;
+
+ if (idx != 0)
+ return -ENOENT;
+
+ err = ar9170_get_noisefloor(ar);
+ if (err)
+ return err;
+
+ survey->channel = ar->channel;
+ survey->filled = SURVEY_INFO_NOISE_DBM;
+ survey->noise = ar->noise[0];
+ return 0;
+}
+
static const struct ieee80211_ops ar9170_ops = {
.start = ar9170_op_start,
.stop = ar9170_op_stop,
@@ -2501,6 +2520,7 @@ static const struct ieee80211_ops ar9170_ops = {
.sta_add = ar9170_sta_add,
.sta_remove = ar9170_sta_remove,
.get_stats = ar9170_get_stats,
+ .get_survey = ar9170_op_get_survey,
.ampdu_action = ar9170_ampdu_action,
};
diff --git a/drivers/net/wireless/ath/ar9170/phy.c b/drivers/net/wireless/ath/ar9170/phy.c
index 45a415e..31ff163 100644
--- a/drivers/net/wireless/ath/ar9170/phy.c
+++ b/drivers/net/wireless/ath/ar9170/phy.c
@@ -1584,6 +1584,31 @@ static int ar9170_calc_noise_dbm(u32 raw_noise)
return (raw_noise & 0xff) >> 1;
}
+int ar9170_get_noisefloor(struct ar9170 *ar)
+{
+ static const u32 phy_regs[] = {
+ 0x1c5864, 0x1c6864, 0x1c7864,
+ 0x1c59bc, 0x1c69bc, 0x1c79bc };
+ u32 phy_res[ARRAY_SIZE(phy_regs)];
+ int err, i;
+
+ BUILD_BUG_ON(ARRAY_SIZE(phy_regs) != ARRAY_SIZE(ar->noise));
+
+ err = ar9170_read_mreg(ar, ARRAY_SIZE(phy_regs), phy_regs, phy_res);
+ if (err)
+ return err;
+
+ for (i = 0; i < ARRAY_SIZE(phy_regs); i++) {
+ ar->noise[i] = ar9170_calc_noise_dbm(
+ (phy_res[i] >> 19) & 0x1ff);
+
+ ar->noise[i + 3] = ar9170_calc_noise_dbm(
+ (phy_res[i + 3] >> 23) & 0x1ff);
+ }
+
+ return 0;
+}
+
int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
enum ar9170_rf_init_mode rfi, enum ar9170_bw bw)
{
@@ -1708,12 +1733,12 @@ int ar9170_set_channel(struct ar9170 *ar, struct ieee80211_channel *channel,
}
}
- for (i = 0; i < 2; i++) {
+ for (i = 0; i < 3; i++) {
ar->noise[i] = ar9170_calc_noise_dbm(
- (le32_to_cpu(vals[2 + i]) >> 19) & 0x1ff);
+ (le32_to_cpu(vals[i + 1]) >> 19) & 0x1ff);
- ar->noise[i + 2] = ar9170_calc_noise_dbm(
- (le32_to_cpu(vals[5 + i]) >> 23) & 0x1ff);
+ ar->noise[i + 3] = ar9170_calc_noise_dbm(
+ (le32_to_cpu(vals[i + 4]) >> 23) & 0x1ff);
}
ar->channel = channel;
^ permalink raw reply related
* Re: [PATCH] wireless: ath9k: Fix most coding style issues in ath9k This patch fixed up almost all coding style issues in the ath9k driver found by the ceckpatch.pl tool. Signed-off-by: Michael Sprecher <sprecher.m@gmail.com>
From: Luis R. Rodriguez @ 2010-04-27 21:05 UTC (permalink / raw)
To: Michael Sprecher
Cc: Luis Rodriguez, Jouni Malinen, ath9k-devel@lists.ath9k.org,
linux-wireless@vger.kernel.org, John W. Linville
In-Reply-To: <s2yf42143521004271321qe6522fdaia42f335575d4026@mail.gmail.com>
On Tue, Apr 27, 2010 at 01:21:21PM -0700, Michael Sprecher wrote:
> Yes, i'm still intrested in fixing your coding style issues ;)
> If it's now safe to check it again, i will find some time to look at it this week.
> Michael
Go for it, after John merges our latest batch you should be good to go
Luis
^ permalink raw reply
* [PATCH] rtl8180: use cached queue mapping for skb in rtl8180_tx
From: John W. Linville @ 2010-04-27 20:57 UTC (permalink / raw)
To: linux-wireless; +Cc: John W. Linville
Signed-off-by: John W. Linville <linville@tuxdriver.com>
---
drivers/net/wireless/rtl818x/rtl8180_dev.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/rtl818x/rtl8180_dev.c b/drivers/net/wireless/rtl818x/rtl8180_dev.c
index f4d3618..d84ad05 100644
--- a/drivers/net/wireless/rtl818x/rtl8180_dev.c
+++ b/drivers/net/wireless/rtl818x/rtl8180_dev.c
@@ -305,7 +305,7 @@ static int rtl8180_tx(struct ieee80211_hw *dev, struct sk_buff *skb)
entry->flags = cpu_to_le32(tx_flags);
__skb_queue_tail(&ring->queue, skb);
if (ring->entries - skb_queue_len(&ring->queue) < 2)
- ieee80211_stop_queue(dev, skb_get_queue_mapping(skb));
+ ieee80211_stop_queue(dev, prio);
spin_unlock_irqrestore(&priv->lock, flags);
rtl818x_iowrite8(priv, &priv->map->TX_DMA_POLLING, (1 << (prio + 4)));
--
1.6.6.1
^ permalink raw reply related
* ath9k: noise floor calibration process
From: Benoit PAPILLAULT @ 2010-04-27 20:39 UTC (permalink / raw)
To: ath9k-devel; +Cc: linux-wireless@vger.kernel.org
Hello,
In order to move forward with noise & signal reporting, I'd like to
share my current understanding of the way ath9k HW is working before
sending patches (unfortunately, I did the work before the introduction
of ar9003... so I need to redo the work).
The ultimate purpose of this work is to be able to measure signal levels
(and noise if possible) as accurately as a spectrum analyzer or power meter.
First, signal level reporting. It is reported in a per packet basis in
RX descriptors. There are 7 fields:
AR_RxRSSIAnt00 0x000000ff rs_rssi_ctl0
AR_RxRSSIAnt01 0x0000ff00 rs_rssi_ctl1
AR_RxRSSIAnt02 0x00ff0000 rs_rssi_ctl2
AR_RxRSSIAnt10 0x000000ff rs_rssi_ext0
AR_RxRSSIAnt11 0x0000ff00 rs_rssi_ext1
AR_RxRSSIAnt12 0x00ff0000 rs_rssi_ext2
AR_RxRSSICombined 0xff000000 rs_rssi
Each value is for a 20 MHz wide channel, on the 3 RX chains. "ctl" is
for the primary channel and "ext" is for the secondary channel (using
the 802.11n words). The latter rs_rssi is the sum of the 6 previous
value. However, since each value is dB, the sum is not an arithmetic
sum. Each field is a signed value and the value -128 means that no
measurement has been done (no RX chain, RX chain disabled, no secondary
channel, ...). It seems that in some cases, the combined value is just
plain wrong. Here are few examples:
RSSI: ctl=(10,7,-128) ext=(-128,-128,-128) => 12 (11.76) correct
RSSI: ctl=(38,29,-128) ext=(69,-84,-101) => -22 incorrect!!!
Next, noise floor calibration. From what I understand, signal levels is
measured using the AGC + RX amplifiers gain (RF, IF and BB). However,
the various gains are not really accurate, only the relative gain are
accurate. This means that reading a signal value of -100dBm might not
exactly means -100dBm. There is a delta between real signal and measured
value. In order to know this value, we need a calibration process with a
known signal.
One know signal is thermal noise. Thermal noise is generated in any
resistor and can be computed using the well know value N = kTB. For a 20
MHz bandwidth, this gives -101dBm. If the HW tries to measure signal
strength when the network is supposed to be idle (during SIFS) and with
RX/TX switch disabled (?), then it will in fact measure the thermal
noise at the RX input.
So, we have :
Real noise (-101dBm) = Measured noise + delta
There are type of registers to control noise floor calibration :
- control register at 0x9860 (AR_PHY_AGC_CONTROL)
This register allows 3 differents operations :
1. start noise floor measurement
write AR_PHY_MAXCCA_PWR (AR_PHY_CCA & 0x000001ff) : this is apparently
a max value
for noise floor
REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
When channel has been changed however, the noise floor needs to be
updated immediately, so AR_PHY_AGC_CONTROL_NO_UPDATE_NF should be
cleared in this particular case. Otherwise, the chip is no longer
receiving (problem since CCA is defined with noise floor as reference).
2. read noise floor measurement result
check REG_READ(ah, AR_PHY_AGC_CONTROL) & AR_PHY_AGC_CONTROL_NF
if 0 (noise floor calibration is finished), read AR_PHY_MINCCA_PWR :
nf = MS(REG_READ(ah, AR_PHY_CCA), AR_PHY_MINCCA_PWR = 0x0ff80000)
3. write noise floor reference
write AR_PHY_MAXCCA_PWR (the value has not the same meaning as
operation 1!)
REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_ENABLE_NF);
REG_CLR_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NO_UPDATE_NF);
REG_SET_BIT(ah, AR_PHY_AGC_CONTROL, AR_PHY_AGC_CONTROL_NF);
- data register at 0x9864 (AR_PHY_CCA, + more location for other RX chains)
The fields are different for AR9280+ chipsets, but the mechanism is
the same.
AR_PHY_MAXCCA_PWR 0x000001ff (half dBm unit!)
AR_PHY_CCA_THRESH62 0x0007f000
AR_PHY_MINCCA_PWR 0x0ff80000
Now, we have :
Real signal = Measured signal + delta
= RSSI + Noise floor + delta
= RSSI + (-101 dBm)
Real noise is not thermal noise. There are a lot of definition for noise
since noise is NOT signal. Of course, noise includes thermal noise.
Since the noise measured by the chip is variable, I think we could do :
- Noise floor = minimum (Noise floor measures)
- Noise = moving average (Noise floor measures) + delta
with delta = (-101 dBm) - Noise floor
I'd like to get comments before sending patches. Since ath5k and ath9k
are quite close, I'm pretty sure a similar (if not same) process is used
on ath5k.
Regards,
Benoit
^ permalink raw reply
* Re: [Fwd: 2.6.34-rc4/5: iwlagn unusable until reload]
From: reinette chatre @ 2010-04-27 20:23 UTC (permalink / raw)
To: linux-wireless@vger.kernel.org; +Cc: Zhao, Shanyu, LKML
In-Reply-To: <1272399067.4381.10749.camel@rchatre-DESK>
I see now that a new kernel.org bug
(https://bugzilla.kernel.org/show_bug.cgi?id=15862 ) has been created
for this issue. We'll track it there.
Reinette
On Tue, 2010-04-27 at 13:11 -0700, reinette chatre wrote:
> Nico,
>
> The wireless folks don't really hang out on lkml. I'm forwarding your
> message to the linux-wireless mailing list.
>
> Reinette
>
>
> -------- Forwarded Message --------
> > From: Nico Schottelius <nico-linux-20100427@schottelius.org>
> > To: LKML <linux-kernel@vger.kernel.org>
> > Subject: 2.6.34-rc4/5: iwlagn unusable until reload
> > Date: Tue, 27 Apr 2010 00:49:34 -0700
> >
> > Hello again!
> >
> > If I try to use iwlagn on the X201 with
> >
> > 02:00.0 Network controller: Intel Corporation WiFi Link 6000 Series (rev 35)
> >
> > and 2.6.34-rc5-00211-gb91ce4d, I get a lot of error and no connection,
> > until I
> >
> > [root@kr ~]# rmmod iwlagn
> > [root@kr ~]# modprobe iwlagn
> >
> > Attached dmesg before & after.
> >
> > Cheers,
> >
> > Nico
> >
>
^ permalink raw reply
* Re: [PATCH] Added configurable debug messages to libertastf
From: Andrew Morton @ 2010-04-27 20:16 UTC (permalink / raw)
To: Steve deRosier; +Cc: linux-wireless, javier, joe
In-Reply-To: <1272231646-67723-1-git-send-email-steve@cozybit.com>
On Sun, 25 Apr 2010 14:40:46 -0700
Steve deRosier <steve@cozybit.com> wrote:
> Add the same type of configurable debug messages to libertas_tf as
> already exist in the libertas driver. This has facilitated creation of a interface
> specification and will facilitate future development of this driver.
>
> ...
>
> --- /dev/null
> +++ b/drivers/net/wireless/libertas_tf/deb_defs.h
> @@ -0,0 +1,106 @@
> +/**
> + * This header file contains global constant/enum definitions,
> + * global variable declaration.
> + */
> +#ifndef _LBS_DEB_DEFS_H_
> +#define _LBS_DEB_EFS_H_
> +
> +#ifndef DRV_NAME
> +#define DRV_NAME "libertas_tf"
> +#endif
> +
> +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> +
I dunno what this pr_fmt() definition is doing here, but it has
unpleasant effects with a x86_64 allmodconfig build:
In file included from drivers/net/wireless/libertas_tf/main.c:12:
drivers/net/wireless/libertas_tf/deb_defs.h:12:1: warning: "pr_fmt" redefined
In file included from /usr/src/devel/arch/x86/include/asm/percpu.h:44,
from /usr/src/devel/arch/x86/include/asm/current.h:5,
from /usr/src/devel/arch/x86/include/asm/processor.h:15,
from /usr/src/devel/arch/x86/include/asm/thread_info.h:22,
from include/linux/thread_info.h:56,
from include/linux/preempt.h:9,
from include/linux/spinlock.h:50,
from include/linux/mmzone.h:7,
from include/linux/gfp.h:4,
from include/linux/slab.h:12,
from drivers/net/wireless/libertas_tf/main.c:10:
include/linux/kernel.h:376:1: warning: this is the location of the previous definition
so I cheerily deleted it.
^ permalink raw reply
* [Fwd: 2.6.34-rc4/5: iwlagn unusable until reload]
From: reinette chatre @ 2010-04-27 20:11 UTC (permalink / raw)
To: linux-wireless, Zhao, Shanyu; +Cc: LKML
[-- Attachment #1: Type: text/plain, Size: 724 bytes --]
Nico,
The wireless folks don't really hang out on lkml. I'm forwarding your
message to the linux-wireless mailing list.
Reinette
-------- Forwarded Message --------
> From: Nico Schottelius <nico-linux-20100427@schottelius.org>
> To: LKML <linux-kernel@vger.kernel.org>
> Subject: 2.6.34-rc4/5: iwlagn unusable until reload
> Date: Tue, 27 Apr 2010 00:49:34 -0700
>
> Hello again!
>
> If I try to use iwlagn on the X201 with
>
> 02:00.0 Network controller: Intel Corporation WiFi Link 6000 Series (rev 35)
>
> and 2.6.34-rc5-00211-gb91ce4d, I get a lot of error and no connection,
> until I
>
> [root@kr ~]# rmmod iwlagn
> [root@kr ~]# modprobe iwlagn
>
> Attached dmesg before & after.
>
> Cheers,
>
> Nico
>
[-- Attachment #2: 2.6.34-rc5-NS-00211-gb91ce4d.dmesg --]
[-- Type: text/plain, Size: 158593 bytes --]
[ 0.000000] Linux version 2.6.34-rc5-NS-00211-gb91ce4d (nico@kr) (gcc version 4.5.0 (GCC) ) #15 SMP PREEMPT Tue Apr 27 09:38:24 CEST 2010
[ 0.000000] Command line:
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
[ 0.000000] BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 00000000bb27c000 (usable)
[ 0.000000] BIOS-e820: 00000000bb27c000 - 00000000bb282000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb282000 - 00000000bb363000 (usable)
[ 0.000000] BIOS-e820: 00000000bb363000 - 00000000bb375000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb375000 - 00000000bb3f6000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb3f6000 - 00000000bb40f000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb40f000 - 00000000bb46f000 (usable)
[ 0.000000] BIOS-e820: 00000000bb46f000 - 00000000bb668000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb668000 - 00000000bb6e8000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb6e8000 - 00000000bb70f000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb70f000 - 00000000bb717000 (usable)
[ 0.000000] BIOS-e820: 00000000bb717000 - 00000000bb71f000 (reserved)
[ 0.000000] BIOS-e820: 00000000bb71f000 - 00000000bb76b000 (usable)
[ 0.000000] BIOS-e820: 00000000bb76b000 - 00000000bb777000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb777000 - 00000000bb77a000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bb77a000 - 00000000bb781000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb781000 - 00000000bb782000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bb782000 - 00000000bb78b000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb78b000 - 00000000bb78c000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bb78c000 - 00000000bb79f000 (ACPI NVS)
[ 0.000000] BIOS-e820: 00000000bb79f000 - 00000000bb7ff000 (ACPI data)
[ 0.000000] BIOS-e820: 00000000bb7ff000 - 00000000bb800000 (usable)
[ 0.000000] BIOS-e820: 00000000bb800000 - 00000000c0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[ 0.000000] BIOS-e820: 00000000feaff000 - 00000000feb00000 (reserved)
[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
[ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
[ 0.000000] BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
[ 0.000000] BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
[ 0.000000] BIOS-e820: 0000000100000000 - 0000000138000000 (usable)
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI present.
[ 0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] last_pfn = 0x138000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-D3FFF write-protect
[ 0.000000] D4000-DBFFF uncachable
[ 0.000000] DC000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 disabled
[ 0.000000] 1 base 000000000 mask F80000000 write-back
[ 0.000000] 2 base 080000000 mask FC0000000 write-back
[ 0.000000] 3 base 100000000 mask FC0000000 write-back
[ 0.000000] 4 base 138000000 mask FF8000000 uncachable
[ 0.000000] 5 base 0BC000000 mask FFC000000 uncachable
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820 update range: 00000000bc000000 - 0000000100000000 (usable) ==> (reserved)
[ 0.000000] last_pfn = 0xbb800 max_arch_pfn = 0x400000000
[ 0.000000] initial memory mapped : 0 - 20000000
[ 0.000000] init_memory_mapping: 0000000000000000-00000000bb800000
[ 0.000000] 0000000000 - 00bb800000 page 2M
[ 0.000000] kernel direct mapping tables up to bb800000 @ 8000-c000
[ 0.000000] init_memory_mapping: 0000000100000000-0000000138000000
[ 0.000000] 0100000000 - 0138000000 page 2M
[ 0.000000] kernel direct mapping tables up to 138000000 @ a000-10000
[ 0.000000] ACPI: RSDP 00000000000f68f0 00024 (v02 LENOVO)
[ 0.000000] ACPI: XSDT 00000000bb7f0a79 00094 (v01 LENOVO TP-6Q 00001050 LTP 00000000)
[ 0.000000] ACPI: FACP 00000000bb7f0c00 000F4 (v04 LENOVO TP-6Q 00001050 LNVO 00000001)
[ 0.000000] ACPI: DSDT 00000000bb7f0f6b 0DD9B (v01 LENOVO TP-6Q 00001050 MSFT 03000001)
[ 0.000000] ACPI: FACS 00000000bb6e7000 00040
[ 0.000000] ACPI: SSDT 00000000bb7f0db4 001B7 (v01 LENOVO TP-6Q 00001050 MSFT 03000001)
[ 0.000000] ACPI: ECDT 00000000bb7fed06 00052 (v01 LENOVO TP-6Q 00001050 LNVO 00000001)
[ 0.000000] ACPI: APIC 00000000bb7fed58 00084 (v01 LENOVO TP-6Q 00001050 LNVO 00000001)
[ 0.000000] ACPI: MCFG 00000000bb7fee14 0003C (v01 LENOVO TP-6Q 00001050 LNVO 00000001)
[ 0.000000] ACPI: HPET 00000000bb7fee50 00038 (v01 LENOVO TP-6Q 00001050 LNVO 00000001)
[ 0.000000] ACPI: ASF! 00000000bb7fef34 000A4 (v16 LENOVO TP-6Q 00001050 PTL 00000001)
[ 0.000000] ACPI: BOOT 00000000bb7fefd8 00028 (v01 LENOVO TP-6Q 00001050 LTP 00000001)
[ 0.000000] ACPI: SSDT 00000000bb6e590a 0085B (v01 LENOVO TP-6Q 00001050 INTL 20050513)
[ 0.000000] ACPI: TCPA 00000000bb78b000 00032 (v02 PTL CRESTLN 06040000 00005A52)
[ 0.000000] ACPI: DMAR 00000000bb781000 000B8 (v01 INTEL CP_DALE 00000001 INTL 00000001)
[ 0.000000] ACPI: SSDT 00000000bb779000 009F1 (v01 PmRef CpuPm 00003000 INTL 20050513)
[ 0.000000] ACPI: SSDT 00000000bb778000 00259 (v01 PmRef Cpu0Tst 00003000 INTL 20050513)
[ 0.000000] ACPI: SSDT 00000000bb777000 0049F (v01 PmRef ApTst 00003000 INTL 20050513)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000138000000
[ 0.000000] Initmem setup node 0 0000000000000000-0000000138000000
[ 0.000000] NODE_DATA [0000000100000000 - 0000000100004fff]
[ 0.000000] [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880100200000-ffff8801039fffff] on node 0
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000001 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00138000
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[8] active PFN ranges
[ 0.000000] 0: 0x00000001 -> 0x0000009e
[ 0.000000] 0: 0x00000100 -> 0x000bb27c
[ 0.000000] 0: 0x000bb282 -> 0x000bb363
[ 0.000000] 0: 0x000bb40f -> 0x000bb46f
[ 0.000000] 0: 0x000bb70f -> 0x000bb717
[ 0.000000] 0: 0x000bb71f -> 0x000bb76b
[ 0.000000] 0: 0x000bb7ff -> 0x000bb800
[ 0.000000] 0: 0x00100000 -> 0x00138000
[ 0.000000] On node 0 totalpages: 996271
[ 0.000000] DMA zone: 56 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3941 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 14280 pages used for memmap
[ 0.000000] DMA32 zone: 748618 pages, LIFO batch:31
[ 0.000000] Normal zone: 3136 pages used for memmap
[ 0.000000] Normal zone: 226240 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 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: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, 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: 0x8086a701 base: 0xfed00000
[ 0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 24
[ 0.000000] early_res array is doubled to 64 at [7000 - 77ff]
[ 0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
[ 0.000000] early_res array is doubled to 128 at [b000 - bfff]
[ 0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 26 pages/cpu @ffff880001800000 s76008 r8192 d22296 u524288
[ 0.000000] pcpu-alloc: s76008 r8192 d22296 u524288 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 978799
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line:
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Subtract (74 early reservations)
[ 0.000000] #1 [0001000000 - 000163a254] TEXT DATA BSS
[ 0.000000] #2 [000009e800 - 0000100000] BIOS reserved
[ 0.000000] #3 [000163b000 - 000163b144] BRK
[ 0.000000] #4 [0000001000 - 0000003000] TRAMPOLINE
[ 0.000000] #5 [0000003000 - 0000007000] ACPI WAKEUP
[ 0.000000] #6 [0000008000 - 000000a000] PGTABLE
[ 0.000000] #7 [000000a000 - 000000b000] PGTABLE
[ 0.000000] #8 [0100000000 - 0100005000] NODE_DATA
[ 0.000000] #9 [000163b180 - 000163c180] BOOTMEM
[ 0.000000] #10 [000163a280 - 000163a568] BOOTMEM
[ 0.000000] #11 [0100005000 - 0100006000] BOOTMEM
[ 0.000000] #12 [0100006000 - 0100007000] BOOTMEM
[ 0.000000] #13 [0100200000 - 0103a00000] MEMMAP 0
[ 0.000000] #14 [000163a580 - 000163a700] BOOTMEM
[ 0.000000] #15 [000163c180 - 0001654180] BOOTMEM
[ 0.000000] #16 [0001654180 - 000165a180] BOOTMEM
[ 0.000000] #17 [000165b000 - 000165c000] BOOTMEM
[ 0.000000] #18 [000163a700 - 000163a741] BOOTMEM
[ 0.000000] #19 [000163a780 - 000163a7c3] BOOTMEM
[ 0.000000] #20 [000163a800 - 000163afe0] BOOTMEM
[ 0.000000] #21 [000165a180 - 000165a1e8] BOOTMEM
[ 0.000000] #22 [000165a200 - 000165a268] BOOTMEM
[ 0.000000] #23 [000165a280 - 000165a2e8] BOOTMEM
[ 0.000000] #24 [000165a300 - 000165a368] BOOTMEM
[ 0.000000] #25 [000165a380 - 000165a3e8] BOOTMEM
[ 0.000000] #26 [000165a400 - 000165a468] BOOTMEM
[ 0.000000] #27 [000165a480 - 000165a4e8] BOOTMEM
[ 0.000000] #28 [000165a500 - 000165a568] BOOTMEM
[ 0.000000] #29 [000165a580 - 000165a5e8] BOOTMEM
[ 0.000000] #30 [000165a600 - 000165a668] BOOTMEM
[ 0.000000] #31 [000165a680 - 000165a6e8] BOOTMEM
[ 0.000000] #32 [000165a700 - 000165a768] BOOTMEM
[ 0.000000] #33 [000165a780 - 000165a7e8] BOOTMEM
[ 0.000000] #34 [000165a800 - 000165a868] BOOTMEM
[ 0.000000] #35 [000165a880 - 000165a8e8] BOOTMEM
[ 0.000000] #36 [000165a900 - 000165a968] BOOTMEM
[ 0.000000] #37 [000165a980 - 000165a9e8] BOOTMEM
[ 0.000000] #38 [000165aa00 - 000165aa68] BOOTMEM
[ 0.000000] #39 [000165aa80 - 000165aae8] BOOTMEM
[ 0.000000] #40 [000165ab00 - 000165ab68] BOOTMEM
[ 0.000000] #41 [000165ab80 - 000165abe8] BOOTMEM
[ 0.000000] #42 [000165ac00 - 000165ac68] BOOTMEM
[ 0.000000] #43 [000165ac80 - 000165ace8] BOOTMEM
[ 0.000000] #44 [000165ad00 - 000165ad68] BOOTMEM
[ 0.000000] #45 [000165ad80 - 000165ade8] BOOTMEM
[ 0.000000] #46 [000165ae00 - 000165ae68] BOOTMEM
[ 0.000000] #47 [000165ae80 - 000165aee8] BOOTMEM
[ 0.000000] #48 [000165af00 - 000165af68] BOOTMEM
[ 0.000000] #49 [000165af80 - 000165afe8] BOOTMEM
[ 0.000000] #50 [000165c000 - 000165c068] BOOTMEM
[ 0.000000] #51 [000165c080 - 000165c0e8] BOOTMEM
[ 0.000000] #52 [000165c100 - 000165c168] BOOTMEM
[ 0.000000] #53 [000165c180 - 000165c1e8] BOOTMEM
[ 0.000000] #54 [000165c200 - 000165c268] BOOTMEM
[ 0.000000] #55 [000165c280 - 000165c2e8] BOOTMEM
[ 0.000000] #56 [000165c300 - 000165c301] BOOTMEM
[ 0.000000] #57 [000165c340 - 000165c341] BOOTMEM
[ 0.000000] #58 [0001800000 - 000181a000] BOOTMEM
[ 0.000000] #59 [0001880000 - 000189a000] BOOTMEM
[ 0.000000] #60 [0001900000 - 000191a000] BOOTMEM
[ 0.000000] #61 [0001980000 - 000199a000] BOOTMEM
[ 0.000000] #62 [000165e380 - 000165e388] BOOTMEM
[ 0.000000] #63 [000165e3c0 - 000165e3c8] BOOTMEM
[ 0.000000] #64 [000165e400 - 000165e410] BOOTMEM
[ 0.000000] #65 [000165e440 - 000165e460] BOOTMEM
[ 0.000000] #66 [000165e480 - 000165e5b0] BOOTMEM
[ 0.000000] #67 [000165e5c0 - 000165e610] BOOTMEM
[ 0.000000] #68 [000165e640 - 000165e690] BOOTMEM
[ 0.000000] #69 [000165e6c0 - 00016666c0] BOOTMEM
[ 0.000000] #70 [000199a000 - 000599a000] BOOTMEM
[ 0.000000] #71 [00016666c0 - 00016866c0] BOOTMEM
[ 0.000000] #72 [00016866c0 - 00016c66c0] BOOTMEM
[ 0.000000] #73 [000000c000 - 0000014000] BOOTMEM
[ 0.000000] Memory: 3854756k/5111808k available (3558k kernel code, 1126724k absent, 130328k reserved, 1806k data, 500k init)
[ 0.000000] SLUB: Genslabs=14, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS:384
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] hpet clockevent registered
[ 0.000000] Fast TSC calibration using PIT
[ 0.001000] Detected 2394.036 MHz processor.
[ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.07 BogoMIPS (lpj=2394036)
[ 0.000260] Security Framework initialized
[ 0.000602] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.001705] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.002249] Mount-cache hash table entries: 256
[ 0.002481] CPU: Physical Processor ID: 0
[ 0.002600] CPU: Processor Core ID: 0
[ 0.002721] mce: CPU supports 9 MCE banks
[ 0.002858] CPU0: Thermal monitoring enabled (TM1)
[ 0.002984] using mwait in idle threads.
[ 0.003102] Performance Events: Westmere events, Intel PMU driver.
[ 0.003308] ... version: 3
[ 0.003425] ... bit width: 48
[ 0.003542] ... generic registers: 4
[ 0.003659] ... value mask: 0000ffffffffffff
[ 0.003779] ... max period: 000000007fffffff
[ 0.003907] ... fixed-purpose events: 3
[ 0.004024] ... event mask: 000000070000000f
[ 0.004177] ACPI: Core revision 20100121
[ 0.036617] Setting APIC routing to flat
[ 0.037172] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.047296] CPU0: Intel(R) Core(TM) i5 CPU M 520 @ 2.40GHz stepping 02
[ 0.152608] Booting Node 0, Processors #1 #2 #3 Ok.
[ 0.429211] Brought up 4 CPUs
[ 0.429345] Total of 4 processors activated (19151.28 BogoMIPS).
[ 0.430826] regulator: core version 0.5
[ 0.431012] NET: Registered protocol family 16
[ 0.431363] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.431590] ACPI: bus type pci registered
[ 0.431805] PCI: Using configuration type 1 for base access
[ 0.433785] bio: create slab <bio-0> at 0
[ 0.436140] ACPI: EC: EC description table is found, configuring boot EC
[ 0.445554] ACPI: BIOS _OSI(Linux) query ignored
[ 0.523631] ACPI: SSDT 00000000bb71aa18 0046F (v01 PmRef Cpu0Ist 00003000 INTL 20050513)
[ 0.524824] ACPI: SSDT 00000000bb718718 006B2 (v01 PmRef Cpu0Cst 00003001 INTL 20050513)
[ 0.526283] ACPI: SSDT 00000000bb719a98 00303 (v01 PmRef ApIst 00003000 INTL 20050513)
[ 0.527389] ACPI: SSDT 00000000bb717d98 00119 (v01 PmRef ApCst 00003000 INTL 20050513)
[ 0.529396] ACPI: Interpreter enabled
[ 0.529531] ACPI: (supports S0 S3 S5)
[ 0.529803] ACPI: Using IOAPIC for interrupt routing
[ 0.542230] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
[ 0.542594] ACPI: Power Resource [PUBS] (on)
[ 0.545342] ACPI: ACPI Dock Station Driver: 3 docks/bays found
[ 0.545483] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.545727] ACPI: PCI Root Bridge [UNCR] (0000:ff)
[ 0.546514] ACPI: PCI Root Bridge [PCI0] (0000:00)
[ 0.546715] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.546858] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.547001] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.547226] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
[ 0.547451] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
[ 0.547677] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
[ 0.547937] pci 0000:00:02.0: reg 10: [mem 0xf2000000-0xf23fffff 64bit]
[ 0.547942] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.547945] pci 0000:00:02.0: reg 20: [io 0x1800-0x1807]
[ 0.548023] pci 0000:00:16.0: reg 10: [mem 0xf2727800-0xf272780f 64bit]
[ 0.548079] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.548083] pci 0000:00:16.0: PME# disabled
[ 0.548124] pci 0000:00:16.3: reg 10: [io 0x1808-0x180f]
[ 0.548131] pci 0000:00:16.3: reg 14: [mem 0xf2524000-0xf2524fff]
[ 0.548234] pci 0000:00:19.0: reg 10: [mem 0xf2500000-0xf251ffff]
[ 0.548242] pci 0000:00:19.0: reg 14: [mem 0xf2525000-0xf2525fff]
[ 0.548249] pci 0000:00:19.0: reg 18: [io 0x1820-0x183f]
[ 0.548301] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.548305] pci 0000:00:19.0: PME# disabled
[ 0.548352] pci 0000:00:1a.0: reg 10: [mem 0xf2728000-0xf27283ff]
[ 0.548416] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.548420] pci 0000:00:1a.0: PME# disabled
[ 0.548461] pci 0000:00:1b.0: reg 10: [mem 0xf2520000-0xf2523fff 64bit]
[ 0.548518] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.548523] pci 0000:00:1b.0: PME# disabled
[ 0.548605] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.548610] pci 0000:00:1c.0: PME# disabled
[ 0.548699] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.548703] pci 0000:00:1c.3: PME# disabled
[ 0.548789] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.548793] pci 0000:00:1c.4: PME# disabled
[ 0.548845] pci 0000:00:1d.0: reg 10: [mem 0xf2728400-0xf27287ff]
[ 0.548909] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.548913] pci 0000:00:1d.0: PME# disabled
[ 0.549109] pci 0000:00:1f.2: reg 10: [io 0x1860-0x1867]
[ 0.549115] pci 0000:00:1f.2: reg 14: [io 0x1814-0x1817]
[ 0.549122] pci 0000:00:1f.2: reg 18: [io 0x1818-0x181f]
[ 0.549129] pci 0000:00:1f.2: reg 1c: [io 0x1810-0x1813]
[ 0.549136] pci 0000:00:1f.2: reg 20: [io 0x1840-0x185f]
[ 0.549143] pci 0000:00:1f.2: reg 24: [mem 0xf2727000-0xf27277ff]
[ 0.549187] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.549191] pci 0000:00:1f.2: PME# disabled
[ 0.549226] pci 0000:00:1f.3: reg 10: [mem 0xf2728800-0xf27288ff 64bit]
[ 0.549244] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
[ 0.549304] pci 0000:00:1f.6: reg 10: [mem 0xf2526000-0xf2526fff 64bit]
[ 0.549419] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
[ 0.549558] pci 0000:00:1c.0: bridge window [io 0xf000-0x0000] (disabled)
[ 0.549563] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
[ 0.549570] pci 0000:00:1c.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 0.549625] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
[ 0.549765] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.549770] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf1ffffff]
[ 0.549777] pci 0000:00:1c.3: bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
[ 0.549935] pci 0000:02:00.0: reg 10: [mem 0xf2400000-0xf2401fff 64bit]
[ 0.550118] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.550145] pci 0000:02:00.0: PME# disabled
[ 0.550188] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
[ 0.550328] pci 0000:00:1c.4: bridge window [io 0xf000-0x0000] (disabled)
[ 0.550332] pci 0000:00:1c.4: bridge window [mem 0xf2400000-0xf24fffff]
[ 0.550339] pci 0000:00:1c.4: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 0.550409] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e] (subtractive decode)
[ 0.550556] pci 0000:00:1e.0: bridge window [io 0xf000-0x0000] (disabled)
[ 0.550560] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff] (disabled)
[ 0.550568] pci 0000:00:1e.0: bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[ 0.550570] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.550572] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.550574] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.550576] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
[ 0.550578] pci 0000:00:1e.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
[ 0.550580] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
[ 0.550608] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.550774] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
[ 0.550848] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
[ 0.550920] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
[ 0.556663] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.557396] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.558111] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.559012] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.559741] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.560457] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.561340] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.562236] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.562940] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.563174] vgaarb: loaded
[ 0.563408] SCSI subsystem initialized
[ 0.563597] libata version 3.00 loaded.
[ 0.563690] PCI: Using ACPI for IRQ routing
[ 0.563825] PCI: pci_cache_line_size set to 64 bytes
[ 0.563952] reserve RAM buffer: 000000000009e800 - 000000000009ffff
[ 0.563954] reserve RAM buffer: 00000000bb27c000 - 00000000bbffffff
[ 0.563960] reserve RAM buffer: 00000000bb363000 - 00000000bbffffff
[ 0.563965] reserve RAM buffer: 00000000bb46f000 - 00000000bbffffff
[ 0.563969] reserve RAM buffer: 00000000bb717000 - 00000000bbffffff
[ 0.563973] reserve RAM buffer: 00000000bb76b000 - 00000000bbffffff
[ 0.563976] reserve RAM buffer: 00000000bb800000 - 00000000bbffffff
[ 0.564079] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.564590] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.566737] Switching to clocksource tsc
[ 0.566963] pnp: PnP ACPI init
[ 0.567102] ACPI: bus type pnp registered
[ 0.571344] pnp: PnP ACPI: found 13 devices
[ 0.571479] ACPI: ACPI bus type pnp unregistered
[ 0.571622] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 0.571765] system 00:00: [mem 0x000c0000-0x000c3fff] has been reserved
[ 0.571907] system 00:00: [mem 0x000c4000-0x000c7fff] has been reserved
[ 0.572052] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
[ 0.572195] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
[ 0.572336] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
[ 0.572480] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
[ 0.572623] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
[ 0.572766] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
[ 0.572910] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
[ 0.573057] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
[ 0.573201] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[ 0.573343] system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
[ 0.573486] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
[ 0.573629] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
[ 0.573774] system 00:03: [io 0x164e-0x164f] has been reserved
[ 0.573913] system 00:03: [io 0x1000-0x107f] has been reserved
[ 0.574055] system 00:03: [io 0x1180-0x11ff] has been reserved
[ 0.574195] system 00:03: [io 0x0800-0x080f] has been reserved
[ 0.574335] system 00:03: [io 0x15e0-0x15ef] has been reserved
[ 0.574475] system 00:03: [io 0x1600-0x1641] has been reserved
[ 0.574613] system 00:03: [io 0x1644-0x167f] could not be reserved
[ 0.574754] system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.574894] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.575040] system 00:03: [mem 0xfed10000-0xfed13fff] has been reserved
[ 0.575180] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.575323] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.575464] system 00:03: [mem 0xfed45000-0xfed4bfff] has been reserved
[ 0.575610] system 00:0c: [mem 0xfeaff000-0xfeafffff] has been reserved
[ 0.580690] PCI: max bus depth: 1 pci_try_num: 2
[ 0.580730] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
[ 0.580866] pci 0000:00:1c.0: bridge window [io disabled]
[ 0.581012] pci 0000:00:1c.0: bridge window [mem disabled]
[ 0.581153] pci 0000:00:1c.0: bridge window [mem pref disabled]
[ 0.581297] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
[ 0.581437] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.581582] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf1ffffff]
[ 0.581726] pci 0000:00:1c.3: bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
[ 0.581961] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
[ 0.582098] pci 0000:00:1c.4: bridge window [io disabled]
[ 0.582241] pci 0000:00:1c.4: bridge window [mem 0xf2400000-0xf24fffff]
[ 0.582386] pci 0000:00:1c.4: bridge window [mem pref disabled]
[ 0.582530] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e]
[ 0.582668] pci 0000:00:1e.0: bridge window [io disabled]
[ 0.582809] pci 0000:00:1e.0: bridge window [mem disabled]
[ 0.582954] pci 0000:00:1e.0: bridge window [mem pref disabled]
[ 0.583111] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.583257] pci 0000:00:1c.0: setting latency timer to 64
[ 0.583268] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 0.583412] pci 0000:00:1c.3: setting latency timer to 64
[ 0.583421] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 0.583568] pci 0000:00:1c.4: setting latency timer to 64
[ 0.583576] pci 0000:00:1e.0: setting latency timer to 64
[ 0.583580] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.583581] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.583583] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.583585] pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.583586] pci_bus 0000:00: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.583588] pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff]
[ 0.583590] pci_bus 0000:05: resource 0 [io 0x2000-0x2fff]
[ 0.583591] pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf1ffffff]
[ 0.583593] pci_bus 0000:05: resource 2 [mem 0xf2800000-0xf28fffff 64bit pref]
[ 0.583595] pci_bus 0000:02: resource 1 [mem 0xf2400000-0xf24fffff]
[ 0.583597] pci_bus 0000:0e: resource 4 [io 0x0000-0x0cf7]
[ 0.583598] pci_bus 0000:0e: resource 5 [io 0x0d00-0xffff]
[ 0.583600] pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.583602] pci_bus 0000:0e: resource 7 [mem 0x000d4000-0x000d7fff]
[ 0.583603] pci_bus 0000:0e: resource 8 [mem 0x000d8000-0x000dbfff]
[ 0.583605] pci_bus 0000:0e: resource 9 [mem 0xc0000000-0xfebfffff]
[ 0.583624] NET: Registered protocol family 2
[ 0.583859] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.584798] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.587392] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.587819] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.587964] TCP reno registered
[ 0.588101] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.588273] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[ 0.588520] NET: Registered protocol family 1
[ 0.588678] pci 0000:00:02.0: Boot video device
[ 0.588796] PCI: CLS 64 bytes, default 64
[ 0.588837] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.588979] Placing 64MB software IO TLB between ffff88000199a000 - ffff88000599a000
[ 0.589207] software IO TLB at phys 0x199a000 - 0x599a000
[ 0.589435] Simple Boot Flag at 0x35 set to 0x80
[ 0.590327] microcode: CPU0 sig=0x20652, pf=0x10, revision=0x9
[ 0.590471] microcode: CPU1 sig=0x20652, pf=0x10, revision=0x9
[ 0.590613] microcode: CPU2 sig=0x20652, pf=0x10, revision=0x9
[ 0.590757] microcode: CPU3 sig=0x20652, pf=0x10, revision=0x9
[ 0.590926] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.594041] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.595956] VFS: Disk quotas dquot_6.5.2
[ 0.596142] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.596772] JFS: nTxBlock = 8192, nTxLock = 65536
[ 0.598631] Btrfs loaded
[ 0.598767] msgmni has been set to 7528
[ 0.599189] alg: No test for stdrng (krng)
[ 0.599395] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[ 0.599620] io scheduler noop registered
[ 0.599754] io scheduler deadline registered
[ 0.599967] io scheduler cfq registered (default)
[ 0.600199] pcieport 0000:00:1c.0: setting latency timer to 64
[ 0.600252] pcieport 0000:00:1c.0: irq 24 for MSI/MSI-X
[ 0.600336] pcieport 0000:00:1c.3: setting latency timer to 64
[ 0.600383] pcieport 0000:00:1c.3: irq 25 for MSI/MSI-X
[ 0.600485] pcieport 0000:00:1c.4: setting latency timer to 64
[ 0.600532] pcieport 0000:00:1c.4: irq 26 for MSI/MSI-X
[ 0.600997] ACPI: AC Adapter [AC] (on-line)
[ 0.601226] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 0.601643] ACPI: Lid Switch [LID]
[ 0.601828] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.602060] ACPI: Sleep Button [SLPB]
[ 0.602248] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.602474] ACPI: Power Button [PWRF]
[ 0.605095] Monitor-Mwait will be used to enter C-1 state
[ 0.605110] Monitor-Mwait will be used to enter C-2 state
[ 0.605122] Monitor-Mwait will be used to enter C-3 state
[ 0.615098] thermal LNXTHERM:01: registered as thermal_zone0
[ 0.615242] ACPI: Thermal Zone [THM0] (55 C)
[ 0.631161] ACPI: Battery Slot [BAT0] (battery present)
[ 0.640569] Linux agpgart interface v0.103
[ 0.641769] brd: module loaded
[ 0.641909] Uniform Multi-Platform E-IDE driver
[ 0.642103] ide-gd driver 1.18
[ 0.642364] ahci 0000:00:1f.2: version 3.0
[ 0.642385] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
[ 0.642568] ahci 0000:00:1f.2: irq 27 for MSI/MSI-X
[ 0.642599] ahci: SSS flag set, parallel bus scan disabled
[ 0.642783] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x33 impl SATA mode
[ 0.643014] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pmp pio slum part ems sxs apst
[ 0.643249] ahci 0000:00:1f.2: setting latency timer to 64
[ 0.648890] scsi0 : ahci
[ 0.649106] scsi1 : ahci
[ 0.649297] scsi2 : ahci
[ 0.649488] scsi3 : ahci
[ 0.649679] scsi4 : ahci
[ 0.649877] scsi5 : ahci
[ 0.651159] ata1: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727100 irq 27
[ 0.651385] ata2: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727180 irq 27
[ 0.651608] ata3: DUMMY
[ 0.651736] ata4: DUMMY
[ 0.651869] ata5: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727300 irq 27
[ 0.652096] ata6: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727380 irq 27
[ 0.652494] ieee1394: raw1394: /dev/raw1394 device initialized
[ 0.652713] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 0.656141] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.656281] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.656519] mice: PS/2 mouse device common for all mice
[ 0.657193] cpuidle: using governor ladder
[ 0.657908] cpuidle: using governor menu
[ 0.658305] TCP cubic registered
[ 0.658440] NET: Registered protocol family 17
[ 0.660889] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.662973] registered taskstats version 1
[ 1.109011] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.110504] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.110513] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.110755] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 1.149017] ata1.00: ATA-8: ST9500420AS, 0003LVM1, max UDMA/100
[ 1.149174] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
[ 1.152037] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
[ 1.152045] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 1.152285] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
[ 1.154566] ata1.00: configured for UDMA/100
[ 1.169506] ata1.00: configured for UDMA/100
[ 1.169652] ata1: EH complete
[ 1.169939] scsi 0:0:0:0: Direct-Access ATA ST9500420AS 0003 PQ: 0 ANSI: 5
[ 1.170531] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 1.170865] sd 0:0:0:0: [sda] Write Protect is off
[ 1.171013] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.171048] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.171480] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[ 1.197449] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.400841] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b1/0xb40000
[ 1.401074] serio: Synaptics pass-through port at isa0060/serio1/input0
[ 1.452418] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input4
[ 2.044511] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 2.050399] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[ 2.051277] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[ 2.054993] ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-U20N, HX12, max UDMA/133
[ 2.061584] ata2.00: ACPI cmd e3/00:1f:00:00:00:a0 (IDLE) succeeded
[ 2.062469] ata2.00: ACPI cmd e3/00:02:00:00:00:a0 (IDLE) succeeded
[ 2.066265] ata2.00: configured for UDMA/133
[ 2.085723] scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-U20N HX12 PQ: 0 ANSI: 5
[ 2.390895] ata5: SATA link down (SStatus 0 SControl 300)
[ 2.706358] ata6: SATA link down (SStatus 0 SControl 300)
[ 2.781967] VFS: Mounted root (jfs filesystem) readonly on device 8:1.
[ 2.782132] Freeing unused kernel memory: 500k freed
[ 3.662752] rtc_cmos 00:08: RTC can wake from S4
[ 3.662922] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
[ 3.662960] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 4.224837] udev: starting version 151
[ 4.558287] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.558368] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[ 4.661277] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 4.661281] Uniform CD-ROM driver Revision: 3.20
[ 4.661396] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4.703173] ACPI: WMI: Mapper loaded
[ 4.834148] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.834154] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.834159] ILI
[ 4.834161] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.834165] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.834175] end_request: I/O error, dev sr0, sector 0
[ 4.834178] Buffer I/O error on device sr0, logical block 0
[ 4.837168] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.837173] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.837178] ILI
[ 4.837180] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.837185] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.837196] end_request: I/O error, dev sr0, sector 0
[ 4.837199] Buffer I/O error on device sr0, logical block 0
[ 4.840179] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.840184] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.840188] ILI
[ 4.840190] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.840195] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.840205] end_request: I/O error, dev sr0, sector 0
[ 4.840209] Buffer I/O error on device sr0, logical block 0
[ 4.843258] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.843263] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.843268] ILI
[ 4.843270] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.843274] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.843285] end_request: I/O error, dev sr0, sector 0
[ 4.843289] Buffer I/O error on device sr0, logical block 0
[ 4.846266] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.846271] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.846276] ILI
[ 4.846278] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.846282] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.846293] end_request: I/O error, dev sr0, sector 0
[ 4.846296] Buffer I/O error on device sr0, logical block 0
[ 4.849286] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.849291] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.849295] ILI
[ 4.849297] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.849301] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.849312] end_request: I/O error, dev sr0, sector 0
[ 4.849316] Buffer I/O error on device sr0, logical block 0
[ 4.852300] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.852307] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.852313] ILI
[ 4.852315] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.852321] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.852334] end_request: I/O error, dev sr0, sector 0
[ 4.852338] Buffer I/O error on device sr0, logical block 0
[ 4.855339] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.855344] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.855349] ILI
[ 4.855350] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.855354] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.855363] end_request: I/O error, dev sr0, sector 0
[ 4.855367] Buffer I/O error on device sr0, logical block 0
[ 4.858364] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.858370] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.858376] ILI
[ 4.858378] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.858382] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.858394] end_request: I/O error, dev sr0, sector 0
[ 4.858398] Buffer I/O error on device sr0, logical block 0
[ 4.861333] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.861338] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.861343] ILI
[ 4.861345] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.861349] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.861360] end_request: I/O error, dev sr0, sector 0
[ 4.861364] Buffer I/O error on device sr0, logical block 0
[ 4.864416] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.864420] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.864425] ILI
[ 4.864427] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.864431] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.864442] end_request: I/O error, dev sr0, sector 56
[ 4.867419] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.867424] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.867429] ILI
[ 4.867431] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.867435] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.867445] end_request: I/O error, dev sr0, sector 0
[ 4.870432] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.870438] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.870444] ILI
[ 4.870446] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.870450] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.870462] end_request: I/O error, dev sr0, sector 0
[ 4.873505] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.873510] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.873515] ILI
[ 4.873517] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.873522] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.873532] end_request: I/O error, dev sr0, sector 0
[ 4.876509] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.876514] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.876519] ILI
[ 4.876521] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.876525] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.876536] end_request: I/O error, dev sr0, sector 0
[ 4.879541] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.879546] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.879560] ILI
[ 4.879563] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.879568] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.879579] end_request: I/O error, dev sr0, sector 0
[ 4.882648] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.882654] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.882660] ILI
[ 4.882662] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.882666] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.882678] end_request: I/O error, dev sr0, sector 0
[ 4.885644] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.885649] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.885654] ILI
[ 4.885656] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.885660] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.885671] end_request: I/O error, dev sr0, sector 0
[ 4.888677] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.888684] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.888689] ILI
[ 4.888691] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.888696] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.888707] end_request: I/O error, dev sr0, sector 0
[ 4.892559] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.892567] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.892574] ILI
[ 4.892577] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.892584] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.892600] end_request: I/O error, dev sr0, sector 0
[ 4.893039] Non-volatile memory driver v1.3
[ 4.895460] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.895466] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.895471] ILI
[ 4.895473] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.895477] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.895488] end_request: I/O error, dev sr0, sector 0
[ 4.898464] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.898471] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.898476] ILI
[ 4.898478] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.898483] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.898494] end_request: I/O error, dev sr0, sector 0
[ 4.901472] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.901477] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.901482] ILI
[ 4.901484] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.901489] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.901499] end_request: I/O error, dev sr0, sector 0
[ 4.904610] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.904615] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.904620] ILI
[ 4.904622] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.904627] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.904637] end_request: I/O error, dev sr0, sector 0
[ 4.907624] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.907631] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.907638] ILI
[ 4.907640] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.907647] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.907662] end_request: I/O error, dev sr0, sector 0
[ 4.910634] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.910642] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.910647] ILI
[ 4.910649] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.910654] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.910665] end_request: I/O error, dev sr0, sector 0
[ 4.911512] tpm_tis 00:0b: 1.2 TPM (device-id 0x0, rev-id 78)
[ 4.913695] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.913701] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.913706] ILI
[ 4.913708] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.913712] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.913723] end_request: I/O error, dev sr0, sector 0
[ 4.916704] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.916709] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.916714] ILI
[ 4.916716] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.916721] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.916731] end_request: I/O error, dev sr0, sector 8
[ 4.919779] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.919786] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.919791] ILI
[ 4.919793] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.919798] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.919809] end_request: I/O error, dev sr0, sector 8
[ 4.922863] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.922870] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.922875] ILI
[ 4.922878] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.922883] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.922898] end_request: I/O error, dev sr0, sector 8
[ 4.925883] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.925889] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.925895] ILI
[ 4.925897] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.925902] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.925913] end_request: I/O error, dev sr0, sector 8
[ 4.928850] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.928857] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.928863] ILI
[ 4.928865] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.928870] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.928881] end_request: I/O error, dev sr0, sector 24
[ 4.931914] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.931919] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.931924] ILI
[ 4.931926] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.931930] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.931941] end_request: I/O error, dev sr0, sector 24
[ 4.934920] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.934925] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.934929] ILI
[ 4.934931] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.934936] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.934946] end_request: I/O error, dev sr0, sector 24
[ 4.937933] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.937938] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.937943] ILI
[ 4.937945] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.937949] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.937960] end_request: I/O error, dev sr0, sector 24
[ 4.940939] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.940947] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.940954] ILI
[ 4.940956] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.940963] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.940978] end_request: I/O error, dev sr0, sector 56
[ 4.944002] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.944007] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.944011] ILI
[ 4.944013] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.944018] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.944028] end_request: I/O error, dev sr0, sector 56
[ 4.948829] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.948835] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.948841] ILI
[ 4.948844] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.948849] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.948863] end_request: I/O error, dev sr0, sector 56
[ 4.952244] cfg80211: Calling CRDA to update world regulatory domain
[ 4.954927] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
[ 4.955485] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.955490] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.955493] ILI
[ 4.955495] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.955498] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.955506] end_request: I/O error, dev sr0, sector 56
[ 4.956027] agpgart-intel 0000:00:00.0: detected 32764K stolen memory
[ 4.958499] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.958502] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.958505] ILI
[ 4.958506] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.958508] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.958514] end_request: I/O error, dev sr0, sector 120
[ 4.961499] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.961501] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.961503] ILI
[ 4.961504] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.961506] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.961512] end_request: I/O error, dev sr0, sector 120
[ 4.964560] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.964563] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.964566] ILI
[ 4.964567] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.964569] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.964574] end_request: I/O error, dev sr0, sector 120
[ 4.967565] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.967567] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.967569] ILI
[ 4.967570] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.967572] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.967577] end_request: I/O error, dev sr0, sector 120
[ 4.970568] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.970571] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.970573] ILI
[ 4.970574] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.970576] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.970581] end_request: I/O error, dev sr0, sector 0
[ 4.973634] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.973636] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.973641] ILI
[ 4.973642] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.973644] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 4.973649] end_request: I/O error, dev sr0, sector 0
[ 4.976641] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.976643] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.976646] ILI
[ 4.976646] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.976648] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.976653] end_request: I/O error, dev sr0, sector 8
[ 4.979647] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.979649] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.979651] ILI
[ 4.979652] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.979654] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 4.979659] end_request: I/O error, dev sr0, sector 8
[ 4.982698] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.982701] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.982703] ILI
[ 4.982704] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.982706] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.982711] end_request: I/O error, dev sr0, sector 24
[ 4.985705] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.985708] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.985710] ILI
[ 4.985711] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.985713] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 4.985718] end_request: I/O error, dev sr0, sector 24
[ 4.988745] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.988747] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.988749] ILI
[ 4.988750] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.988752] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.988758] end_request: I/O error, dev sr0, sector 56
[ 4.991748] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.991750] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.991753] ILI
[ 4.991754] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.991756] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 4.991761] end_request: I/O error, dev sr0, sector 56
[ 4.994817] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.994820] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.994822] ILI
[ 4.994823] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.994825] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.994830] end_request: I/O error, dev sr0, sector 120
[ 4.997824] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 4.997826] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 4.997829] ILI
[ 4.997829] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 4.997831] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 4.997837] end_request: I/O error, dev sr0, sector 120
[ 5.001992] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.001994] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.001997] ILI
[ 5.001998] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.002000] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.002005] end_request: I/O error, dev sr0, sector 0
[ 5.005620] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.005625] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.005627] ILI
[ 5.005628] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.005630] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.005635] end_request: I/O error, dev sr0, sector 0
[ 5.008622] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.008625] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.008627] ILI
[ 5.008628] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.008630] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.008635] end_request: I/O error, dev sr0, sector 0
[ 5.011628] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.011631] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.011633] ILI
[ 5.011634] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.011636] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.011641] end_request: I/O error, dev sr0, sector 0
[ 5.014701] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.014703] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.014706] ILI
[ 5.014707] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.014709] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.014714] end_request: I/O error, dev sr0, sector 0
[ 5.017698] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.017700] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.017703] ILI
[ 5.017703] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.017705] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.017710] end_request: I/O error, dev sr0, sector 0
[ 5.020706] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.020709] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.020711] ILI
[ 5.020712] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.020714] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 5.020719] end_request: I/O error, dev sr0, sector 16
[ 5.021991] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 5.023938] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.023945] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.023950] ILI
[ 5.023952] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.023957] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.023969] end_request: I/O error, dev sr0, sector 128
[ 5.026940] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.026947] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.026952] ILI
[ 5.026954] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.026959] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.026970] end_request: I/O error, dev sr0, sector 128
[ 5.029953] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.029960] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.029968] ILI
[ 5.029971] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.029977] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.029994] end_request: I/O error, dev sr0, sector 128
[ 5.032962] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.032968] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.032972] ILI
[ 5.032974] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.032979] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 5.032990] end_request: I/O error, dev sr0, sector 16
[ 5.035972] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.035979] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.035986] ILI
[ 5.035989] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.035996] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.036012] end_request: I/O error, dev sr0, sector 128
[ 5.038989] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.038997] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.039004] ILI
[ 5.039007] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.039013] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.039029] end_request: I/O error, dev sr0, sector 64
[ 5.042001] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.042009] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.042015] ILI
[ 5.042018] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.042024] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.042038] end_request: I/O error, dev sr0, sector 64
[ 5.045072] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.045078] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.045084] ILI
[ 5.045087] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.045092] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.045106] end_request: I/O error, dev sr0, sector 64
[ 5.048142] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.048149] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.048154] ILI
[ 5.048156] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.048161] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.048172] end_request: I/O error, dev sr0, sector 64
[ 5.051136] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.051143] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.051148] ILI
[ 5.051150] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.051155] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.051166] end_request: I/O error, dev sr0, sector 64
[ 5.054188] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.054193] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.054198] ILI
[ 5.054200] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.054204] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.054215] end_request: I/O error, dev sr0, sector 64
[ 5.057231] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.057236] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.057240] ILI
[ 5.057242] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.057247] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.057257] end_request: I/O error, dev sr0, sector 64
[ 5.060269] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.060275] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.060281] ILI
[ 5.060283] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.060288] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.060299] end_request: I/O error, dev sr0, sector 64
[ 5.063296] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.063301] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.063306] ILI
[ 5.063308] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.063313] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.063323] end_request: I/O error, dev sr0, sector 64
[ 5.066377] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.066384] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.066389] ILI
[ 5.066392] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.066396] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 5.066408] end_request: I/O error, dev sr0, sector 64
[ 5.074819] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.074824] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.074828] ILI
[ 5.074830] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.074834] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 40 00 00 02 00
[ 5.074843] end_request: I/O error, dev sr0, sector 256
[ 5.077834] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.077839] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.077843] ILI
[ 5.077845] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.077849] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 40 00 00 02 00
[ 5.077858] end_request: I/O error, dev sr0, sector 256
[ 5.080875] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.080881] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.080885] ILI
[ 5.080887] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.080891] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 42 00 00 02 00
[ 5.080900] end_request: I/O error, dev sr0, sector 264
[ 5.083929] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.083935] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.083939] ILI
[ 5.083941] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.083945] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 42 00 00 02 00
[ 5.083954] end_request: I/O error, dev sr0, sector 264
[ 5.086967] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.086974] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.086979] ILI
[ 5.086982] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.086986] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 44 00 00 02 00
[ 5.086997] end_request: I/O error, dev sr0, sector 272
[ 5.090006] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.090012] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.090016] ILI
[ 5.090018] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.090022] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 44 00 00 02 00
[ 5.090031] end_request: I/O error, dev sr0, sector 272
[ 5.093063] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.093068] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.093073] ILI
[ 5.093074] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.093079] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c0 00 00 02 00
[ 5.093090] end_request: I/O error, dev sr0, sector 768
[ 5.096037] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.096042] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.096046] ILI
[ 5.096048] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.096052] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c0 00 00 02 00
[ 5.096063] end_request: I/O error, dev sr0, sector 768
[ 5.099103] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.099109] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.099115] ILI
[ 5.099117] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.099122] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c2 00 00 02 00
[ 5.099133] end_request: I/O error, dev sr0, sector 776
[ 5.102142] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.102148] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.102152] ILI
[ 5.102154] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.102158] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c2 00 00 02 00
[ 5.102167] end_request: I/O error, dev sr0, sector 776
[ 5.105141] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.105146] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.105151] ILI
[ 5.105153] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.105157] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c4 00 00 02 00
[ 5.105177] end_request: I/O error, dev sr0, sector 784
[ 5.108129] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.108135] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.108140] ILI
[ 5.108142] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.108146] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c4 00 00 02 00
[ 5.108157] end_request: I/O error, dev sr0, sector 784
[ 5.111136] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.111142] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.111147] ILI
[ 5.111150] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.111154] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.111165] end_request: I/O error, dev sr0, sector 0
[ 5.114199] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.114204] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.114208] ILI
[ 5.114210] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.114215] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.114225] end_request: I/O error, dev sr0, sector 0
[ 5.117302] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.117307] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.117312] ILI
[ 5.117314] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.117318] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.117327] end_request: I/O error, dev sr0, sector 0
[ 5.120254] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.120260] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.120266] ILI
[ 5.120268] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.120272] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.120284] end_request: I/O error, dev sr0, sector 0
[ 5.123423] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.123429] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.123433] ILI
[ 5.123435] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.123439] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.123448] end_request: I/O error, dev sr0, sector 0
[ 5.126415] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.126420] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.126425] ILI
[ 5.126427] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.126430] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 5.126440] end_request: I/O error, dev sr0, sector 16
[ 5.129444] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.129451] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.129456] ILI
[ 5.129459] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.129463] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.129474] end_request: I/O error, dev sr0, sector 0
[ 5.132580] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.132586] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.132590] ILI
[ 5.132592] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.132596] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.132605] end_request: I/O error, dev sr0, sector 0
[ 5.135534] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.135539] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.135544] ILI
[ 5.135546] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.135549] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.135559] end_request: I/O error, dev sr0, sector 0
[ 5.138600] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.138606] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.138610] ILI
[ 5.138612] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.138616] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.138625] end_request: I/O error, dev sr0, sector 0
[ 5.141627] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.141633] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.141637] ILI
[ 5.141639] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.141643] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.141652] end_request: I/O error, dev sr0, sector 0
[ 5.144828] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.144833] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.144838] ILI
[ 5.144839] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.144843] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.144852] end_request: I/O error, dev sr0, sector 0
[ 5.147859] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.147865] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.147869] ILI
[ 5.147871] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.147875] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.147884] end_request: I/O error, dev sr0, sector 0
[ 5.150903] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.150908] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.150913] ILI
[ 5.150915] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.150918] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.150928] end_request: I/O error, dev sr0, sector 0
[ 5.159354] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.159359] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.159364] ILI
[ 5.159366] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.159370] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.159379] end_request: I/O error, dev sr0, sector 0
[ 5.162328] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.162335] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.162340] ILI
[ 5.162342] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.162347] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.162358] end_request: I/O error, dev sr0, sector 0
[ 5.165328] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.165333] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.165338] ILI
[ 5.165340] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.165344] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.165355] end_request: I/O error, dev sr0, sector 0
[ 5.168392] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.168397] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.168402] ILI
[ 5.168404] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.168408] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.168419] end_request: I/O error, dev sr0, sector 0
[ 5.171482] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.171487] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.171492] ILI
[ 5.171494] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.171497] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.171507] end_request: I/O error, dev sr0, sector 128
[ 5.174504] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.174510] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.174514] ILI
[ 5.174516] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.174520] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.174529] end_request: I/O error, dev sr0, sector 128
[ 5.177592] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.177598] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.177602] ILI
[ 5.177604] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.177608] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 5.177617] end_request: I/O error, dev sr0, sector 16
[ 5.180617] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.180623] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.180627] ILI
[ 5.180629] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.180633] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.180642] end_request: I/O error, dev sr0, sector 0
[ 5.183638] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.183644] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.183648] ILI
[ 5.183650] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.183654] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.183663] end_request: I/O error, dev sr0, sector 0
[ 5.186687] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.186692] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.186696] ILI
[ 5.186698] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.186702] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 5.186711] end_request: I/O error, dev sr0, sector 8
[ 5.189709] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.189714] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.189719] ILI
[ 5.189720] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.189724] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 5.189734] end_request: I/O error, dev sr0, sector 16
[ 5.192730] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.192774] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.192779] ILI
[ 5.192781] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.192786] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.192795] end_request: I/O error, dev sr0, sector 0
[ 5.195793] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.195798] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.195803] ILI
[ 5.195805] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.195809] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.195818] end_request: I/O error, dev sr0, sector 0
[ 5.198819] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.198827] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.198833] ILI
[ 5.198836] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.198841] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.198855] end_request: I/O error, dev sr0, sector 0
[ 5.201815] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.201818] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.201820] ILI
[ 5.201821] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.201823] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.201828] end_request: I/O error, dev sr0, sector 0
[ 5.204855] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.204859] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.204862] ILI
[ 5.204864] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.204867] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.204874] end_request: I/O error, dev sr0, sector 0
[ 5.206679] usbcore: registered new interface driver usbfs
[ 5.206693] usbcore: registered new interface driver hub
[ 5.206761] usbcore: registered new device driver usb
[ 5.207929] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.207933] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.207937] ILI
[ 5.207938] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.207941] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.207949] end_request: I/O error, dev sr0, sector 0
[ 5.210932] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.210935] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.210938] ILI
[ 5.210939] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.210941] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 5.210946] end_request: I/O error, dev sr0, sector 8
[ 5.210995] e1000e: Intel(R) PRO/1000 Network Driver - 1.0.2-k2
[ 5.210998] e1000e: Copyright (c) 1999 - 2009 Intel Corporation.
[ 5.211049] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[ 5.211059] e1000e 0000:00:19.0: setting latency timer to 64
[ 5.211195] e1000e 0000:00:19.0: irq 28 for MSI/MSI-X
[ 5.213940] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.213943] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.213946] ILI
[ 5.213947] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.213950] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 5.213956] end_request: I/O error, dev sr0, sector 128
[ 5.217006] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.217010] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.217014] ILI
[ 5.217015] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.217018] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.217025] end_request: I/O error, dev sr0, sector 0
[ 5.220023] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.220028] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.220034] ILI
[ 5.220036] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.220040] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.220052] end_request: I/O error, dev sr0, sector 0
[ 5.222830] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 5.223018] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.223021] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.223024] ILI
[ 5.223026] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.223028] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 04 00 00 00 02 00
[ 5.223035] end_request: I/O error, dev sr0, sector 4096
[ 5.227372] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 5.231518] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 5.419889] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[ 5.419892] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 5.419893] thinkpad_acpi: ThinkPad BIOS 6QET35WW (1.05 ), EC 6QHT24WW-1.05
[ 5.419896] thinkpad_acpi: Lenovo ThinkPad X201, model 3626A14
[ 5.420222] thinkpad_acpi: radio switch found; radios are enabled
[ 5.420441] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
[ 5.420675] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
[ 5.420677] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
[ 5.424768] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
[ 5.425811] Registered led device: tpacpi::thinklight
[ 5.425834] Registered led device: tpacpi::power
[ 5.425847] Registered led device: tpacpi:orange:batt
[ 5.425862] Registered led device: tpacpi:green:batt
[ 5.425877] Registered led device: tpacpi::dock_active
[ 5.426045] Registered led device: tpacpi::bay_active
[ 5.426058] Registered led device: tpacpi::dock_batt
[ 5.426071] Registered led device: tpacpi::unknown_led
[ 5.426085] Registered led device: tpacpi::standby
[ 5.426148] Registered led device: tpacpi::dock_status1
[ 5.426164] Registered led device: tpacpi::dock_status2
[ 5.426178] Registered led device: tpacpi::unknown_led2
[ 5.426338] Registered led device: tpacpi::unknown_led3
[ 5.426355] Registered led device: tpacpi::thinkvantage
[ 5.426357] thinkpad_acpi: warning: userspace override of important firmware LEDs is enabled
[ 5.428552] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one.
[ 5.428818] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[ 5.432358] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
[ 5.571315] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
[ 5.571317] iwlagn: Copyright(c) 2003-2010 Intel Corporation
[ 5.571422] iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 5.571458] iwlagn 0000:02:00.0: setting latency timer to 64
[ 5.571560] iwlagn 0000:02:00.0: Detected Intel Wireless WiFi Link 6000 Series 3x3 AGN REV=0x74
[ 5.588302] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
[ 5.588465] iwlagn 0000:02:00.0: irq 29 for MSI/MSI-X
[ 5.588770] iwlagn 0000:02:00.0: firmware: requesting iwlwifi-6000-4.ucode
[ 5.636948] iwlagn 0000:02:00.0: loaded firmware version 9.176.4.1
[ 5.641762] 0000:00:19.0: eth0: (PCI Express:2.5GB/s:Width x1) 00:26:2d:f7:02:12
[ 5.641764] 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
[ 5.641832] 0000:00:19.0: eth0: MAC: 9, PHY: 10, PBA No: a002ff-0ff
[ 5.641973] serial 0000:00:16.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 5.642208] 0000:00:16.3: ttyS0 at I/O 0x1808 (irq = 17) is a 16550A
[ 5.642697] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[ 5.642867] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
[ 5.642875] ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[ 5.642916] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[ 5.642919] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[ 5.642925] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 5.642958] ehci_hcd 0000:00:1a.0: debug port 2
[ 5.646857] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[ 5.646883] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xf2728000
[ 5.657233] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 5.657386] hub 1-0:1.0: USB hub found
[ 5.657391] hub 1-0:1.0: 3 ports detected
[ 5.657474] HDA Intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 5.657529] HDA Intel 0000:00:1b.0: irq 30 for MSI/MSI-X
[ 5.657558] HDA Intel 0000:00:1b.0: setting latency timer to 64
[ 5.714880] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.714889] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.714898] ILI
[ 5.714901] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.714908] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.714925] end_request: I/O error, dev sr0, sector 0
[ 5.717895] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.717903] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.717910] ILI
[ 5.717912] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.717918] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.717933] end_request: I/O error, dev sr0, sector 0
[ 5.721006] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.721012] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.721017] ILI
[ 5.721020] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.721024] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.721036] end_request: I/O error, dev sr0, sector 0
[ 5.806525] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 5.807094] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 5.807426] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 5.807447] ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
[ 5.807505] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[ 5.807511] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[ 5.807523] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 5.807568] ehci_hcd 0000:00:1d.0: debug port 2
[ 5.811468] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[ 5.811498] ehci_hcd 0000:00:1d.0: irq 19, io mem 0xf2728400
[ 5.821202] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 5.821350] hub 2-0:1.0: USB hub found
[ 5.821359] hub 2-0:1.0: 3 ports detected
[ 5.867782] phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 5.948019] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.948025] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.948030] ILI
[ 5.948032] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.948037] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.948046] end_request: I/O error, dev sr0, sector 0
[ 5.951042] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.951048] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.951052] ILI
[ 5.951054] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.951058] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.951067] end_request: I/O error, dev sr0, sector 0
[ 5.954080] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.954086] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.954090] ILI
[ 5.954092] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.954096] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.954105] end_request: I/O error, dev sr0, sector 0
[ 5.957230] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.957235] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.957240] ILI
[ 5.957241] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.957245] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.957254] end_request: I/O error, dev sr0, sector 0
[ 5.958812] usb 1-1: new high speed USB device using ehci_hcd and address 2
[ 5.960188] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.960192] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.960197] ILI
[ 5.960198] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.960202] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.960211] end_request: I/O error, dev sr0, sector 0
[ 5.963221] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.963226] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.963231] ILI
[ 5.963233] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.963237] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.963248] end_request: I/O error, dev sr0, sector 0
[ 5.966313] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.966320] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.966325] ILI
[ 5.966328] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.966332] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.966343] end_request: I/O error, dev sr0, sector 0
[ 5.969274] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.969280] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.969285] ILI
[ 5.969287] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.969291] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.969302] end_request: I/O error, dev sr0, sector 0
[ 5.972328] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.972333] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.972338] ILI
[ 5.972340] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.972344] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.972355] end_request: I/O error, dev sr0, sector 0
[ 5.975401] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.975406] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.975411] ILI
[ 5.975412] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.975417] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.975428] end_request: I/O error, dev sr0, sector 0
[ 5.978430] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.978437] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.978442] ILI
[ 5.978444] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.978449] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 5.978460] end_request: I/O error, dev sr0, sector 56
[ 5.981445] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.981452] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.981459] ILI
[ 5.981461] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.981467] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.981481] end_request: I/O error, dev sr0, sector 0
[ 5.984501] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.984506] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.984511] ILI
[ 5.984513] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.984517] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.984526] end_request: I/O error, dev sr0, sector 0
[ 5.987564] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.987572] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.987579] ILI
[ 5.987582] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.987588] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.987603] end_request: I/O error, dev sr0, sector 0
[ 5.990544] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.990550] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.990555] ILI
[ 5.990557] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.990562] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.990573] end_request: I/O error, dev sr0, sector 0
[ 5.993609] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.993616] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.993621] ILI
[ 5.993624] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.993628] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.993639] end_request: I/O error, dev sr0, sector 0
[ 5.996645] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.996651] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.996657] ILI
[ 5.996659] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.996663] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.996675] end_request: I/O error, dev sr0, sector 0
[ 5.999641] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 5.999646] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 5.999651] ILI
[ 5.999653] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 5.999657] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 5.999668] end_request: I/O error, dev sr0, sector 0
[ 6.002660] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.002665] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.002670] ILI
[ 6.002672] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.002677] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.002688] end_request: I/O error, dev sr0, sector 0
[ 6.005691] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.005696] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.005700] ILI
[ 6.005702] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.005707] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.005717] end_request: I/O error, dev sr0, sector 0
[ 6.008704] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.008709] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.008714] ILI
[ 6.008716] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.008720] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.008731] end_request: I/O error, dev sr0, sector 0
[ 6.011729] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.011734] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.011739] ILI
[ 6.011741] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.011748] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.011761] end_request: I/O error, dev sr0, sector 0
[ 6.014776] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.014782] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.014788] ILI
[ 6.014790] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.014795] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.014806] end_request: I/O error, dev sr0, sector 0
[ 6.017798] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.017804] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.017809] ILI
[ 6.017811] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.017816] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.017827] end_request: I/O error, dev sr0, sector 0
[ 6.020872] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.020878] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.020884] ILI
[ 6.020886] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.020890] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.020902] end_request: I/O error, dev sr0, sector 0
[ 6.023860] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.023866] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.023871] ILI
[ 6.023873] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.023878] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.023889] end_request: I/O error, dev sr0, sector 0
[ 6.026937] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.026943] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.026947] ILI
[ 6.026949] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.026954] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.026965] end_request: I/O error, dev sr0, sector 0
[ 6.029908] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.029913] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.029946] ILI
[ 6.029949] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.029954] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.029970] end_request: I/O error, dev sr0, sector 8
[ 6.032921] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.032927] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.032932] ILI
[ 6.032934] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.032938] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.032949] end_request: I/O error, dev sr0, sector 8
[ 6.035984] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.035990] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.035994] ILI
[ 6.035996] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.036001] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.036011] end_request: I/O error, dev sr0, sector 8
[ 6.038995] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.039000] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.039005] ILI
[ 6.039007] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.039012] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.039022] end_request: I/O error, dev sr0, sector 8
[ 6.042003] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.042010] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.042015] ILI
[ 6.042018] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.042023] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.042035] end_request: I/O error, dev sr0, sector 24
[ 6.045010] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.045015] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.045020] ILI
[ 6.045022] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.045027] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.045038] end_request: I/O error, dev sr0, sector 24
[ 6.048074] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.048080] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.048084] ILI
[ 6.048086] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.048091] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.048101] end_request: I/O error, dev sr0, sector 24
[ 6.051083] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.051089] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.051095] ILI
[ 6.051097] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.051102] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.051116] end_request: I/O error, dev sr0, sector 24
[ 6.054086] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.054092] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.054096] ILI
[ 6.054098] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.054103] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.054113] end_request: I/O error, dev sr0, sector 56
[ 6.057154] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.057159] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.057164] ILI
[ 6.057166] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.057170] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.057181] end_request: I/O error, dev sr0, sector 56
[ 6.060227] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.060234] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.060239] ILI
[ 6.060241] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.060246] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.060257] end_request: I/O error, dev sr0, sector 56
[ 6.063252] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.063258] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.063264] ILI
[ 6.063266] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.063270] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.063282] end_request: I/O error, dev sr0, sector 56
[ 6.066348] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.066354] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.066358] ILI
[ 6.066360] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.066364] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.066373] end_request: I/O error, dev sr0, sector 120
[ 6.069316] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.069324] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.069332] ILI
[ 6.069334] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.069341] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.069357] end_request: I/O error, dev sr0, sector 120
[ 6.072319] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.072325] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.072330] ILI
[ 6.072333] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.072337] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.072349] end_request: I/O error, dev sr0, sector 120
[ 6.073523] hub 1-1:1.0: USB hub found
[ 6.073694] hub 1-1:1.0: 6 ports detected
[ 6.075332] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.075340] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.075347] ILI
[ 6.075350] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.075356] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.075371] end_request: I/O error, dev sr0, sector 120
[ 6.078347] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.078356] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.078362] ILI
[ 6.078365] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.078371] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.078386] end_request: I/O error, dev sr0, sector 0
[ 6.081357] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.081365] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.081370] ILI
[ 6.081373] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.081377] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.081389] end_request: I/O error, dev sr0, sector 0
[ 6.084365] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.084370] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.084375] ILI
[ 6.084377] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.084381] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.084392] end_request: I/O error, dev sr0, sector 8
[ 6.087458] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.087464] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.087470] ILI
[ 6.087472] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.087477] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.087488] end_request: I/O error, dev sr0, sector 8
[ 6.090449] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.090454] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.090459] ILI
[ 6.090461] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.090465] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.090476] end_request: I/O error, dev sr0, sector 24
[ 6.093455] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.093460] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.093465] ILI
[ 6.093467] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.093471] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 06 00 00 02 00
[ 6.093490] end_request: I/O error, dev sr0, sector 24
[ 6.096566] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.096571] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.096576] ILI
[ 6.096578] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.096582] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.096593] end_request: I/O error, dev sr0, sector 56
[ 6.099631] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.099637] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.099641] ILI
[ 6.099643] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.099647] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 0e 00 00 02 00
[ 6.099656] end_request: I/O error, dev sr0, sector 56
[ 6.102638] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.102644] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.102648] ILI
[ 6.102650] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.102654] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.102663] end_request: I/O error, dev sr0, sector 120
[ 6.105659] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.105665] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.105669] ILI
[ 6.105671] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.105675] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 1e 00 00 02 00
[ 6.105684] end_request: I/O error, dev sr0, sector 120
[ 6.108667] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.108673] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.108677] ILI
[ 6.108679] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.108683] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.108692] end_request: I/O error, dev sr0, sector 0
[ 6.111713] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.111718] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.111723] ILI
[ 6.111725] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.111729] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.111738] end_request: I/O error, dev sr0, sector 0
[ 6.114737] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.114742] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.114746] ILI
[ 6.114748] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.114752] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.114761] end_request: I/O error, dev sr0, sector 0
[ 6.117757] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.117763] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.117767] ILI
[ 6.117769] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.117773] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.117782] end_request: I/O error, dev sr0, sector 0
[ 6.120811] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.120819] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.120825] ILI
[ 6.120828] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.120832] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.120843] end_request: I/O error, dev sr0, sector 0
[ 6.123859] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.123866] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.123871] ILI
[ 6.123873] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.123878] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.123889] end_request: I/O error, dev sr0, sector 0
[ 6.126971] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.126976] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.126980] ILI
[ 6.126982] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.126986] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 6.126995] end_request: I/O error, dev sr0, sector 16
[ 6.135457] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.135462] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.135467] ILI
[ 6.135469] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.135472] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.135482] end_request: I/O error, dev sr0, sector 128
[ 6.138454] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.138459] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.138464] ILI
[ 6.138466] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.138469] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.138479] end_request: I/O error, dev sr0, sector 128
[ 6.141494] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.141500] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.141504] ILI
[ 6.141506] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.141510] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.141519] end_request: I/O error, dev sr0, sector 128
[ 6.144578] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.144583] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.144587] ILI
[ 6.144589] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.144593] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 6.144602] end_request: I/O error, dev sr0, sector 16
[ 6.147610] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.147615] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.147620] ILI
[ 6.147621] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.147625] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.147645] end_request: I/O error, dev sr0, sector 128
[ 6.150641] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.150647] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.150651] ILI
[ 6.150653] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.150657] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.150666] end_request: I/O error, dev sr0, sector 64
[ 6.153721] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.153726] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.153731] ILI
[ 6.153733] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.153737] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.153746] end_request: I/O error, dev sr0, sector 64
[ 6.156686] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.156692] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.156696] ILI
[ 6.156698] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.156702] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.156711] end_request: I/O error, dev sr0, sector 64
[ 6.159786] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.159791] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.159796] ILI
[ 6.159798] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.159801] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.159811] end_request: I/O error, dev sr0, sector 64
[ 6.162775] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.162780] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.162785] ILI
[ 6.162787] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.162791] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.162802] end_request: I/O error, dev sr0, sector 64
[ 6.165809] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.165816] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.165821] ILI
[ 6.165823] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.165828] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.165839] end_request: I/O error, dev sr0, sector 64
[ 6.168777] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.168783] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.168788] ILI
[ 6.168790] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.168794] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.168805] end_request: I/O error, dev sr0, sector 64
[ 6.171822] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.171828] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.171833] ILI
[ 6.171835] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.171839] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.171850] end_request: I/O error, dev sr0, sector 64
[ 6.174878] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.174886] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.174892] ILI
[ 6.174895] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.174899] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.174911] end_request: I/O error, dev sr0, sector 64
[ 6.176451] usb 2-1: new high speed USB device using ehci_hcd and address 2
[ 6.177976] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.177982] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.177988] ILI
[ 6.177990] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.177995] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 10 00 00 02 00
[ 6.178006] end_request: I/O error, dev sr0, sector 64
[ 6.180988] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.180993] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.180998] ILI
[ 6.180999] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.181003] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 40 00 00 02 00
[ 6.181013] end_request: I/O error, dev sr0, sector 256
[ 6.184069] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.184074] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.184079] ILI
[ 6.184081] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.184085] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 40 00 00 02 00
[ 6.184094] end_request: I/O error, dev sr0, sector 256
[ 6.187094] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.187099] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.187103] ILI
[ 6.187105] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.187109] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 42 00 00 02 00
[ 6.187118] end_request: I/O error, dev sr0, sector 264
[ 6.190130] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.190136] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.190140] ILI
[ 6.190142] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.190146] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 42 00 00 02 00
[ 6.190155] end_request: I/O error, dev sr0, sector 264
[ 6.193221] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.193227] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.193231] ILI
[ 6.193233] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.193237] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 44 00 00 02 00
[ 6.193246] end_request: I/O error, dev sr0, sector 272
[ 6.196243] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.196250] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.196255] ILI
[ 6.196257] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.196262] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 44 00 00 02 00
[ 6.196273] end_request: I/O error, dev sr0, sector 272
[ 6.199222] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.199224] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.199227] ILI
[ 6.199227] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.199229] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c0 00 00 02 00
[ 6.199234] end_request: I/O error, dev sr0, sector 768
[ 6.202222] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.202227] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.202230] ILI
[ 6.202232] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.202234] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c0 00 00 02 00
[ 6.202241] end_request: I/O error, dev sr0, sector 768
[ 6.205402] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.205405] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.205407] ILI
[ 6.205408] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.205411] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c2 00 00 02 00
[ 6.205417] end_request: I/O error, dev sr0, sector 776
[ 6.208413] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.208420] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.208427] ILI
[ 6.208429] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.208434] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c2 00 00 02 00
[ 6.208445] end_request: I/O error, dev sr0, sector 776
[ 6.211423] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.211428] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.211433] ILI
[ 6.211435] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.211439] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c4 00 00 02 00
[ 6.211450] end_request: I/O error, dev sr0, sector 784
[ 6.214491] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.214496] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.214501] ILI
[ 6.214503] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.214507] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 c4 00 00 02 00
[ 6.214518] end_request: I/O error, dev sr0, sector 784
[ 6.217560] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.217570] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.217574] ILI
[ 6.217576] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.217580] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.217589] end_request: I/O error, dev sr0, sector 0
[ 6.220579] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.220586] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.220591] ILI
[ 6.220593] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.220598] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.220609] end_request: I/O error, dev sr0, sector 0
[ 6.229101] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.229106] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.229111] ILI
[ 6.229112] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.229116] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.229125] end_request: I/O error, dev sr0, sector 0
[ 6.232109] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.232115] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.232119] ILI
[ 6.232121] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.232125] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.232134] end_request: I/O error, dev sr0, sector 0
[ 6.235168] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.235174] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.235178] ILI
[ 6.235180] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.235184] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.235193] end_request: I/O error, dev sr0, sector 0
[ 6.238248] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.238254] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.238258] ILI
[ 6.238260] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.238264] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 6.238273] end_request: I/O error, dev sr0, sector 16
[ 6.241287] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.241292] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.241297] ILI
[ 6.241299] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.241302] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.241312] end_request: I/O error, dev sr0, sector 0
[ 6.244324] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.244330] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.244334] ILI
[ 6.244336] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.244340] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.244349] end_request: I/O error, dev sr0, sector 0
[ 6.247425] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.247430] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.247435] ILI
[ 6.247437] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.247440] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.247450] end_request: I/O error, dev sr0, sector 0
[ 6.250475] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.250481] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.250485] ILI
[ 6.250487] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.250491] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.250500] end_request: I/O error, dev sr0, sector 0
[ 6.253494] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.253501] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.253506] ILI
[ 6.253508] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.253513] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.253524] end_request: I/O error, dev sr0, sector 0
[ 6.256564] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.256569] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.256574] ILI
[ 6.256576] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.256579] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.256589] end_request: I/O error, dev sr0, sector 0
[ 6.259603] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.259609] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.259613] ILI
[ 6.259615] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.259619] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.259628] end_request: I/O error, dev sr0, sector 0
[ 6.262604] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.262610] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.262614] ILI
[ 6.262616] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.262620] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.262629] end_request: I/O error, dev sr0, sector 0
[ 6.265646] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.265651] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.265656] ILI
[ 6.265658] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.265661] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.265671] end_request: I/O error, dev sr0, sector 0
[ 6.268667] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.268673] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.268678] ILI
[ 6.268680] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.268684] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.268695] end_request: I/O error, dev sr0, sector 0
[ 6.271677] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.271682] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.271687] ILI
[ 6.271689] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.271693] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.271704] end_request: I/O error, dev sr0, sector 0
[ 6.274691] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.274698] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.274703] ILI
[ 6.274705] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.274710] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.274721] end_request: I/O error, dev sr0, sector 0
[ 6.277762] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.277769] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.277774] ILI
[ 6.277776] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.277781] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.277792] end_request: I/O error, dev sr0, sector 128
[ 6.280758] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.280763] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.280768] ILI
[ 6.280770] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.280774] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.280785] end_request: I/O error, dev sr0, sector 128
[ 6.283767] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.283774] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.283780] ILI
[ 6.283783] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.283788] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 6.283803] end_request: I/O error, dev sr0, sector 16
[ 6.286848] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.286857] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.286864] ILI
[ 6.286867] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.286873] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.286888] end_request: I/O error, dev sr0, sector 0
[ 6.289858] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.289864] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.289870] ILI
[ 6.289872] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.289877] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.289888] end_request: I/O error, dev sr0, sector 0
[ 6.291882] hub 2-1:1.0: USB hub found
[ 6.291944] hub 2-1:1.0: 8 ports detected
[ 6.292859] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.292864] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.292869] ILI
[ 6.292871] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.292876] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.292887] end_request: I/O error, dev sr0, sector 8
[ 6.295871] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.295879] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.295885] ILI
[ 6.295888] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.295894] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 04 00 00 02 00
[ 6.295908] end_request: I/O error, dev sr0, sector 16
[ 6.299044] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.299049] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.299054] ILI
[ 6.299056] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.299060] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.299071] end_request: I/O error, dev sr0, sector 0
[ 6.302129] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.302135] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.302141] ILI
[ 6.302143] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.302147] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.302159] end_request: I/O error, dev sr0, sector 0
[ 6.305130] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.305135] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.305140] ILI
[ 6.305142] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.305147] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.305157] end_request: I/O error, dev sr0, sector 0
[ 6.308163] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.308169] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.308175] ILI
[ 6.308177] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.308182] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.308193] end_request: I/O error, dev sr0, sector 0
[ 6.311219] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.311225] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.311231] ILI
[ 6.311234] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.311240] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.311255] end_request: I/O error, dev sr0, sector 0
[ 6.314245] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.314253] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.314259] ILI
[ 6.314262] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.314267] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.314281] end_request: I/O error, dev sr0, sector 0
[ 6.317284] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.317291] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.317297] ILI
[ 6.317299] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.317304] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 02 00 00 02 00
[ 6.317315] end_request: I/O error, dev sr0, sector 8
[ 6.320295] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.320304] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.320311] ILI
[ 6.320314] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.320320] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 20 00 00 02 00
[ 6.320336] end_request: I/O error, dev sr0, sector 128
[ 6.323309] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.323317] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.323325] ILI
[ 6.323328] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.323335] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.323352] end_request: I/O error, dev sr0, sector 0
[ 6.326365] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.326371] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.326377] ILI
[ 6.326379] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.326384] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.326395] end_request: I/O error, dev sr0, sector 0
[ 6.329393] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.329399] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.329405] ILI
[ 6.329407] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.329412] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 04 00 00 00 02 00
[ 6.329423] end_request: I/O error, dev sr0, sector 4096
[ 6.355280] usb 1-1.3: new full speed USB device using ehci_hcd and address 3
[ 6.372217] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.372222] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.372227] ILI
[ 6.372229] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.372233] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.372242] end_request: I/O error, dev sr0, sector 0
[ 6.375264] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.375270] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.375274] ILI
[ 6.375276] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.375280] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.375289] end_request: I/O error, dev sr0, sector 0
[ 6.378250] sr 1:0:0:0: [sr0] Result: hostbyte=0x00 driverbyte=0x08
[ 6.378256] sr 1:0:0:0: [sr0] Sense Key : 0x5 [current]
[ 6.378260] ILI
[ 6.378262] sr 1:0:0:0: [sr0] ASC=0x64 ASCQ=0x0
[ 6.378266] sr 1:0:0:0: [sr0] CDB: cdb[0]=0x28: 28 00 00 00 00 00 00 00 02 00
[ 6.378275] end_request: I/O error, dev sr0, sector 0
[ 6.507016] usb 1-1.4: new full speed USB device using ehci_hcd and address 4
[ 6.546836] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[ 6.658726] usb 1-1.5: new high speed USB device using ehci_hcd and address 5
[ 6.659676] Bluetooth: Core ver 2.15
[ 6.659739] NET: Registered protocol family 31
[ 6.659740] Bluetooth: HCI device and connection manager initialized
[ 6.659743] Bluetooth: HCI socket layer initialized
[ 6.685525] Bluetooth: Generic Bluetooth USB driver ver 0.6
[ 6.686210] usbcore: registered new interface driver btusb
[ 6.744273] hub 1-1.5:1.0: USB hub found
[ 6.744449] hub 1-1.5:1.0: 4 ports detected
[ 6.818470] usb 1-1.6: new high speed USB device using ehci_hcd and address 6
[ 6.954659] Linux video capture interface: v2.00
[ 6.966768] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:4816)
[ 6.968380] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input7
[ 6.968430] usbcore: registered new interface driver uvcvideo
[ 6.968432] USB Video Class driver (v0.1.0)
[ 6.984406] usb 2-1.1: new high speed USB device using ehci_hcd and address 3
[ 7.118982] usbcore: registered new interface driver libusual
[ 7.128087] Initializing USB Mass Storage driver...
[ 7.128267] scsi6 : usb-storage 2-1.1:1.0
[ 7.128381] usbcore: registered new interface driver usb-storage
[ 7.128384] USB Mass Storage support registered.
[ 8.128740] scsi 6:0:0:0: Direct-Access Generic- Multi-Card 1.00 PQ: 0 ANSI: 0 CCS
[ 8.128984] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 8.170205] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 8.432732] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input8
[ 8.868718] sd 6:0:0:0: [sdb] 1984000 512-byte logical blocks: (1.01 GB/968 MiB)
[ 8.869758] sd 6:0:0:0: [sdb] Write Protect is off
[ 8.869764] sd 6:0:0:0: [sdb] Mode Sense: 03 00 00 00
[ 8.869768] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[ 8.872542] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[ 8.872550] sdb: sdb1
[ 8.901461] sd 6:0:0:0: [sdb] Assuming drive cache: write through
[ 8.901466] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[ 11.964704] usb 1-1.5.4: new high speed USB device using ehci_hcd and address 7
[ 12.052129] scsi7 : usb-storage 1-1.5.4:1.0
[ 13.050402] scsi 7:0:0:0: Direct-Access WD 5000BMV External 1.75 PQ: 0 ANSI: 4
[ 13.050553] sd 7:0:0:0: Attached scsi generic sg3 type 0
[ 13.051302] sd 7:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 13.051793] sd 7:0:0:0: [sdc] Write Protect is off
[ 13.051796] sd 7:0:0:0: [sdc] Mode Sense: 23 00 00 00
[ 13.051798] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[ 13.052935] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[ 13.052938] sdc: unknown partition table
[ 13.082743] sd 7:0:0:0: [sdc] Assuming drive cache: write through
[ 13.082746] sd 7:0:0:0: [sdc] Attached SCSI disk
[ 13.373419] padlock: VIA PadLock not detected.
[ 13.716812] alg: No test for __cbc-aes-aesni (cryptd(__driver-cbc-aes-aesni))
[ 13.824048] padlock: VIA PadLock Hash Engine not detected.
[ 14.919235] Adding 4000148k swap on /dev/mapper/swap. Priority:-1 extents:1 across:4000148k
[ 17.639036] e1000e 0000:00:19.0: irq 28 for MSI/MSI-X
[ 17.689801] e1000e 0000:00:19.0: irq 28 for MSI/MSI-X
[ 51.289948] NET: Registered protocol family 10
[ 51.290250] lo: Disabled Privacy Extensions
[ 51.290534] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 59.866078] [drm] Initialized drm 1.1.0 20060810
[ 59.889554] i915 0000:00:02.0: power state changed by ACPI to D0
[ 59.889669] i915 0000:00:02.0: power state changed by ACPI to D0
[ 59.889676] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 59.889679] i915 0000:00:02.0: setting latency timer to 64
[ 59.948400] i915 0000:00:02.0: irq 31 for MSI/MSI-X
[ 59.948411] [drm] set up 31M of stolen space
[ 60.711514] fb0: inteldrmfb frame buffer device
[ 60.711520] registered panic notifier
[ 60.717669] acpi device:01: registered as cooling_device4
[ 60.717879] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
[ 60.717917] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 60.717965] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 60.800955] Console: switching to colour frame buffer device 160x50
[ 111.723019] iwlagn 0000:02:00.0: Error sending REPLY_CT_KILL_CONFIG_CMD: time out after 500ms.
[ 111.723025] iwlagn 0000:02:00.0: REPLY_CT_KILL_CONFIG_CMD failed
[ 112.222222] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: time out after 500ms.
[ 112.222226] iwlagn 0000:02:00.0: set power fail, ret = -110
[ 112.222233] iwlagn 0000:02:00.0: Device reached critical temperature - ucode going to sleep!
[ 112.222245] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 112.222251] iwlagn 0000:02:00.0: Error sending REPLY_REMOVE_ALL_STA: enqueue_hcmd failed: -5
[ 112.222254] iwlagn 0000:02:00.0: Couldn't clear the station table
[ 112.222260] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 112.222263] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 112.222266] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 112.226352] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 112.226357] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 112.226361] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 112.226364] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 112.226367] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 112.226370] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 112.226906] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 113.225422] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225427] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 113.225431] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 113.225435] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225438] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 113.225441] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 113.225464] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225470] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 113.225480] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225485] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 113.225546] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225551] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 113.225564] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225568] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 113.225573] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 113.225577] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225581] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 113.225586] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 113.225590] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225594] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 113.225598] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 113.225606] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 113.225610] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 118.232902] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.232909] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 118.232912] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 118.232917] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.232920] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 118.232924] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 118.232986] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.232991] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 118.233002] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233005] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 118.233017] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233020] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 118.233031] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233035] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 118.233039] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 118.233045] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233049] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 118.233053] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 118.233057] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233061] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 118.233065] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 118.233073] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 118.233078] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 123.229659] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229666] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 123.229669] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 123.229674] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229678] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 123.229681] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 123.229748] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229753] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 123.229764] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229768] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 123.229786] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229789] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 123.229800] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229804] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 123.229809] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 123.229815] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229819] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 123.229824] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 123.229828] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229833] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 123.229837] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 123.229844] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 123.229848] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 128.226440] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226447] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 128.226450] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 128.226455] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226458] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 128.226461] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 128.226540] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226545] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 128.226555] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226559] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 128.226571] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226574] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 128.226584] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226588] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 128.226592] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 128.226597] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226601] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 128.226606] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 128.226610] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226614] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 128.226618] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 128.226625] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 128.226629] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 133.223350] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223356] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 133.223360] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 133.223364] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223368] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 133.223371] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 133.223431] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223436] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 133.223446] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223450] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 133.223462] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223465] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 133.223476] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223479] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 133.223484] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 133.223489] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223493] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 133.223497] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 133.223501] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223505] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 133.223509] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 133.223516] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 133.223520] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 138.219141] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219146] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 138.219149] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 138.219153] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219155] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 138.219158] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 138.219205] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219208] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 138.219215] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219217] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 138.219225] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219227] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 138.219234] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219236] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 138.219238] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 138.219242] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219244] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 138.219246] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 138.219248] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219250] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 138.219252] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 138.219257] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 138.219259] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 143.215893] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.215899] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 143.215903] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 143.215908] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.215911] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 143.215914] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 143.215975] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.215980] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 143.215990] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.215994] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 143.216006] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.216009] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 143.216019] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.216024] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 143.216028] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 143.216033] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.216037] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 143.216041] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 143.216045] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.216050] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 143.216054] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 143.216061] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 143.216064] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 148.212662] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212667] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 148.212671] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 148.212676] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212679] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 148.212682] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 148.212744] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212749] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 148.212760] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212763] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 148.212776] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212779] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 148.212790] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212794] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 148.212798] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 148.212803] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212807] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 148.212812] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 148.212816] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212819] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 148.212824] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 148.212832] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 148.212835] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 153.208561] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208566] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 153.208568] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 153.208571] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208573] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 153.208575] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 153.208588] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208591] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 153.208597] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208599] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 153.208606] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208607] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 153.208614] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208616] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 153.208619] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 153.208621] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208623] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 153.208625] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 153.208627] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208630] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 153.208632] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 153.208636] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 153.208638] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 158.205275] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205281] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 158.205284] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 158.205289] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205292] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 158.205295] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 158.205370] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205375] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 158.205386] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205389] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 158.205401] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205404] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 158.205415] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205419] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 158.205423] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 158.205428] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205432] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 158.205436] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 158.205440] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205444] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 158.205449] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 158.205456] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 158.205461] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 163.201975] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.201981] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 163.201984] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 163.201989] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.201992] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 163.201995] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 163.202073] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202079] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 163.202091] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202095] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 163.202108] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202112] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 163.202124] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202129] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 163.202134] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 163.202140] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202145] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 163.202150] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 163.202155] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202160] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 163.202165] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 163.202174] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 163.202180] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 168.198803] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.198808] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 168.198812] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 168.198817] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.198820] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 168.198823] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 168.198885] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.198890] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 168.198900] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.198903] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 168.199006] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.199011] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 168.199024] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.199028] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 168.199032] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 168.199037] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.199041] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 168.199045] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 168.199050] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.199054] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 168.199058] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 168.199066] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 168.199070] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 171.094648] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 171.094653] iwlagn 0000:02:00.0: Error sending REPLY_STATISTICS_CMD: enqueue_hcmd failed: -5
[ 173.195706] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195712] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 173.195716] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 173.195721] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195724] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 173.195727] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 173.195788] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195793] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 173.195804] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195807] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[ 173.195833] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195837] iwlagn 0000:02:00.0: Error sending REPLY_SCAN_CMD: enqueue_hcmd failed: -5
[ 173.195847] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195851] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 173.195855] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 173.195860] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195864] iwlagn 0000:02:00.0: Error sending POWER_TABLE_CMD: enqueue_hcmd failed: -5
[ 173.195868] iwlagn 0000:02:00.0: set power fail, ret = -5
[ 173.195872] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195877] iwlagn 0000:02:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
[ 173.195881] iwlagn 0000:02:00.0: Error setting new RXON (-5)
[ 173.195888] iwlagn 0000:02:00.0: Not sending command - CT KILL
[ 173.195892] iwlagn 0000:02:00.0: Error sending REPLY_TX_POWER_DBM_CMD: enqueue_hcmd failed: -5
[-- Attachment #3: 2.6.34-rc5-NS-00211-gb91ce4d.dmesg.past-reload --]
[-- Type: text/plain, Size: 1412 bytes --]
[ 177.664614] iwlagn 0000:02:00.0: PCI INT A disabled
[ 182.600323] iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
[ 182.600325] iwlagn: Copyright(c) 2003-2010 Intel Corporation
[ 182.600429] iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 182.600488] iwlagn 0000:02:00.0: setting latency timer to 64
[ 182.600582] iwlagn 0000:02:00.0: Detected Intel Wireless WiFi Link 6000 Series 3x3 AGN REV=0x74
[ 182.617432] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
[ 182.617550] iwlagn 0000:02:00.0: irq 29 for MSI/MSI-X
[ 182.617894] iwlagn 0000:02:00.0: firmware: requesting iwlwifi-6000-4.ucode
[ 182.667853] iwlagn 0000:02:00.0: loaded firmware version 9.176.4.1
[ 182.668574] phy1: Selected rate control algorithm 'iwl-agn-rs'
[ 182.994882] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 187.268773] wlan0: deauthenticating from 00:05:4e:4d:82:6d by local choice (reason=3)
[ 187.306691] wlan0: authenticate with 00:05:4e:4d:82:6d (try 1)
[ 187.505637] wlan0: authenticate with 00:05:4e:4d:82:6d (try 2)
[ 187.508192] wlan0: authenticated
[ 187.509974] wlan0: associate with 00:05:4e:4d:82:6d (try 1)
[ 187.516986] wlan0: RX AssocResp from 00:05:4e:4d:82:6d (capab=0x1 status=0 aid=1)
[ 187.516991] wlan0: associated
[ 187.521217] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 197.653250] wlan0: no IPv6 routers present
^ permalink raw reply
* Re: [PATCH] rt2x00: rt2800lib: Fix rx path on SoC devices
From: Gertjan van Wingerde @ 2010-04-27 19:41 UTC (permalink / raw)
To: John W. Linville; +Cc: Helmut Schaa, Ivo van Doorn, linux-wireless
In-Reply-To: <20100427181551.GA32012@tuxdriver.com>
On 04/27/10 20:15, John W. Linville wrote:
> On Tue, Apr 27, 2010 at 08:03:55PM +0200, Gertjan van Wingerde wrote:
>
>> P.S. It seems that John already applied this patch without even Ivo or me Acking it, so I guess an
>> incremental patch would be best now.
>
> Yes, sorry if that offends -- "fix rx path" makes me take things seriously. :-)
>
Don't worry about it. No offense was taken. It was more a surprise to see it been applied before
I even had to chance to review it, but the patch in itself is correct, it just needs a bit polishing.
---
Gertjan.
^ permalink raw reply
* libertas sdio broken on XO-1.5s
From: Steve deRosier @ 2010-04-27 19:35 UTC (permalink / raw)
To: linux-wireless, Dan Williams
Dan,
A change made by you on April 15th breaks firmware downloading to an
sdio connected 8686 on the OLPC's XO-1.5s. I reverted it and was able
to get firmware to load just fine, with it in, the firmware fails to
load.
commit 96021f096e5178582af296a2fbb6df7dbd6b695c
Author: Dan Williams <dcbw@redhat.com>
Date: Thu Apr 15 13:27:44 2010 -0700
libertas: consolidate SDIO firmware wait code
Consolidate a bunch of C&P code that waits for the firmware to be ready.
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
dmesg:
[ 15.391242] libertas_sdio: Libertas SDIO driver
[ 15.391255] libertas_sdio: Copyright Pierre Ossman
[ 15.539475] libertas_sdio mmc0:0001:1: firmware: requesting sd8686_helper.bin
[ 17.540214] libertas: failed to load helper firmware
[ 17.541054] libertas_sdio: probe of mmc0:0001:1 failed with error -110
dmesg with it reverted:
[ 15.141728] libertas_sdio: Libertas SDIO driver
[ 15.141741] libertas_sdio: Copyright Pierre Ossman
[ 15.275322] libertas_sdio mmc0:0001:1: firmware: requesting sd8686_helper.bin
[ 16.430223] libertas_sdio mmc0:0001:1: firmware: requesting sd8686.bin
[ 17.172443] libertas: 00:50:43:28:26:40, fw 9.70.7p0, cap 0x00000303
[ 17.179552] libertas: wlan0: Marvell WLAN 802.11 adapter
I don't know if there's something unique with this device where
libertas_sdio works everywhere else and not with the XO-1.5, but I
suspect we'll encounter this issue with other libertas devices.
I apologize for not sending a patch, but I don't have time right now
to get to it. Perhaps you can get to it quicker, if so, I'll be happy
to test anything you come up with.
- Steve
^ permalink raw reply
* Re: [PATCH] ath9k: remove usage of deprecated noise value
From: Benoit PAPILLAULT @ 2010-04-27 19:23 UTC (permalink / raw)
To: Joerg Pommnitz; +Cc: linux-wireless
In-Reply-To: <loom.20100427T125258-288@post.gmane.org>
Joerg Pommnitz a écrit :
> Benoit PAPILLAULT <benoit.papillault@...> writes:
>
>> Before removing noise reporting and all related code, wouln't it be
>> better to have a replacement API?
>>
>
> I thought this is what NL80211_CMD_GET_SURVEY is supposed to do...
> See
> http://osdir.com/ml/linux-wireless/2009-11/msg00977.html
>
>
Thanks Joerg! I tried : iw dev wlan0 survey dump and nothing show up.
What drivers are supposed to have this feature implemented?
Anyway, I really like to have it implemented for ath9k before removing
the deprecated noise value. If it's not currently implemented, I'll try
my best to send a patch in the next couple of days. I'll try then to
implement it for ath5k (already done?), ar9170, zd1211rw (if possible),
rt2800usb/pci.
BTW, on rt2800usb/pci, it seems the noise is reported on a per packet
basis by HW. Kinda strange isn't it? :-]
Regards,
Benoit
^ 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