Linux wireless drivers development
 help / color / mirror / Atom feed
* Re: wl1251_sdio PSM
From: GNUtoo @ 2010-04-25 21:57 UTC (permalink / raw)
  To: linux-wireless
In-Reply-To: <1272230300.2349.23.camel@gnutoo-desktop>

On Sun, 2010-04-25 at 23:18 +0200, GNUtoo wrote:
> Hi,
> We are trying to make the htc dream(also known as G1) android phone
> usable with a standard GNU(non android) userland.
> 
> Inside the htcdream there is a wl1251_sdio chip.
> 
> We already use the wl1251_sdio driver with a special module for
> initialization.
> 
> The problem is that When the wifi is on,the battery last for about an
> hour.
> 
> So we definitely need power saving features like PSM(I hope I used the
> right acronym,I'm looking for the system which makes the access point
> buffer frames for the phone and then we request the frames,other power
> saving mode are also welcome but as I understood this one is the most
> important)
> 
> Grepping for psm in the driver show that there is some sort of support
> for PSM.
> 
> Unfortunately the following method of activation failed:
> 
> # ./iw dev wlan0 set power_save on
> command failed: Operation not supported (-95)
> 
> 
> # iwconfig wlan0 power period 2 
> Error for wireless request "Set Power Management" (8B2C) :
>     invalid argument "2".
> 
> and I didn't find a psm sys node.
> 
> I wonder where it has been disabled,and if I can re-enable it.
> 
> I was also told that most driver have psm disabled,I don't know the
> reason tough(maybe performance,as it has a serious impact on
> performance)
> 
> our (bad quality)kenrel tree can be found here(we're not yet kernel
> hackers):
iwconfig wlan0 power on now works
I wonder if it really does something tough,I will test

I changed added | IEEE80211_HW_SUPPORTS_PS in:
wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
                IEEE80211_HW_NOISE_DBM;

Denis.


^ permalink raw reply

* [PATCH] Added configurable debug messages to libertastf
From: Steve deRosier @ 2010-04-25 21:40 UTC (permalink / raw)
  To: linux-wireless; +Cc: javier, joe, Steve deRosier
In-Reply-To: <g2t446ae9281004251430t89236181p8f3d056181fb8b49@mail.gmail.com>

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.

Signed-off-by: Steve deRosier <steve@cozybit.com>
---
 drivers/net/wireless/Kconfig                |    6 +
 drivers/net/wireless/libertas_tf/cmd.c      |  205 ++++++++++++++++++----
 drivers/net/wireless/libertas_tf/deb_defs.h |  106 +++++++++++
 drivers/net/wireless/libertas_tf/if_usb.c   |  250 ++++++++++++++++++++++-----
 drivers/net/wireless/libertas_tf/main.c     |   90 +++++++++-
 5 files changed, 576 insertions(+), 81 deletions(-)
 create mode 100644 drivers/net/wireless/libertas_tf/deb_defs.h

diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig
index 77500cb..2fbe9b4 100644
--- a/drivers/net/wireless/Kconfig
+++ b/drivers/net/wireless/Kconfig
@@ -38,6 +38,12 @@ config LIBERTAS_THINFIRM
 	---help---
 	  A library for Marvell Libertas 8xxx devices using thinfirm.
 
+config LIBERTAS_THINFIRM_DEBUG
+	bool "Enable full debugging output in the Libertas thin firmware module."
+	depends on LIBERTAS_THINFIRM
+	---help---
+	  Debugging support.
+
 config LIBERTAS_THINFIRM_USB
 	tristate "Marvell Libertas 8388 USB 802.11b/g cards with thin firmware"
 	depends on LIBERTAS_THINFIRM && USB
diff --git a/drivers/net/wireless/libertas_tf/cmd.c b/drivers/net/wireless/libertas_tf/cmd.c
index b620daf..bed542a 100644
--- a/drivers/net/wireless/libertas_tf/cmd.c
+++ b/drivers/net/wireless/libertas_tf/cmd.c
@@ -7,9 +7,11 @@
  *  the Free Software Foundation; either version 2 of the License, or (at
  *  your option) any later version.
  */
+#include "deb_defs.h"
+#include "libertas_tf.h"
+
 #include <linux/slab.h>
 
-#include "libertas_tf.h"
 
 static const struct channel_range channel_ranges[] = {
 	{ LBTF_REGDOMAIN_US,		1, 12 },
@@ -82,6 +84,8 @@ int lbtf_update_hw_spec(struct lbtf_private *priv)
 	int ret = -1;
 	u32 i;
 
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	memset(&cmd, 0, sizeof(cmd));
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
@@ -104,6 +108,8 @@ int lbtf_update_hw_spec(struct lbtf_private *priv)
 		priv->fwrelease >>  8 & 0xff,
 		priv->fwrelease       & 0xff,
 		priv->fwcapinfo);
+	lbtf_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
+		    cmd.hwifversion, cmd.version);
 
 	/* Clamp region code to 8-bit since FW spec indicates that it should
 	 * only ever be 8-bit, even though the field size is 16-bit.  Some
@@ -118,8 +124,10 @@ int lbtf_update_hw_spec(struct lbtf_private *priv)
 	}
 
 	/* if it's unidentified region code, use the default (USA) */
-	if (i >= MRVDRV_MAX_REGION_CODE)
+	if (i >= MRVDRV_MAX_REGION_CODE) {
 		priv->regioncode = 0x10;
+		pr_info("unidentified region code; using the default (USA)\n");
+	}
 
 	if (priv->current_addr[0] == 0xff)
 		memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
@@ -128,6 +136,7 @@ int lbtf_update_hw_spec(struct lbtf_private *priv)
 
 	lbtf_geo_init(priv);
 out:
+	lbtf_deb_leave(LBTF_DEB_CMD);
 	return ret;
 }
 
@@ -141,13 +150,18 @@ out:
  */
 int lbtf_set_channel(struct lbtf_private *priv, u8 channel)
 {
+	int ret = 0;
 	struct cmd_ds_802_11_rf_channel cmd;
 
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
 	cmd.channel = cpu_to_le16(channel);
 
-	return lbtf_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
+	ret = lbtf_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
+	lbtf_deb_leave_args(LBTF_DEB_CMD, "ret %d", ret);
+	return ret;
 }
 
 int lbtf_beacon_set(struct lbtf_private *priv, struct sk_buff *beacon)
@@ -155,20 +169,28 @@ int lbtf_beacon_set(struct lbtf_private *priv, struct sk_buff *beacon)
 	struct cmd_ds_802_11_beacon_set cmd;
 	int size;
 
-	if (beacon->len > MRVL_MAX_BCN_SIZE)
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
+	if (beacon->len > MRVL_MAX_BCN_SIZE) {
+		lbtf_deb_leave_args(LBTF_DEB_CMD, "ret %d", -1);
 		return -1;
+	}
 	size =  sizeof(cmd) - sizeof(cmd.beacon) + beacon->len;
 	cmd.hdr.size = cpu_to_le16(size);
 	cmd.len = cpu_to_le16(beacon->len);
 	memcpy(cmd.beacon, (u8 *) beacon->data, beacon->len);
 
 	lbtf_cmd_async(priv, CMD_802_11_BEACON_SET, &cmd.hdr, size);
+
+	lbtf_deb_leave_args(LBTF_DEB_CMD, "ret %d", 0);
 	return 0;
 }
 
 int lbtf_beacon_ctrl(struct lbtf_private *priv, bool beacon_enable,
-		     int beacon_int) {
+		     int beacon_int)
+{
 	struct cmd_ds_802_11_beacon_control cmd;
+	lbtf_deb_enter(LBTF_DEB_CMD);
 
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(CMD_ACT_SET);
@@ -176,6 +198,8 @@ int lbtf_beacon_ctrl(struct lbtf_private *priv, bool beacon_enable,
 	cmd.beacon_period = cpu_to_le16(beacon_int);
 
 	lbtf_cmd_async(priv, CMD_802_11_BEACON_CTRL, &cmd.hdr, sizeof(cmd));
+
+	lbtf_deb_leave(LBTF_DEB_CMD);
 	return 0;
 }
 
@@ -183,17 +207,28 @@ static void lbtf_queue_cmd(struct lbtf_private *priv,
 			  struct cmd_ctrl_node *cmdnode)
 {
 	unsigned long flags;
+	lbtf_deb_enter(LBTF_DEB_HOST);
 
-	if (!cmdnode)
-		return;
+	if (!cmdnode) {
+		lbtf_deb_host("QUEUE_CMD: cmdnode is NULL\n");
+		goto qcmd_done;
+	}
 
-	if (!cmdnode->cmdbuf->size)
-		return;
+	if (!cmdnode->cmdbuf->size) {
+		lbtf_deb_host("DNLD_CMD: cmd size is zero\n");
+		goto qcmd_done;
+	}
 
 	cmdnode->result = 0;
 	spin_lock_irqsave(&priv->driver_lock, flags);
 	list_add_tail(&cmdnode->list, &priv->cmdpendingq);
 	spin_unlock_irqrestore(&priv->driver_lock, flags);
+
+	lbtf_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
+		     le16_to_cpu(cmdnode->cmdbuf->command));
+
+qcmd_done:
+	lbtf_deb_leave(LBTF_DEB_HOST);
 }
 
 static void lbtf_submit_command(struct lbtf_private *priv,
@@ -206,22 +241,33 @@ static void lbtf_submit_command(struct lbtf_private *priv,
 	int timeo = 5 * HZ;
 	int ret;
 
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	cmd = cmdnode->cmdbuf;
 
 	spin_lock_irqsave(&priv->driver_lock, flags);
 	priv->cur_cmd = cmdnode;
 	cmdsize = le16_to_cpu(cmd->size);
 	command = le16_to_cpu(cmd->command);
+
+	lbtf_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
+		     command, le16_to_cpu(cmd->seqnum), cmdsize);
+	lbtf_deb_hex(LBTF_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
+
 	ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
 	spin_unlock_irqrestore(&priv->driver_lock, flags);
 
-	if (ret)
+	if (ret) {
+		pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
 		/* Let the timer kick in and retry, and potentially reset
 		   the whole thing if the condition persists */
 		timeo = HZ;
+	}
 
 	/* Setup the timer after transmit command */
 	mod_timer(&priv->command_timer, jiffies + timeo);
+
+	lbtf_deb_leave(LBTF_DEB_HOST);
 }
 
 /**
@@ -231,8 +277,10 @@ static void lbtf_submit_command(struct lbtf_private *priv,
 static void __lbtf_cleanup_and_insert_cmd(struct lbtf_private *priv,
 					 struct cmd_ctrl_node *cmdnode)
 {
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	if (!cmdnode)
-		return;
+		goto cl_ins_out;
 
 	cmdnode->callback = NULL;
 	cmdnode->callback_arg = 0;
@@ -240,6 +288,9 @@ static void __lbtf_cleanup_and_insert_cmd(struct lbtf_private *priv,
 	memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
 
 	list_add_tail(&cmdnode->list, &priv->cmdfreeq);
+
+cl_ins_out:
+	lbtf_deb_leave(LBTF_DEB_HOST);
 }
 
 static void lbtf_cleanup_and_insert_cmd(struct lbtf_private *priv,
@@ -268,29 +319,41 @@ int lbtf_cmd_set_mac_multicast_addr(struct lbtf_private *priv)
 {
 	struct cmd_ds_mac_multicast_addr cmd;
 
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(CMD_ACT_SET);
 
 	cmd.nr_of_adrs = cpu_to_le16((u16) priv->nr_of_multicastmacaddr);
+
+	lbtf_deb_cmd("MULTICAST_ADR: setting %d addresses\n", cmd.nr_of_adrs);
+
 	memcpy(cmd.maclist, priv->multicastlist,
 	       priv->nr_of_multicastmacaddr * ETH_ALEN);
 
 	lbtf_cmd_async(priv, CMD_MAC_MULTICAST_ADR, &cmd.hdr, sizeof(cmd));
+
+	lbtf_deb_leave(LBTF_DEB_CMD);
 	return 0;
 }
 
 void lbtf_set_mode(struct lbtf_private *priv, enum lbtf_mode mode)
 {
 	struct cmd_ds_set_mode cmd;
+	lbtf_deb_enter(LBTF_DEB_WEXT);
 
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.mode = cpu_to_le16(mode);
+	lbtf_deb_wext("Switching to mode: 0x%x\n", mode);
 	lbtf_cmd_async(priv, CMD_802_11_SET_MODE, &cmd.hdr, sizeof(cmd));
+
+	lbtf_deb_leave(LBTF_DEB_WEXT);
 }
 
 void lbtf_set_bssid(struct lbtf_private *priv, bool activate, const u8 *bssid)
 {
 	struct cmd_ds_set_bssid cmd;
+	lbtf_deb_enter(LBTF_DEB_CMD);
 
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.activate = activate ? 1 : 0;
@@ -298,11 +361,13 @@ void lbtf_set_bssid(struct lbtf_private *priv, bool activate, const u8 *bssid)
 		memcpy(cmd.bssid, bssid, ETH_ALEN);
 
 	lbtf_cmd_async(priv, CMD_802_11_SET_BSSID, &cmd.hdr, sizeof(cmd));
+	lbtf_deb_leave(LBTF_DEB_CMD);
 }
 
 int lbtf_set_mac_address(struct lbtf_private *priv, uint8_t *mac_addr)
 {
 	struct cmd_ds_802_11_mac_address cmd;
+	lbtf_deb_enter(LBTF_DEB_CMD);
 
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(CMD_ACT_SET);
@@ -310,6 +375,7 @@ int lbtf_set_mac_address(struct lbtf_private *priv, uint8_t *mac_addr)
 	memcpy(cmd.macadd, mac_addr, ETH_ALEN);
 
 	lbtf_cmd_async(priv, CMD_802_11_MAC_ADDRESS, &cmd.hdr, sizeof(cmd));
+	lbtf_deb_leave(LBTF_DEB_CMD);
 	return 0;
 }
 
@@ -318,6 +384,8 @@ int lbtf_set_radio_control(struct lbtf_private *priv)
 	int ret = 0;
 	struct cmd_ds_802_11_radio_control cmd;
 
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(CMD_ACT_SET);
 
@@ -341,19 +409,28 @@ int lbtf_set_radio_control(struct lbtf_private *priv)
 	else
 		cmd.control &= cpu_to_le16(~TURN_ON_RF);
 
+	lbtf_deb_cmd("RADIO_SET: radio %d, preamble %d\n", priv->radioon,
+		    priv->preamble);
+
 	ret = lbtf_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
+
+	lbtf_deb_leave_args(LBTF_DEB_CMD, "ret %d", ret);
 	return ret;
 }
 
 void lbtf_set_mac_control(struct lbtf_private *priv)
 {
 	struct cmd_ds_mac_control cmd;
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	cmd.hdr.size = cpu_to_le16(sizeof(cmd));
 	cmd.action = cpu_to_le16(priv->mac_control);
 	cmd.reserved = 0;
 
 	lbtf_cmd_async(priv, CMD_MAC_CONTROL,
 		&cmd.hdr, sizeof(cmd));
+
+	lbtf_deb_leave(LBTF_DEB_CMD);
 }
 
 /**
@@ -365,29 +442,43 @@ void lbtf_set_mac_control(struct lbtf_private *priv)
  */
 int lbtf_allocate_cmd_buffer(struct lbtf_private *priv)
 {
+	int ret = 0;
 	u32 bufsize;
 	u32 i;
 	struct cmd_ctrl_node *cmdarray;
 
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	/* Allocate and initialize the command array */
 	bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
 	cmdarray = kzalloc(bufsize, GFP_KERNEL);
-	if (!cmdarray)
-		return -1;
+	if (!cmdarray) {
+		lbtf_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
+		ret = -1;
+		goto done;
+	}
 	priv->cmd_array = cmdarray;
 
 	/* Allocate and initialize each command buffer in the command array */
 	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
 		cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
-		if (!cmdarray[i].cmdbuf)
-			return -1;
+		if (!cmdarray[i].cmdbuf) {
+			lbtf_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
+			ret = -1;
+			goto done;
+		}
 	}
 
 	for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
 		init_waitqueue_head(&cmdarray[i].cmdwait_q);
 		lbtf_cleanup_and_insert_cmd(priv, &cmdarray[i]);
 	}
-	return 0;
+
+	ret = 0;
+
+done:
+	lbtf_deb_leave_args(LBTF_DEB_HOST, "ret %d", ret);
+	return ret;
 }
 
 /**
@@ -402,9 +493,13 @@ int lbtf_free_cmd_buffer(struct lbtf_private *priv)
 	struct cmd_ctrl_node *cmdarray;
 	unsigned int i;
 
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	/* need to check if cmd array is allocated or not */
-	if (priv->cmd_array == NULL)
-		return 0;
+	if (priv->cmd_array == NULL) {
+		lbtf_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
+		goto done;
+	}
 
 	cmdarray = priv->cmd_array;
 
@@ -418,6 +513,8 @@ int lbtf_free_cmd_buffer(struct lbtf_private *priv)
 	kfree(priv->cmd_array);
 	priv->cmd_array = NULL;
 
+done:
+	lbtf_deb_leave(LBTF_DEB_HOST);
 	return 0;
 }
 
@@ -433,6 +530,8 @@ static struct cmd_ctrl_node *lbtf_get_cmd_ctrl_node(struct lbtf_private *priv)
 	struct cmd_ctrl_node *tempnode;
 	unsigned long flags;
 
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	if (!priv)
 		return NULL;
 
@@ -442,11 +541,14 @@ static struct cmd_ctrl_node *lbtf_get_cmd_ctrl_node(struct lbtf_private *priv)
 		tempnode = list_first_entry(&priv->cmdfreeq,
 					    struct cmd_ctrl_node, list);
 		list_del(&tempnode->list);
-	} else
+	} else {
+		lbtf_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
 		tempnode = NULL;
+	}
 
 	spin_unlock_irqrestore(&priv->driver_lock, flags);
 
+	lbtf_deb_leave(LBTF_DEB_HOST);
 	return tempnode;
 }
 
@@ -462,16 +564,20 @@ int lbtf_execute_next_command(struct lbtf_private *priv)
 	struct cmd_ctrl_node *cmdnode = NULL;
 	struct cmd_header *cmd;
 	unsigned long flags;
+	int ret = 0;
 
-	/* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
+	/* Debug group is lbtf_deb_THREAD and not lbtf_deb_HOST, because the
 	 * only caller to us is lbtf_thread() and we get even when a
 	 * data packet is received */
+	lbtf_deb_enter(LBTF_DEB_THREAD);
 
 	spin_lock_irqsave(&priv->driver_lock, flags);
 
 	if (priv->cur_cmd) {
+		pr_alert("EXEC_NEXT_CMD: already processing command!\n");
 		spin_unlock_irqrestore(&priv->driver_lock, flags);
-		return -1;
+		ret = -1;
+		goto done;
 	}
 
 	if (!list_empty(&priv->cmdpendingq)) {
@@ -483,11 +589,17 @@ int lbtf_execute_next_command(struct lbtf_private *priv)
 		cmd = cmdnode->cmdbuf;
 
 		list_del(&cmdnode->list);
+		lbtf_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
+			    le16_to_cpu(cmd->command));
 		spin_unlock_irqrestore(&priv->driver_lock, flags);
 		lbtf_submit_command(priv, cmdnode);
 	} else
 		spin_unlock_irqrestore(&priv->driver_lock, flags);
-	return 0;
+
+	ret = 0;
+done:
+	lbtf_deb_leave(LBTF_DEB_THREAD);
+	return ret;
 }
 
 static struct cmd_ctrl_node *__lbtf_cmd_async(struct lbtf_private *priv,
@@ -498,14 +610,22 @@ static struct cmd_ctrl_node *__lbtf_cmd_async(struct lbtf_private *priv,
 {
 	struct cmd_ctrl_node *cmdnode;
 
-	if (priv->surpriseremoved)
-		return ERR_PTR(-ENOENT);
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
+	if (priv->surpriseremoved) {
+		lbtf_deb_host("PREP_CMD: card removed\n");
+		cmdnode = ERR_PTR(-ENOENT);
+		goto done;
+	}
 
 	cmdnode = lbtf_get_cmd_ctrl_node(priv);
 	if (cmdnode == NULL) {
+		lbtf_deb_host("PREP_CMD: cmdnode is NULL\n");
+
 		/* Wake up main thread to execute next command */
 		queue_work(lbtf_wq, &priv->cmd_work);
-		return ERR_PTR(-ENOBUFS);
+		cmdnode = ERR_PTR(-ENOBUFS);
+		goto done;
 	}
 
 	cmdnode->callback = callback;
@@ -520,17 +640,24 @@ static struct cmd_ctrl_node *__lbtf_cmd_async(struct lbtf_private *priv,
 	cmdnode->cmdbuf->size    = cpu_to_le16(in_cmd_size);
 	cmdnode->cmdbuf->seqnum  = cpu_to_le16(priv->seqnum);
 	cmdnode->cmdbuf->result  = 0;
+
+	lbtf_deb_host("PREP_CMD: command 0x%04x\n", command);
+
 	cmdnode->cmdwaitqwoken = 0;
 	lbtf_queue_cmd(priv, cmdnode);
 	queue_work(lbtf_wq, &priv->cmd_work);
 
+ done:
+	lbtf_deb_leave_args(LBTF_DEB_HOST, "ret %p", cmdnode);
 	return cmdnode;
 }
 
 void lbtf_cmd_async(struct lbtf_private *priv, uint16_t command,
 	struct cmd_header *in_cmd, int in_cmd_size)
 {
+	lbtf_deb_enter(LBTF_DEB_CMD);
 	__lbtf_cmd_async(priv, command, in_cmd, in_cmd_size, NULL, 0);
+	lbtf_deb_leave(LBTF_DEB_CMD);
 }
 
 int __lbtf_cmd(struct lbtf_private *priv, uint16_t command,
@@ -543,30 +670,35 @@ int __lbtf_cmd(struct lbtf_private *priv, uint16_t command,
 	unsigned long flags;
 	int ret = 0;
 
+	lbtf_deb_enter(LBTF_DEB_HOST);
+
 	cmdnode = __lbtf_cmd_async(priv, command, in_cmd, in_cmd_size,
 				  callback, callback_arg);
-	if (IS_ERR(cmdnode))
-		return PTR_ERR(cmdnode);
+	if (IS_ERR(cmdnode)) {
+		ret = PTR_ERR(cmdnode);
+		goto done;
+	}
 
 	might_sleep();
 	ret = wait_event_interruptible(cmdnode->cmdwait_q,
 				       cmdnode->cmdwaitqwoken);
-       if (ret)	{
-		printk(KERN_DEBUG
-		       "libertastf: command 0x%04x interrupted by signal",
-		       command);
-		return ret;
+	if (ret) {
+		pr_info("PREP_CMD: command 0x%04x interrupted by signal: %d\n",
+			    command, ret);
+		goto done;
 	}
 
 	spin_lock_irqsave(&priv->driver_lock, flags);
 	ret = cmdnode->result;
 	if (ret)
-		printk(KERN_DEBUG "libertastf: command 0x%04x failed: %d\n",
+		pr_info("PREP_CMD: command 0x%04x failed: %d\n",
 			    command, ret);
 
 	__lbtf_cleanup_and_insert_cmd(priv, cmdnode);
 	spin_unlock_irqrestore(&priv->driver_lock, flags);
 
+done:
+	lbtf_deb_leave_args(LBTF_DEB_HOST, "ret %d", ret);
 	return ret;
 }
 EXPORT_SYMBOL_GPL(__lbtf_cmd);
@@ -587,6 +719,8 @@ int lbtf_process_rx_command(struct lbtf_private *priv)
 	unsigned long flags;
 	uint16_t result;
 
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	mutex_lock(&priv->lock);
 	spin_lock_irqsave(&priv->driver_lock, flags);
 
@@ -602,7 +736,7 @@ int lbtf_process_rx_command(struct lbtf_private *priv)
 	result = le16_to_cpu(resp->result);
 
 	if (net_ratelimit())
-		printk(KERN_DEBUG "libertastf: cmd response 0x%04x, seq %d, size %d\n",
+		pr_info("libertastf: cmd response 0x%04x, seq %d, size %d\n",
 			respcmd, le16_to_cpu(resp->seqnum),
 			le16_to_cpu(resp->size));
 
@@ -639,7 +773,7 @@ int lbtf_process_rx_command(struct lbtf_private *priv)
 		switch (respcmd) {
 		case CMD_RET(CMD_GET_HW_SPEC):
 		case CMD_RET(CMD_802_11_RESET):
-			printk(KERN_DEBUG "libertastf: reset failed\n");
+			pr_info("libertastf: reset failed\n");
 			break;
 
 		}
@@ -666,5 +800,6 @@ int lbtf_process_rx_command(struct lbtf_private *priv)
 
 done:
 	mutex_unlock(&priv->lock);
+	lbtf_deb_leave_args(LBTF_DEB_CMD, "ret %d", ret);
 	return ret;
 }
diff --git a/drivers/net/wireless/libertas_tf/deb_defs.h b/drivers/net/wireless/libertas_tf/deb_defs.h
new file mode 100644
index 0000000..9a3e92b
--- /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
+
+#include <linux/spinlock.h>
+
+#ifdef CONFIG_LIBERTAS_THINFIRM_DEBUG
+#define DEBUG
+#define PROC_DEBUG
+#endif
+
+#define LBTF_DEB_ENTER	0x00000001
+#define LBTF_DEB_LEAVE	0x00000002
+#define LBTF_DEB_MAIN	0x00000004
+#define LBTF_DEB_NET	0x00000008
+#define LBTF_DEB_MESH	0x00000010
+#define LBTF_DEB_WEXT	0x00000020
+#define LBTF_DEB_IOCTL	0x00000040
+#define LBTF_DEB_SCAN	0x00000080
+#define LBTF_DEB_ASSOC	0x00000100
+#define LBTF_DEB_JOIN	0x00000200
+#define LBTF_DEB_11D	0x00000400
+#define LBTF_DEB_DEBUGFS	0x00000800
+#define LBTF_DEB_ETHTOOL	0x00001000
+#define LBTF_DEB_HOST	0x00002000
+#define LBTF_DEB_CMD	0x00004000
+#define LBTF_DEB_RX	0x00008000
+#define LBTF_DEB_TX	0x00010000
+#define LBTF_DEB_USB	0x00020000
+#define LBTF_DEB_CS	0x00040000
+#define LBTF_DEB_FW	0x00080000
+#define LBTF_DEB_THREAD	0x00100000
+#define LBTF_DEB_HEX	0x00200000
+#define LBTF_DEB_SDIO	0x00400000
+#define LBTF_DEB_MACOPS	0x00800000
+
+extern unsigned int lbtf_debug;
+
+
+#ifdef DEBUG
+#define LBTF_DEB_LL(grp, grpnam, fmt, args...) \
+do { if ((lbtf_debug & (grp)) == (grp)) \
+  printk(KERN_DEBUG DRV_NAME grpnam "%s: " fmt, \
+         in_interrupt() ? " (INT)" : "", ## args); } while (0)
+#else
+#define LBTF_DEB_LL(grp, grpnam, fmt, args...) do {} while (0)
+#endif
+
+#define lbtf_deb_enter(grp) \
+  LBTF_DEB_LL(grp | LBTF_DEB_ENTER, " enter", "%s()\n", __func__);
+#define lbtf_deb_enter_args(grp, fmt, args...) \
+  LBTF_DEB_LL(grp | LBTF_DEB_ENTER, " enter", "%s(" fmt ")\n", __func__, ## args);
+#define lbtf_deb_leave(grp) \
+  LBTF_DEB_LL(grp | LBTF_DEB_LEAVE, " leave", "%s()\n", __func__);
+#define lbtf_deb_leave_args(grp, fmt, args...) \
+  LBTF_DEB_LL(grp | LBTF_DEB_LEAVE, " leave", "%s(), " fmt "\n", \
+  __func__, ##args);
+#define lbtf_deb_main(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_MAIN, " main", fmt, ##args)
+#define lbtf_deb_net(fmt, args...)       LBTF_DEB_LL(LBTF_DEB_NET, " net", fmt, ##args)
+#define lbtf_deb_mesh(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_MESH, " mesh", fmt, ##args)
+#define lbtf_deb_wext(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_WEXT, " wext", fmt, ##args)
+#define lbtf_deb_ioctl(fmt, args...)     LBTF_DEB_LL(LBTF_DEB_IOCTL, " ioctl", fmt, ##args)
+#define lbtf_deb_scan(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_SCAN, " scan", fmt, ##args)
+#define lbtf_deb_assoc(fmt, args...)     LBTF_DEB_LL(LBTF_DEB_ASSOC, " assoc", fmt, ##args)
+#define lbtf_deb_join(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_JOIN, " join", fmt, ##args)
+#define lbtf_deb_11d(fmt, args...)       LBTF_DEB_LL(LBTF_DEB_11D, " 11d", fmt, ##args)
+#define lbtf_deb_debugfs(fmt, args...)   LBTF_DEB_LL(LBTF_DEB_DEBUGFS, " debugfs", fmt, ##args)
+#define lbtf_deb_ethtool(fmt, args...)   LBTF_DEB_LL(LBTF_DEB_ETHTOOL, " ethtool", fmt, ##args)
+#define lbtf_deb_host(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_HOST, " host", fmt, ##args)
+#define lbtf_deb_cmd(fmt, args...)       LBTF_DEB_LL(LBTF_DEB_CMD, " cmd", fmt, ##args)
+#define lbtf_deb_rx(fmt, args...)        LBTF_DEB_LL(LBTF_DEB_RX, " rx", fmt, ##args)
+#define lbtf_deb_tx(fmt, args...)        LBTF_DEB_LL(LBTF_DEB_TX, " tx", fmt, ##args)
+#define lbtf_deb_fw(fmt, args...)        LBTF_DEB_LL(LBTF_DEB_FW, " fw", fmt, ##args)
+#define lbtf_deb_usb(fmt, args...)       LBTF_DEB_LL(LBTF_DEB_USB, " usb", fmt, ##args)
+#define lbtf_deb_usbd(dev, fmt, args...) LBTF_DEB_LL(LBTF_DEB_USB, " usbd", "%s:" fmt, dev_name(dev), ##args)
+#define lbtf_deb_cs(fmt, args...)        LBTF_DEB_LL(LBTF_DEB_CS, " cs", fmt, ##args)
+#define lbtf_deb_thread(fmt, args...)    LBTF_DEB_LL(LBTF_DEB_THREAD, " thread", fmt, ##args)
+#define lbtf_deb_sdio(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_SDIO, " thread", fmt, ##args)
+#define lbtf_deb_macops(fmt, args...)      LBTF_DEB_LL(LBTF_DEB_MACOPS, " thread", fmt, ##args)
+
+#ifdef DEBUG
+static inline void lbtf_deb_hex(unsigned int grp, const char *prompt, u8 *buf, int len)
+{
+	char newprompt[32];
+
+	if (len &&
+	    (lbtf_debug & LBTF_DEB_HEX) &&
+	    (lbtf_debug & grp))	{
+		snprintf(newprompt, sizeof(newprompt), DRV_NAME " %s: ", prompt);
+		print_hex_dump_bytes(prompt, DUMP_PREFIX_NONE, buf, len);
+	}
+}
+#else
+#define lbtf_deb_hex(grp, prompt, buf, len)	do {} while (0)
+#endif
+
+#endif
diff --git a/drivers/net/wireless/libertas_tf/if_usb.c b/drivers/net/wireless/libertas_tf/if_usb.c
index 8cc9db6..125f54d 100644
--- a/drivers/net/wireless/libertas_tf/if_usb.c
+++ b/drivers/net/wireless/libertas_tf/if_usb.c
@@ -7,6 +7,12 @@
  *  the Free Software Foundation; either version 2 of the License, or (at
  *  your option) any later version.
  */
+#define DRV_NAME "lbtf_usb"
+
+#include "deb_defs.h"
+#include "libertas_tf.h"
+#include "if_usb.h"
+
 #include <linux/delay.h>
 #include <linux/moduleparam.h>
 #include <linux/firmware.h>
@@ -14,10 +20,8 @@
 #include <linux/slab.h>
 #include <linux/usb.h>
 
-#define DRV_NAME "lbtf_usb"
-
-#include "libertas_tf.h"
-#include "if_usb.h"
+#define INSANEDEBUG	0
+#define lbtf_deb_usb2(...) do { if (INSANEDEBUG) lbtf_deb_usbd(__VA_ARGS__); } while (0)
 
 #define MESSAGE_HEADER_LEN	4
 
@@ -53,9 +57,14 @@ static int if_usb_reset_device(struct if_usb_card *cardp);
  */
 static void if_usb_write_bulk_callback(struct urb *urb)
 {
-	if (urb->status != 0)
-		printk(KERN_INFO "libertastf: URB in failure status: %d\n",
-		       urb->status);
+	if (urb->status != 0) {
+		/* print the failure status number for debug */
+		pr_info("URB in failure status: %d\n", urb->status);
+	} else {
+		lbtf_deb_usb2(&urb->dev->dev, "URB status is successful\n");
+		lbtf_deb_usb2(&urb->dev->dev, "Actual length transmitted %d\n",
+			     urb->actual_length);
+	}
 }
 
 /**
@@ -65,6 +74,8 @@ static void if_usb_write_bulk_callback(struct urb *urb)
  */
 static void if_usb_free(struct if_usb_card *cardp)
 {
+	lbtf_deb_enter(LBTF_DEB_USB);
+
 	/* Unlink tx & rx urb */
 	usb_kill_urb(cardp->tx_urb);
 	usb_kill_urb(cardp->rx_urb);
@@ -81,6 +92,8 @@ static void if_usb_free(struct if_usb_card *cardp)
 
 	kfree(cardp->ep_out_buf);
 	cardp->ep_out_buf = NULL;
+
+	lbtf_deb_leave(LBTF_DEB_USB);
 }
 
 static void if_usb_setup_firmware(struct lbtf_private *priv)
@@ -88,23 +101,33 @@ static void if_usb_setup_firmware(struct lbtf_private *priv)
 	struct if_usb_card *cardp = priv->card;
 	struct cmd_ds_set_boot2_ver b2_cmd;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
+
 	if_usb_submit_rx_urb(cardp);
 	b2_cmd.hdr.size = cpu_to_le16(sizeof(b2_cmd));
 	b2_cmd.action = 0;
 	b2_cmd.version = cardp->boot2_version;
 
 	if (lbtf_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
-		printk(KERN_INFO "libertastf: setting boot2 version failed\n");
+		lbtf_deb_usb("Setting boot2 version failed\n");
+
+	lbtf_deb_leave(LBTF_DEB_USB);
 }
 
 static void if_usb_fw_timeo(unsigned long priv)
 {
 	struct if_usb_card *cardp = (void *)priv;
 
-	if (!cardp->fwdnldover)
+	lbtf_deb_enter(LBTF_DEB_USB);
+	if (!cardp->fwdnldover) {
 		/* Download timed out */
 		cardp->priv->surpriseremoved = 1;
+		pr_err("Download timed out\n");
+	} else {
+		lbtf_deb_usb("Download complete, no event. Assuming success\n");
+	}
 	wake_up(&cardp->fw_wq);
+	lbtf_deb_leave(LBTF_DEB_USB);
 }
 
 /**
@@ -125,11 +148,14 @@ static int if_usb_probe(struct usb_interface *intf,
 	struct if_usb_card *cardp;
 	int i;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
 	udev = interface_to_usbdev(intf);
 
 	cardp = kzalloc(sizeof(struct if_usb_card), GFP_KERNEL);
-	if (!cardp)
+	if (!cardp) {
+		pr_err("Out of memory allocating private data.\n");
 		goto error;
+	}
 
 	setup_timer(&cardp->fw_timeout, if_usb_fw_timeo, (unsigned long)cardp);
 	init_waitqueue_head(&cardp->fw_wq);
@@ -137,38 +163,62 @@ static int if_usb_probe(struct usb_interface *intf,
 	cardp->udev = udev;
 	iface_desc = intf->cur_altsetting;
 
+	lbtf_deb_usbd(&udev->dev, "bcdUSB = 0x%X bDeviceClass = 0x%X"
+		     " bDeviceSubClass = 0x%X, bDeviceProtocol = 0x%X\n",
+		     le16_to_cpu(udev->descriptor.bcdUSB),
+		     udev->descriptor.bDeviceClass,
+		     udev->descriptor.bDeviceSubClass,
+		     udev->descriptor.bDeviceProtocol);
+
 	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
 		endpoint = &iface_desc->endpoint[i].desc;
 		if (usb_endpoint_is_bulk_in(endpoint)) {
 			cardp->ep_in_size =
 				le16_to_cpu(endpoint->wMaxPacketSize);
 			cardp->ep_in = usb_endpoint_num(endpoint);
+
+			lbtf_deb_usbd(&udev->dev, "in_endpoint = %d\n", cardp->ep_in);
+			lbtf_deb_usbd(&udev->dev, "Bulk in size is %d\n", cardp->ep_in_size);
 		} else if (usb_endpoint_is_bulk_out(endpoint)) {
 			cardp->ep_out_size =
 				le16_to_cpu(endpoint->wMaxPacketSize);
 			cardp->ep_out = usb_endpoint_num(endpoint);
+
+			lbtf_deb_usbd(&udev->dev, "out_endpoint = %d\n", cardp->ep_out);
+			lbtf_deb_usbd(&udev->dev, "Bulk out size is %d\n",
+			              cardp->ep_out_size);
 		}
 	}
-	if (!cardp->ep_out_size || !cardp->ep_in_size)
+	if (!cardp->ep_out_size || !cardp->ep_in_size) {
+		lbtf_deb_usbd(&udev->dev, "Endpoints not found\n");
 		/* Endpoints not found */
 		goto dealloc;
+	}
 
 	cardp->rx_urb = usb_alloc_urb(0, GFP_KERNEL);
-	if (!cardp->rx_urb)
+	if (!cardp->rx_urb) {
+		lbtf_deb_usbd(&udev->dev, "Rx URB allocation failed\n");
 		goto dealloc;
+	}
 
 	cardp->tx_urb = usb_alloc_urb(0, GFP_KERNEL);
-	if (!cardp->tx_urb)
+	if (!cardp->tx_urb) {
+		lbtf_deb_usbd(&udev->dev, "Tx URB allocation failed\n");
 		goto dealloc;
+	}
 
 	cardp->cmd_urb = usb_alloc_urb(0, GFP_KERNEL);
-	if (!cardp->cmd_urb)
+	if (!cardp->cmd_urb) {
+		lbtf_deb_usbd(&udev->dev, "Cmd URB allocation failed\n");
 		goto dealloc;
+	}
 
 	cardp->ep_out_buf = kmalloc(MRVDRV_ETH_TX_PACKET_BUFFER_SIZE,
 				    GFP_KERNEL);
-	if (!cardp->ep_out_buf)
+	if (!cardp->ep_out_buf) {
+		lbtf_deb_usbd(&udev->dev, "Could not allocate buffer\n");
 		goto dealloc;
+	}
 
 	priv = lbtf_add_card(cardp, &udev->dev);
 	if (!priv)
@@ -189,6 +239,7 @@ static int if_usb_probe(struct usb_interface *intf,
 dealloc:
 	if_usb_free(cardp);
 error:
+lbtf_deb_leave(LBTF_DEB_MAIN);
 	return -ENOMEM;
 }
 
@@ -202,6 +253,8 @@ static void if_usb_disconnect(struct usb_interface *intf)
 	struct if_usb_card *cardp = usb_get_intfdata(intf);
 	struct lbtf_private *priv = (struct lbtf_private *) cardp->priv;
 
+	lbtf_deb_enter(LBTF_DEB_MAIN);
+
 	if_usb_reset_device(cardp);
 
 	if (priv)
@@ -212,6 +265,8 @@ static void if_usb_disconnect(struct usb_interface *intf)
 
 	usb_set_intfdata(intf, NULL);
 	usb_put_dev(interface_to_usbdev(intf));
+
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 }
 
 /**
@@ -226,6 +281,8 @@ static int if_usb_send_fw_pkt(struct if_usb_card *cardp)
 	struct fwdata *fwdata = cardp->ep_out_buf;
 	u8 *firmware = (u8 *) cardp->fw->data;
 
+	lbtf_deb_enter(LBTF_DEB_FW);
+
 	/* If we got a CRC failure on the last block, back
 	   up and retry it */
 	if (!cardp->CRC_OK) {
@@ -233,6 +290,9 @@ static int if_usb_send_fw_pkt(struct if_usb_card *cardp)
 		cardp->fwseqnum--;
 	}
 
+	lbtf_deb_usb2(&cardp->udev->dev, "totalbytes = %d\n",
+		     cardp->totalbytes);
+
 	/* struct fwdata (which we sent to the card) has an
 	   extra __le32 field in between the header and the data,
 	   which is not in the struct fwheader in the actual
@@ -246,18 +306,33 @@ static int if_usb_send_fw_pkt(struct if_usb_card *cardp)
 	memcpy(fwdata->data, &firmware[cardp->totalbytes],
 	       le32_to_cpu(fwdata->hdr.datalength));
 
+	lbtf_deb_usb2(&cardp->udev->dev, "Data length = %d\n",
+		     le32_to_cpu(fwdata->hdr.datalength));
+
 	fwdata->seqnum = cpu_to_le32(++cardp->fwseqnum);
 	cardp->totalbytes += le32_to_cpu(fwdata->hdr.datalength);
 
 	usb_tx_block(cardp, cardp->ep_out_buf, sizeof(struct fwdata) +
 		     le32_to_cpu(fwdata->hdr.datalength), 0);
 
-	if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK))
+	if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_DATA_TO_RECV)) {
+		lbtf_deb_usb2(&cardp->udev->dev, "There are data to follow\n");
+		lbtf_deb_usb2(&cardp->udev->dev, "seqnum = %d totalbytes = %d\n",
+			     cardp->fwseqnum, cardp->totalbytes);
+	} else if (fwdata->hdr.dnldcmd == cpu_to_le32(FW_HAS_LAST_BLOCK)) {
+		lbtf_deb_usb2(&cardp->udev->dev, "Host has finished FW downloading\n");
+		lbtf_deb_usb2(&cardp->udev->dev, "Donwloading FW JUMP BLOCK\n");
+
 		/* Host has finished FW downloading
 		 * Donwloading FW JUMP BLOCK
 		 */
 		cardp->fwfinalblk = 1;
+	}
 
+	lbtf_deb_usb2(&cardp->udev->dev, "Firmware download done; size %d\n",
+		     cardp->totalbytes);
+
+	lbtf_deb_leave(LBTF_DEB_FW);
 	return 0;
 }
 
@@ -266,6 +341,8 @@ static int if_usb_reset_device(struct if_usb_card *cardp)
 	struct cmd_ds_802_11_reset *cmd = cardp->ep_out_buf + 4;
 	int ret;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
+
 	*(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
 
 	cmd->hdr.command = cpu_to_le16(CMD_802_11_RESET);
@@ -280,6 +357,8 @@ static int if_usb_reset_device(struct if_usb_card *cardp)
 	ret = usb_reset_device(cardp->udev);
 	msleep(100);
 
+	lbtf_deb_leave_args(LBTF_DEB_USB, "ret %d", ret);
+
 	return ret;
 }
 EXPORT_SYMBOL_GPL(if_usb_reset_device);
@@ -297,11 +376,15 @@ EXPORT_SYMBOL_GPL(if_usb_reset_device);
 static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload,
 			uint16_t nb, u8 data)
 {
+	int ret = -1;
 	struct urb *urb;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
 	/* check if device is removed */
-	if (cardp->priv->surpriseremoved)
-		return -1;
+	if (cardp->priv->surpriseremoved) {
+		lbtf_deb_usbd(&cardp->udev->dev, "Device removed\n");
+		goto tx_ret;
+	}
 
 	if (data)
 		urb = cardp->tx_urb;
@@ -315,19 +398,34 @@ static int usb_tx_block(struct if_usb_card *cardp, uint8_t *payload,
 
 	urb->transfer_flags |= URB_ZERO_PACKET;
 
-	if (usb_submit_urb(urb, GFP_ATOMIC))
-		return -1;
-	return 0;
+	if (usb_submit_urb(urb, GFP_ATOMIC)) {
+		lbtf_deb_usbd(&cardp->udev->dev, "usb_submit_urb failed: %d\n", ret);
+		goto tx_ret;
+	}
+
+	lbtf_deb_usb2(&cardp->udev->dev, "usb_submit_urb success\n");
+
+	ret = 0;
+
+tx_ret:
+	lbtf_deb_leave(LBTF_DEB_USB);
+	return ret;
 }
 
 static int __if_usb_submit_rx_urb(struct if_usb_card *cardp,
 				  void (*callbackfn)(struct urb *urb))
 {
 	struct sk_buff *skb;
+	int ret = -1;
+
+	lbtf_deb_enter(LBTF_DEB_USB);
 
 	skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE);
-	if (!skb)
+	if (!skb) {
+		pr_err("No free skb\n");
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return -1;
+	}
 
 	cardp->rx_skb = skb;
 
@@ -339,12 +437,19 @@ static int __if_usb_submit_rx_urb(struct if_usb_card *cardp,
 
 	cardp->rx_urb->transfer_flags |= URB_ZERO_PACKET;
 
-	if (usb_submit_urb(cardp->rx_urb, GFP_ATOMIC)) {
+	lbtf_deb_usb2(&cardp->udev->dev, "Pointer for rx_urb %p\n", cardp->rx_urb);
+	ret = usb_submit_urb(cardp->rx_urb, GFP_ATOMIC);
+	if (ret) {
+		lbtf_deb_usbd(&cardp->udev->dev, "Submit Rx URB failed: %d\n", ret);
 		kfree_skb(skb);
 		cardp->rx_skb = NULL;
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return -1;
-	} else
+	} else {
+		lbtf_deb_usb2(&cardp->udev->dev, "Submit Rx URB success\n");
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return 0;
+	}
 }
 
 static int if_usb_submit_rx_urb_fwload(struct if_usb_card *cardp)
@@ -364,8 +469,12 @@ static void if_usb_receive_fwload(struct urb *urb)
 	struct fwsyncheader *syncfwheader;
 	struct bootcmdresp bcmdresp;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
 	if (urb->status) {
+		lbtf_deb_usbd(&cardp->udev->dev,
+			     "URB status is failed during fw load\n");
 		kfree_skb(skb);
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return;
 	}
 
@@ -373,12 +482,17 @@ static void if_usb_receive_fwload(struct urb *urb)
 		__le32 *tmp = (__le32 *)(skb->data);
 
 		if (tmp[0] == cpu_to_le32(CMD_TYPE_INDICATION) &&
-		    tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY))
+		    tmp[1] == cpu_to_le32(MACREG_INT_CODE_FIRMWARE_READY)) {
 			/* Firmware ready event received */
+			pr_info("Firmware ready event received\n");
 			wake_up(&cardp->fw_wq);
-		else
+		} else {
+			lbtf_deb_usb("Waiting for confirmation; got %x %x\n",
+				    le32_to_cpu(tmp[0]), le32_to_cpu(tmp[1]));
 			if_usb_submit_rx_urb_fwload(cardp);
+		}
 		kfree_skb(skb);
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return;
 	}
 	if (cardp->bootcmdresp <= 0) {
@@ -389,34 +503,60 @@ static void if_usb_receive_fwload(struct urb *urb)
 			if_usb_submit_rx_urb_fwload(cardp);
 			cardp->bootcmdresp = 1;
 			/* Received valid boot command response */
+			lbtf_deb_usbd(&cardp->udev->dev,
+				     "Received valid boot command response\n");
+			lbtf_deb_leave(LBTF_DEB_USB);
 			return;
 		}
 		if (bcmdresp.magic != cpu_to_le32(BOOT_CMD_MAGIC_NUMBER)) {
 			if (bcmdresp.magic == cpu_to_le32(CMD_TYPE_REQUEST) ||
 			    bcmdresp.magic == cpu_to_le32(CMD_TYPE_DATA) ||
-			    bcmdresp.magic == cpu_to_le32(CMD_TYPE_INDICATION))
+			    bcmdresp.magic == cpu_to_le32(CMD_TYPE_INDICATION)) {
+				if (!cardp->bootcmdresp)
+					pr_info("Firmware already seems alive; resetting\n");
 				cardp->bootcmdresp = -1;
-		} else if (bcmdresp.cmd == BOOT_CMD_FW_BY_USB &&
-			   bcmdresp.result == BOOT_CMD_RESP_OK)
+			} else {
+				pr_info("boot cmd response wrong magic number (0x%x)\n",
+					    le32_to_cpu(bcmdresp.magic));
+			}
+		} else if (bcmdresp.cmd != BOOT_CMD_FW_BY_USB) {
+			pr_info("boot cmd response cmd_tag error (%d)\n",
+				    bcmdresp.cmd);
+		} else if (bcmdresp.result != BOOT_CMD_RESP_OK) {
+			pr_info("boot cmd response result error (%d)\n",
+				    bcmdresp.result);
+		} else {
 			cardp->bootcmdresp = 1;
+			lbtf_deb_usbd(&cardp->udev->dev,
+				     "Received valid boot command response\n");
+		}
 
 		kfree_skb(skb);
 		if_usb_submit_rx_urb_fwload(cardp);
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return;
 	}
 
 	syncfwheader = kmalloc(sizeof(struct fwsyncheader), GFP_ATOMIC);
 	if (!syncfwheader) {
+		lbtf_deb_usbd(&cardp->udev->dev, "Failure to allocate syncfwheader\n");
 		kfree_skb(skb);
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return;
 	}
 
 	memcpy(syncfwheader, skb->data, sizeof(struct fwsyncheader));
 
-	if (!syncfwheader->cmd)
+	if (!syncfwheader->cmd) {
+		lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk with correct CRC\n");
+		lbtf_deb_usb2(&cardp->udev->dev, "FW received Blk seqnum = %d\n",
+			     le32_to_cpu(syncfwheader->seqnum));
 		cardp->CRC_OK = 1;
-	else
+	} else {
+		lbtf_deb_usbd(&cardp->udev->dev, "FW received Blk with CRC error\n");
 		cardp->CRC_OK = 0;
+	}
+
 	kfree_skb(skb);
 
 	/* reschedule timer for 200ms hence */
@@ -434,6 +574,7 @@ static void if_usb_receive_fwload(struct urb *urb)
 
 	kfree(syncfwheader);
 
+	lbtf_deb_leave(LBTF_DEB_USB);
 	return;
 }
 
@@ -445,6 +586,7 @@ static inline void process_cmdtypedata(int recvlength, struct sk_buff *skb,
 {
 	if (recvlength > MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + MESSAGE_HEADER_LEN
 	    || recvlength < MRVDRV_MIN_PKT_LEN) {
+		lbtf_deb_usbd(&cardp->udev->dev, "Packet length is Invalid\n");
 		kfree_skb(skb);
 		return;
 	}
@@ -460,6 +602,8 @@ static inline void process_cmdrequest(int recvlength, uint8_t *recvbuff,
 				      struct lbtf_private *priv)
 {
 	if (recvlength > LBS_CMD_BUFFER_SIZE) {
+		lbtf_deb_usbd(&cardp->udev->dev,
+			     "The receive buffer is too large\n");
 		kfree_skb(skb);
 		return;
 	}
@@ -489,16 +633,24 @@ static void if_usb_receive(struct urb *urb)
 	uint32_t recvtype = 0;
 	__le32 *pkt = (__le32 *) skb->data;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
+
 	if (recvlength) {
 		if (urb->status) {
+			lbtf_deb_usbd(&cardp->udev->dev, "RX URB failed: %d\n",
+				     urb->status);
 			kfree_skb(skb);
 			goto setup_for_next;
 		}
 
 		recvbuff = skb->data;
 		recvtype = le32_to_cpu(pkt[0]);
+		lbtf_deb_usbd(&cardp->udev->dev,
+			    "Recv length = 0x%x, Recv type = 0x%X\n",
+			    recvlength, recvtype);
 	} else if (urb->status) {
 		kfree_skb(skb);
+		lbtf_deb_leave(LBTF_DEB_USB);
 		return;
 	}
 
@@ -515,6 +667,7 @@ static void if_usb_receive(struct urb *urb)
 	{
 		/* Event cause handling */
 		u32 event_cause = le32_to_cpu(pkt[1]);
+		lbtf_deb_usbd(&cardp->udev->dev, "**EVENT** 0x%X\n", event_cause);
 
 		/* Icky undocumented magic special case */
 		if (event_cause & 0xffff0000) {
@@ -529,21 +682,22 @@ static void if_usb_receive(struct urb *urb)
 		} else if (event_cause == LBTF_EVENT_BCN_SENT)
 			lbtf_bcn_sent(priv);
 		else
-			printk(KERN_DEBUG
+			lbtf_deb_usbd(&cardp->udev->dev,
 			       "Unsupported notification %d received\n",
 			       event_cause);
 		kfree_skb(skb);
 		break;
 	}
 	default:
-		printk(KERN_DEBUG "libertastf: unknown command type 0x%X\n",
-			     recvtype);
+		lbtf_deb_usbd(&cardp->udev->dev,
+		         "libertastf: unknown command type 0x%X\n", recvtype);
 		kfree_skb(skb);
 		break;
 	}
 
 setup_for_next:
 	if_usb_submit_rx_urb(cardp);
+	lbtf_deb_leave(LBTF_DEB_USB);
 }
 
 /**
@@ -562,6 +716,9 @@ static int if_usb_host_to_card(struct lbtf_private *priv, uint8_t type,
 	struct if_usb_card *cardp = priv->card;
 	u8 data = 0;
 
+	lbtf_deb_usbd(&cardp->udev->dev, "*** type = %u\n", type);
+	lbtf_deb_usbd(&cardp->udev->dev, "size after = %d\n", nb);
+
 	if (type == MVMS_CMD) {
 		*(__le32 *)cardp->ep_out_buf = cpu_to_le32(CMD_TYPE_REQUEST);
 	} else {
@@ -639,8 +796,10 @@ static int check_fwfile_format(const u8 *data, u32 totlen)
 	} while (!exit);
 
 	if (ret)
-		printk(KERN_INFO
-		       "libertastf: firmware file format check failed\n");
+		pr_err("firmware file format check FAIL\n");
+	else
+		lbtf_deb_fw("firmware file format check PASS\n");
+
 	return ret;
 }
 
@@ -651,10 +810,12 @@ static int if_usb_prog_firmware(struct if_usb_card *cardp)
 	static int reset_count = 10;
 	int ret = 0;
 
+	lbtf_deb_enter(LBTF_DEB_USB);
+
 	ret = request_firmware(&cardp->fw, lbtf_fw_name, &cardp->udev->dev);
 	if (ret < 0) {
-		printk(KERN_INFO "libertastf: firmware %s not found\n",
-		       lbtf_fw_name);
+		pr_err("request_firmware() failed with %#x\n", ret);
+		pr_err("firmware %s not found\n", lbtf_fw_name);
 		goto done;
 	}
 
@@ -663,6 +824,7 @@ static int if_usb_prog_firmware(struct if_usb_card *cardp)
 
 restart:
 	if (if_usb_submit_rx_urb_fwload(cardp) < 0) {
+		lbtf_deb_usbd(&cardp->udev->dev, "URB submission is failed\n");
 		ret = -1;
 		goto release_fw;
 	}
@@ -709,14 +871,13 @@ restart:
 	usb_kill_urb(cardp->rx_urb);
 
 	if (!cardp->fwdnldover) {
-		printk(KERN_INFO "libertastf: failed to load fw,"
-				 " resetting device!\n");
+		pr_info("failed to load fw, resetting device!\n");
 		if (--reset_count >= 0) {
 			if_usb_reset_device(cardp);
 			goto restart;
 		}
 
-		printk(KERN_INFO "libertastf: fw download failure\n");
+		pr_info("FW download failure, time = %d ms\n", i * 100);
 		ret = -1;
 		goto release_fw;
 	}
@@ -730,6 +891,7 @@ restart:
 	if_usb_setup_firmware(cardp->priv);
 
  done:
+	lbtf_deb_leave_args(LBTF_DEB_USB, "ret %d", ret);
 	return ret;
 }
 EXPORT_SYMBOL_GPL(if_usb_prog_firmware);
@@ -751,13 +913,19 @@ static int __init if_usb_init_module(void)
 {
 	int ret = 0;
 
+	lbtf_deb_enter(LBTF_DEB_MAIN);
+
 	ret = usb_register(&if_usb_driver);
+
+	lbtf_deb_leave_args(LBTF_DEB_MAIN, "ret %d", ret);
 	return ret;
 }
 
 static void __exit if_usb_exit_module(void)
 {
+	lbtf_deb_enter(LBTF_DEB_MAIN);
 	usb_deregister(&if_usb_driver);
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 }
 
 module_init(if_usb_init_module);
diff --git a/drivers/net/wireless/libertas_tf/main.c b/drivers/net/wireless/libertas_tf/main.c
index 7945ff5..9b930b8 100644
--- a/drivers/net/wireless/libertas_tf/main.c
+++ b/drivers/net/wireless/libertas_tf/main.c
@@ -7,9 +7,11 @@
  *  the Free Software Foundation; either version 2 of the License, or (at
  *  your option) any later version.
  */
+#include "deb_defs.h"
+#include "libertas_tf.h"
+
 #include <linux/slab.h>
 
-#include "libertas_tf.h"
 #include "linux/etherdevice.h"
 
 #define DRIVER_RELEASE_VERSION "004.p0"
@@ -18,7 +20,17 @@
 #define LBTF_FW_VER_MAX		0x0584ffff
 #define QOS_CONTROL_LEN		2
 
-static const char lbtf_driver_version[] = "THINFIRM-USB8388-" DRIVER_RELEASE_VERSION;
+/* Module parameters */
+unsigned int lbtf_debug;
+EXPORT_SYMBOL_GPL(lbtf_debug);
+module_param_named(libertas_tf_debug, lbtf_debug, int, 0644);
+
+static const char lbtf_driver_version[] = "THINFIRM-USB8388-" DRIVER_RELEASE_VERSION
+#ifdef DEBUG
+	"-dbg"
+#endif
+	"";
+
 struct workqueue_struct *lbtf_wq;
 
 static const struct ieee80211_channel lbtf_channels[] = {
@@ -81,6 +93,9 @@ static void lbtf_cmd_work(struct work_struct *work)
 {
 	struct lbtf_private *priv = container_of(work, struct lbtf_private,
 					 cmd_work);
+
+	lbtf_deb_enter(LBTF_DEB_CMD);
+
 	spin_lock_irq(&priv->driver_lock);
 	/* command response? */
 	if (priv->cmd_response_rxed) {
@@ -108,11 +123,16 @@ static void lbtf_cmd_work(struct work_struct *work)
 	priv->cmd_timed_out = 0;
 	spin_unlock_irq(&priv->driver_lock);
 
-	if (!priv->fw_ready)
+	if (!priv->fw_ready) {
+		lbtf_deb_leave_args(LBTF_DEB_CMD, "fw not ready");
 		return;
+	}
+
 	/* Execute the next command */
 	if (!priv->cur_cmd)
 		lbtf_execute_next_command(priv);
+
+	lbtf_deb_leave(LBTF_DEB_CMD);
 }
 
 /**
@@ -126,6 +146,7 @@ static int lbtf_setup_firmware(struct lbtf_private *priv)
 {
 	int ret = -1;
 
+	lbtf_deb_enter(LBTF_DEB_FW);
 	/*
 	 * Read priv address from HW
 	 */
@@ -141,6 +162,7 @@ static int lbtf_setup_firmware(struct lbtf_private *priv)
 
 	ret = 0;
 done:
+	lbtf_deb_leave_args(LBTF_DEB_FW, "ret: %d", ret);
 	return ret;
 }
 
@@ -152,6 +174,7 @@ static void command_timer_fn(unsigned long data)
 {
 	struct lbtf_private *priv = (struct lbtf_private *)data;
 	unsigned long flags;
+	lbtf_deb_enter(LBTF_DEB_CMD);
 
 	spin_lock_irqsave(&priv->driver_lock, flags);
 
@@ -168,10 +191,12 @@ static void command_timer_fn(unsigned long data)
 	queue_work(lbtf_wq, &priv->cmd_work);
 out:
 	spin_unlock_irqrestore(&priv->driver_lock, flags);
+	lbtf_deb_leave(LBTF_DEB_CMD);
 }
 
 static int lbtf_init_adapter(struct lbtf_private *priv)
 {
+	lbtf_deb_enter(LBTF_DEB_MAIN);
 	memset(priv->current_addr, 0xff, ETH_ALEN);
 	mutex_init(&priv->lock);
 
@@ -188,13 +213,16 @@ static int lbtf_init_adapter(struct lbtf_private *priv)
 	if (lbtf_allocate_cmd_buffer(priv))
 		return -1;
 
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 	return 0;
 }
 
 static void lbtf_free_adapter(struct lbtf_private *priv)
 {
+	lbtf_deb_enter(LBTF_DEB_MAIN);
 	lbtf_free_cmd_buffer(priv);
 	del_timer(&priv->command_timer);
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 }
 
 static int lbtf_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
@@ -221,14 +249,18 @@ static void lbtf_tx_work(struct work_struct *work)
 	struct sk_buff *skb = NULL;
 	int err;
 
+	lbtf_deb_enter(LBTF_DEB_MACOPS | LBTF_DEB_TX);
+
 	if ((priv->vif->type == NL80211_IFTYPE_AP) &&
 	    (!skb_queue_empty(&priv->bc_ps_buf)))
 		skb = skb_dequeue(&priv->bc_ps_buf);
 	else if (priv->skb_to_tx) {
 		skb = priv->skb_to_tx;
 		priv->skb_to_tx = NULL;
-	} else
+	} else {
+		lbtf_deb_leave(LBTF_DEB_MACOPS | LBTF_DEB_TX);
 		return;
+	}
 
 	len = skb->len;
 	info  = IEEE80211_SKB_CB(skb);
@@ -236,6 +268,7 @@ static void lbtf_tx_work(struct work_struct *work)
 
 	if (priv->surpriseremoved) {
 		dev_kfree_skb_any(skb);
+		lbtf_deb_leave(LBTF_DEB_MACOPS | LBTF_DEB_TX);
 		return;
 	}
 
@@ -249,6 +282,7 @@ static void lbtf_tx_work(struct work_struct *work)
 		ETH_ALEN);
 	txpd->tx_packet_length = cpu_to_le16(len);
 	txpd->tx_packet_location = cpu_to_le32(sizeof(struct txpd));
+	lbtf_deb_hex(LBTF_DEB_TX, "TX Data", skb->data, min_t(unsigned int, skb->len, 100));
 	BUG_ON(priv->tx_skb);
 	spin_lock_irq(&priv->driver_lock);
 	priv->tx_skb = skb;
@@ -257,7 +291,9 @@ static void lbtf_tx_work(struct work_struct *work)
 	if (err) {
 		dev_kfree_skb_any(skb);
 		priv->tx_skb = NULL;
+		pr_err("TX error: %d", err);
 	}
+	lbtf_deb_leave(LBTF_DEB_MACOPS | LBTF_DEB_TX);
 }
 
 static int lbtf_op_start(struct ieee80211_hw *hw)
@@ -266,6 +302,8 @@ static int lbtf_op_start(struct ieee80211_hw *hw)
 	void *card = priv->card;
 	int ret = -1;
 
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
+
 	if (!priv->fw_ready)
 		/* Upload firmware */
 		if (priv->hw_prog_firmware(card))
@@ -286,10 +324,12 @@ static int lbtf_op_start(struct ieee80211_hw *hw)
 	}
 
 	printk(KERN_INFO "libertastf: Marvell WLAN 802.11 thinfirm adapter\n");
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 	return 0;
 
 err_prog_firmware:
 	priv->hw_reset_device(card);
+	lbtf_deb_leave_args(LBTF_DEB_MACOPS, "error programing fw; ret=%d", ret);
 	return ret;
 }
 
@@ -300,6 +340,9 @@ static void lbtf_op_stop(struct ieee80211_hw *hw)
 	struct sk_buff *skb;
 
 	struct cmd_ctrl_node *cmdnode;
+
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
+
 	/* Flush pending command nodes */
 	spin_lock_irqsave(&priv->driver_lock, flags);
 	list_for_each_entry(cmdnode, &priv->cmdpendingq, list) {
@@ -316,6 +359,7 @@ static void lbtf_op_stop(struct ieee80211_hw *hw)
 	priv->radioon = RADIO_OFF;
 	lbtf_set_radio_control(priv);
 
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 	return;
 }
 
@@ -323,6 +367,7 @@ static int lbtf_op_add_interface(struct ieee80211_hw *hw,
 			struct ieee80211_vif *vif)
 {
 	struct lbtf_private *priv = hw->priv;
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
 	if (priv->vif != NULL)
 		return -EOPNOTSUPP;
 
@@ -340,6 +385,7 @@ static int lbtf_op_add_interface(struct ieee80211_hw *hw,
 		return -EOPNOTSUPP;
 	}
 	lbtf_set_mac_address(priv, (u8 *) vif->addr);
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 	return 0;
 }
 
@@ -347,6 +393,7 @@ static void lbtf_op_remove_interface(struct ieee80211_hw *hw,
 			struct ieee80211_vif *vif)
 {
 	struct lbtf_private *priv = hw->priv;
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
 
 	if (priv->vif->type == NL80211_IFTYPE_AP ||
 	    priv->vif->type == NL80211_IFTYPE_MESH_POINT)
@@ -354,17 +401,20 @@ static void lbtf_op_remove_interface(struct ieee80211_hw *hw,
 	lbtf_set_mode(priv, LBTF_PASSIVE_MODE);
 	lbtf_set_bssid(priv, 0, NULL);
 	priv->vif = NULL;
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 }
 
 static int lbtf_op_config(struct ieee80211_hw *hw, u32 changed)
 {
 	struct lbtf_private *priv = hw->priv;
 	struct ieee80211_conf *conf = &hw->conf;
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
 
 	if (conf->channel->center_freq != priv->cur_freq) {
 		priv->cur_freq = conf->channel->center_freq;
 		lbtf_set_channel(priv, conf->channel->hw_value);
 	}
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 	return 0;
 }
 
@@ -397,11 +447,16 @@ static void lbtf_op_configure_filter(struct ieee80211_hw *hw,
 {
 	struct lbtf_private *priv = hw->priv;
 	int old_mac_control = priv->mac_control;
+
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
+
 	changed_flags &= SUPPORTED_FIF_FLAGS;
 	*new_flags &= SUPPORTED_FIF_FLAGS;
 
-	if (!changed_flags)
+	if (!changed_flags) {
+		lbtf_deb_leave(LBTF_DEB_MACOPS);
 		return;
+	}
 
 	if (*new_flags & (FIF_PROMISC_IN_BSS))
 		priv->mac_control |= CMD_ACT_MAC_PROMISCUOUS_ENABLE;
@@ -427,6 +482,8 @@ static void lbtf_op_configure_filter(struct ieee80211_hw *hw,
 
 	if (priv->mac_control != old_mac_control)
 		lbtf_set_mac_control(priv);
+
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 }
 
 static void lbtf_op_bss_info_changed(struct ieee80211_hw *hw,
@@ -436,6 +493,7 @@ static void lbtf_op_bss_info_changed(struct ieee80211_hw *hw,
 {
 	struct lbtf_private *priv = hw->priv;
 	struct sk_buff *beacon;
+	lbtf_deb_enter(LBTF_DEB_MACOPS);
 
 	if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_INT)) {
 		switch (priv->vif->type) {
@@ -466,6 +524,8 @@ static void lbtf_op_bss_info_changed(struct ieee80211_hw *hw,
 			priv->preamble = CMD_TYPE_LONG_PREAMBLE;
 		lbtf_set_radio_control(priv);
 	}
+
+	lbtf_deb_leave(LBTF_DEB_MACOPS);
 }
 
 static const struct ieee80211_ops lbtf_ops = {
@@ -488,6 +548,8 @@ int lbtf_rx(struct lbtf_private *priv, struct sk_buff *skb)
 	unsigned int flags;
 	struct ieee80211_hdr *hdr;
 
+	lbtf_deb_enter(LBTF_DEB_RX);
+
 	prxpd = (struct rxpd *) skb->data;
 
 	stats.flag = 0;
@@ -518,7 +580,15 @@ int lbtf_rx(struct lbtf_private *priv, struct sk_buff *skb)
 	}
 
 	memcpy(IEEE80211_SKB_RXCB(skb), &stats, sizeof(stats));
+
+	lbtf_deb_rx("rx data: skb->len-sizeof(RxPd) = %d-%zd = %zd\n",
+	       skb->len, sizeof(struct rxpd), skb->len - sizeof(struct rxpd));
+	lbtf_deb_hex(LBTF_DEB_RX, "RX Data", skb->data,
+	             min_t(unsigned int, skb->len, 100));
+
 	ieee80211_rx_irqsafe(priv->hw, skb);
+
+	lbtf_deb_leave(LBTF_DEB_RX);
 	return 0;
 }
 EXPORT_SYMBOL_GPL(lbtf_rx);
@@ -535,6 +605,8 @@ struct lbtf_private *lbtf_add_card(void *card, struct device *dmdev)
 	struct ieee80211_hw *hw;
 	struct lbtf_private *priv = NULL;
 
+	lbtf_deb_enter(LBTF_DEB_MAIN);
+
 	hw = ieee80211_alloc_hw(sizeof(struct lbtf_private), &lbtf_ops);
 	if (!hw)
 		goto done;
@@ -577,6 +649,7 @@ err_init_adapter:
 	priv = NULL;
 
 done:
+	lbtf_deb_leave_args(LBTF_DEB_MAIN, "priv %p", priv);
 	return priv;
 }
 EXPORT_SYMBOL_GPL(lbtf_add_card);
@@ -586,6 +659,8 @@ int lbtf_remove_card(struct lbtf_private *priv)
 {
 	struct ieee80211_hw *hw = priv->hw;
 
+	lbtf_deb_enter(LBTF_DEB_MAIN);
+
 	priv->surpriseremoved = 1;
 	del_timer(&priv->command_timer);
 	lbtf_free_adapter(priv);
@@ -593,6 +668,7 @@ int lbtf_remove_card(struct lbtf_private *priv)
 	ieee80211_unregister_hw(hw);
 	ieee80211_free_hw(hw);
 
+    lbtf_deb_leave(LBTF_DEB_MAIN);
 	return 0;
 }
 EXPORT_SYMBOL_GPL(lbtf_remove_card);
@@ -651,17 +727,21 @@ EXPORT_SYMBOL_GPL(lbtf_bcn_sent);
 
 static int __init lbtf_init_module(void)
 {
+	lbtf_deb_enter(LBTF_DEB_MAIN);
 	lbtf_wq = create_workqueue("libertastf");
 	if (lbtf_wq == NULL) {
 		printk(KERN_ERR "libertastf: couldn't create workqueue\n");
 		return -ENOMEM;
 	}
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 	return 0;
 }
 
 static void __exit lbtf_exit_module(void)
 {
+	lbtf_deb_enter(LBTF_DEB_MAIN);
 	destroy_workqueue(lbtf_wq);
+	lbtf_deb_leave(LBTF_DEB_MAIN);
 }
 
 module_init(lbtf_init_module);
-- 
1.7.0


^ permalink raw reply related

* Re: [PATCH] Added configurable debug messages to libertastf
From: Steve deRosier @ 2010-04-25 21:30 UTC (permalink / raw)
  To: Joe Perches; +Cc: linux-wireless, javier
In-Reply-To: <1271890205.1730.588.camel@Joe-Laptop.home>

Joe,

Thanks for the pointers.  Sorry it took so long to correct the patch,
but I'll post it asap.

Thanks,
- Steve

On Wed, Apr 21, 2010 at 3:50 PM, Joe Perches <joe@perches.com> wrote:
> On Wed, 2010-04-21 at 15:39 -0700, Steve deRosier 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.
>>
>> Signed-off-by: Steve deRosier <steve@cozybit.com>
> []
>> +#define lbtf_pr_info(format, args...) \
>> +     printk(KERN_INFO DRV_NAME": " format, ## args)
>> +#define lbtf_pr_err(format, args...) \
>> +     printk(KERN_ERR DRV_NAME": " format, ## args)
>> +#define lbtf_pr_alert(format, args...) \
>> +     printk(KERN_ALERT DRV_NAME": " format, ## args)
>
> I think it'd be better to add
>
> #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
>
> and use the more standard pr_<level>s.
>
>> +#ifdef DEBUG
>> +static inline void lbtf_deb_hex(unsigned int grp, const char *prompt, u8 *buf, int len)
>> +{
>> +     int i = 0;
>> +
>> +     if (len &&
>> +         (lbtf_debug & LBTF_DEB_HEX) &&
>> +         (lbtf_debug & grp)) {
>> +             for (i = 1; i <= len; i++) {
>> +                     if ((i & 0xf) == 1) {
>> +                             if (i != 1)
>> +                                     printk("\n");
>> +                             printk(DRV_NAME " %s: ", prompt);
>> +                     }
>> +                     printk("%02x ", (u8) *buf);
>> +                     buf++;
>> +             }
>> +             printk("\n");
>> +     }
>> +}
>
> print_hex_dump_bytes
>
>
>

^ permalink raw reply

* wl1251_sdio PSM
From: GNUtoo @ 2010-04-25 21:18 UTC (permalink / raw)
  To: linux-wireless

Hi,
We are trying to make the htc dream(also known as G1) android phone
usable with a standard GNU(non android) userland.

Inside the htcdream there is a wl1251_sdio chip.

We already use the wl1251_sdio driver with a special module for
initialization.

The problem is that When the wifi is on,the battery last for about an
hour.

So we definitely need power saving features like PSM(I hope I used the
right acronym,I'm looking for the system which makes the access point
buffer frames for the phone and then we request the frames,other power
saving mode are also welcome but as I understood this one is the most
important)

Grepping for psm in the driver show that there is some sort of support
for PSM.

Unfortunately the following method of activation failed:

# ./iw dev wlan0 set power_save on
command failed: Operation not supported (-95)


# iwconfig wlan0 power period 2 
Error for wireless request "Set Power Management" (8B2C) :
    invalid argument "2".

and I didn't find a psm sys node.

I wonder where it has been disabled,and if I can re-enable it.

I was also told that most driver have psm disabled,I don't know the
reason tough(maybe performance,as it has a serious impact on
performance)

our (bad quality)kenrel tree can be found here(we're not yet kernel
hackers):
http://gitorious.org/htc-msm-2-6-32/leviathan-incoming/commits/msm-gnuconform

Denis


^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Pedro Francisco @ 2010-04-25 21:24 UTC (permalink / raw)
  To: Jiri Slaby
  Cc: me, Vegard Nossum, John W. Linville, linux-kernel, linux-wireless,
	mickflemm
In-Reply-To: <4BD4A639.8000703@gmail.com>

A Domingo, 25 de Abril de 2010 21:29:45 Jiri Slaby escreveu:
> On 04/25/2010 09:22 PM, me@bobcopeland.com wrote:
> > On Sat, Apr 24, 2010 at 06:28:36PM +0100, Pedro Francisco wrote:
> >> ========================================================================
> >> ===== [ 2658.663424] BUG kmalloc-4096: Poison overwritten
> >> [ 2658.663483]
> > 
> > Ok there are 4 messages here, two of them are definitely 802.11 beacons,
> > which would point the finger squarely at ath5k.  We had reports of this
> > some time ago but a few things got rewritten around that time.  I'd guess
> > the rx DMA code is still subtly broken.
> > 
> >> 6b 6b kkkkkkkkkkkkkkkk
> >> [ 2658.664816]   Object 0xed3db0c0:  c4 00 84 00 00 22 43 89 42 69 4e 12
> >> ca 6f 6f 6f �...."C.BiN.�ooo
> >> [ 4689.945547]   Object 0xed3d9080:  c4 00 70 00 00 22 43 89 42 69 fe 08
> >> eb 14 14 14 �.p.."C.Bi�.�...
> > 
> > Offhand, I'm not sure what pattern these are.
> 
> These are CTS frames. So I think ath5k is to blame too :/.
> 
> regards,

Do note that's on a 2.6.32 kernel. I've however a new dmesg/syslog which on a 
2.6.34-rc5-daily has the same kind of issues. It's 400kB in size..... Do you 
want me to send it to the mailing list?

Or should I open a bug report on the kernel bugzilla and post them there? Or 
do both?

-- 
Pedro

^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Jiri Slaby @ 2010-04-25 20:29 UTC (permalink / raw)
  To: me
  Cc: Pedro Francisco, Vegard Nossum, John W. Linville, linux-kernel,
	linux-wireless, mickflemm
In-Reply-To: <20100425192242.GA27921@hash.localnet>

On 04/25/2010 09:22 PM, me@bobcopeland.com wrote:
> On Sat, Apr 24, 2010 at 06:28:36PM +0100, Pedro Francisco wrote:
>> =============================================================================
>> [ 2658.663424] BUG kmalloc-4096: Poison overwritten
>> [ 2658.663483] 
> 
> Ok there are 4 messages here, two of them are definitely 802.11 beacons,
> which would point the finger squarely at ath5k.  We had reports of this
> some time ago but a few things got rewritten around that time.  I'd guess
> the rx DMA code is still subtly broken. 
> 
>> 6b 6b kkkkkkkkkkkkkkkk
>> [ 2658.664816]   Object 0xed3db0c0:  c4 00 84 00 00 22 43 89 42 69 4e 12 ca 6f 
>> 6f 6f �...."C.BiN.�ooo
>> [ 4689.945547]   Object 0xed3d9080:  c4 00 70 00 00 22 43 89 42 69 fe 08 eb 14 
>> 14 14 �.p.."C.Bi�.�...
> 
> Offhand, I'm not sure what pattern these are.

These are CTS frames. So I think ath5k is to blame too :/.

regards,
-- 
js

^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Larry Finger @ 2010-04-25 20:11 UTC (permalink / raw)
  To: Philippe De Muyter; +Cc: Matthew Garrett, Dan Williams, linux-wireless
In-Reply-To: <20100425195058.GA12916@frolo.macqel>

On 04/25/2010 02:50 PM, Philippe De Muyter wrote:
> Hello Matthew,
> 
> On Sat, Apr 24, 2010 at 09:02:18PM +0100, Matthew Garrett wrote:
>> On Sat, Apr 24, 2010 at 09:56:30PM +0200, Philippe De Muyter wrote:
>>> On Sat, Apr 24, 2010 at 04:21:07PM +0100, Matthew Garrett wrote:
>>>> Does this laptop also have bluetooth?
>>>
>>> No
>>
>> Hm. I have no idea why hitting the key doesn't change the colour then, 
>> I'm afraid. On the other hand, it sounds like things are working now? 
>> The only thing I can suggest is attempting to clear the CMOS data in the 
>> BIOS menu and see if that changes things.
> 
> Just some more info :
> 
> when I power-on this laptop, the wifi led is red.  The wifi led stays
> red while in the bios and in grub and during the very start of linux boot.
> It becomes blue simultaneously with the displaying of the following message :
> 
> 	ACPI: Core revision 20100121

This makes it clear that b43 is not controlling that LED as the change
to blue on my system only occurs after the interface comes up under the
control of ifup or NetworkManager.

Larry

^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Philippe De Muyter @ 2010-04-25 19:50 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: Dan Williams, Larry Finger, linux-wireless
In-Reply-To: <20100424200218.GA16084@srcf.ucam.org>

Hello Matthew,

On Sat, Apr 24, 2010 at 09:02:18PM +0100, Matthew Garrett wrote:
> On Sat, Apr 24, 2010 at 09:56:30PM +0200, Philippe De Muyter wrote:
> > On Sat, Apr 24, 2010 at 04:21:07PM +0100, Matthew Garrett wrote:
> > > Does this laptop also have bluetooth?
> > 
> > No
> 
> Hm. I have no idea why hitting the key doesn't change the colour then, 
> I'm afraid. On the other hand, it sounds like things are working now? 
> The only thing I can suggest is attempting to clear the CMOS data in the 
> BIOS menu and see if that changes things.

Just some more info :

when I power-on this laptop, the wifi led is red.  The wifi led stays
red while in the bios and in grub and during the very start of linux boot.
It becomes blue simultaneously with the displaying of the following message :

	ACPI: Core revision 20100121

(I started 2.6.34-rc5 with boot_delay=1000 to be sure)

When I touch the wifi led, sometimes I can see it flash red and directly
return to blue, but often I do not see this flash : the led simply remains
blue.

What's the use of having a soft blocking system when one also has a 'hard'
blocking system ?  (and actually sometimes there is also a third one,
because NetworkManager has wirelessEnabled=false in his state file)

Just for completeness about bluetooth, you'll find below the output of
lspci -vnn.

Philippe

00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub [8086:2a40] (rev 07)
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0
	Capabilities: [e0] Vendor Specific Information: Len=0a <?>

00:01.0 PCI bridge [0604]: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port [8086:2a41] (rev 07) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
	I/O behind bridge: 00007000-00007fff
	Memory behind bridge: da000000-da0fffff
	Prefetchable memory behind bridge: 00000000c0000000-00000000cfffffff
	Capabilities: [88] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [80] Power Management version 3
	Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [a0] Express Root Port (Slot+), MSI 00
	Capabilities: [100] Virtual Channel
	Capabilities: [140] Root Complex Link
	Kernel driver in use: pcieport

00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 [8086:2937] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 16
	I/O ports at 80e0 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 [8086:2938] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 21
	I/O ports at 80c0 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 [8086:293c] (rev 03) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 19
	Memory at da105c00 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
	Kernel driver in use: ehci_hcd

00:1b.0 Audio device [0403]: Intel Corporation 82801I (ICH9 Family) HD Audio Controller [8086:293e] (rev 03)
	Subsystem: Hewlett-Packard Company dv6-1190en [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 32
	Memory at da100000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 2
	Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
	Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
	Capabilities: [100] Virtual Channel
	Capabilities: [130] Root Complex Link
	Kernel driver in use: HDA Intel

00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 [8086:2940] (rev 03) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	I/O behind bridge: 00006000-00006fff
	Memory behind bridge: d9000000-d9ffffff
	Prefetchable memory behind bridge: 00000000d0000000-00000000d0ffffff
	Capabilities: [40] Express Root Port (Slot+), MSI 00
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [a0] Power Management version 2
	Capabilities: [100] Virtual Channel
	Capabilities: [180] Root Complex Link
	Kernel driver in use: pcieport

00:1c.1 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 [8086:2942] (rev 03) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	I/O behind bridge: 00005000-00005fff
	Memory behind bridge: d8000000-d8ffffff
	Prefetchable memory behind bridge: 00000000d1000000-00000000d1ffffff
	Capabilities: [40] Express Root Port (Slot+), MSI 00
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [a0] Power Management version 2
	Capabilities: [100] Virtual Channel
	Capabilities: [180] Root Complex Link
	Kernel driver in use: pcieport

00:1c.3 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 [8086:2946] (rev 03) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
	I/O behind bridge: 00004000-00004fff
	Memory behind bridge: d7000000-d7ffffff
	Prefetchable memory behind bridge: 00000000d2000000-00000000d2ffffff
	Capabilities: [40] Express Root Port (Slot+), MSI 00
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [a0] Power Management version 2
	Capabilities: [100] Virtual Channel
	Capabilities: [180] Root Complex Link
	Kernel driver in use: pcieport

00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 [8086:2948] (rev 03) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
	I/O behind bridge: 00003000-00003fff
	Memory behind bridge: d6000000-d6ffffff
	Prefetchable memory behind bridge: 00000000d3000000-00000000d3ffffff
	Capabilities: [40] Express Root Port (Slot+), MSI 00
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [a0] Power Management version 2
	Capabilities: [100] Virtual Channel
	Capabilities: [180] Root Complex Link
	Kernel driver in use: pcieport

00:1c.5 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 6 [8086:294a] (rev 03) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=07, subordinate=09, sec-latency=0
	I/O behind bridge: 00002000-00002fff
	Memory behind bridge: d5000000-d5ffffff
	Prefetchable memory behind bridge: 00000000d4000000-00000000d4ffffff
	Capabilities: [40] Express Root Port (Slot+), MSI 00
	Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
	Capabilities: [90] Subsystem: Hewlett-Packard Company Device [103c:3628]
	Capabilities: [a0] Power Management version 2
	Capabilities: [100] Virtual Channel
	Capabilities: [180] Root Complex Link
	Kernel driver in use: pcieport

00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 [8086:2934] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 20
	I/O ports at 80a0 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 [8086:2935] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 19
	I/O ports at 8080 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 [8086:2936] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 16
	I/O ports at 8060 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1d.3 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 [8086:2939] (rev 03) (prog-if 00 [UHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 18
	I/O ports at 8040 [size=32]
	Capabilities: [50] PCI Advanced Features
	Kernel driver in use: uhci_hcd

00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 [8086:293a] (rev 03) (prog-if 20 [EHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0, IRQ 20
	Memory at da105800 (32-bit, non-prefetchable) [size=1K]
	Capabilities: [50] Power Management version 2
	Capabilities: [58] Debug port: BAR=1 offset=00a0
	Capabilities: [98] PCI Advanced Features
	Kernel driver in use: ehci_hcd

00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev 93) (prog-if 01 [Subtractive decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=0a, subordinate=0a, sec-latency=32
	Capabilities: [50] Subsystem: Hewlett-Packard Company Device [103c:3628]

00:1f.0 ISA bridge [0601]: Intel Corporation ICH9M LPC Interface Controller [8086:2919] (rev 03)
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, medium devsel, latency 0
	Capabilities: [e0] Vendor Specific Information: Len=0c <?>

00:1f.2 SATA controller [0106]: Intel Corporation ICH9M/M-E SATA AHCI Controller [8086:2929] (rev 03) (prog-if 01 [AHCI 1.0])
	Subsystem: Hewlett-Packard Company dv6-1190en [103c:3628]
	Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 31
	I/O ports at 8108 [size=8]
	I/O ports at 8114 [size=4]
	I/O ports at 8100 [size=8]
	I/O ports at 8110 [size=4]
	I/O ports at 8020 [size=32]
	Memory at da105000 (32-bit, non-prefetchable) [size=2K]
	Capabilities: [80] MSI: Enable+ Count=1/16 Maskable- 64bit-
	Capabilities: [70] Power Management version 3
	Capabilities: [a8] SATA HBA v1.0
	Capabilities: [b0] PCI Advanced Features
	Kernel driver in use: ahci

00:1f.3 SMBus [0c05]: Intel Corporation 82801I (ICH9 Family) SMBus Controller [8086:2930] (rev 03)
	Subsystem: Hewlett-Packard Company dv6-1190en [103c:3628]
	Flags: medium devsel, IRQ 18
	Memory at da106000 (64-bit, non-prefetchable) [size=256]
	I/O ports at 8000 [size=32]

00:1f.6 Signal processing controller [1180]: Intel Corporation 82801I (ICH9 Family) Thermal Subsystem [8086:2932] (rev 03)
	Subsystem: Hewlett-Packard Company dv6-1190en [103c:3628]
	Flags: fast devsel, IRQ 11
	Memory at da104000 (64-bit, non-prefetchable) [size=4K]
	Capabilities: [50] Power Management version 3

01:00.0 VGA compatible controller [0300]: ATI Technologies Inc M96 [Mobility Radeon HD 4650] [1002:9480] (prog-if 00 [VGA controller])
	Subsystem: Hewlett-Packard Company ATI Mobility Radeon HD 4650 [dv6-1190en] [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 11
	Memory at c0000000 (32-bit, prefetchable) [size=256M]
	I/O ports at 7000 [size=256]
	Memory at da000000 (32-bit, non-prefetchable) [size=64K]
	Expansion ROM at da020000 [disabled] [size=128K]
	Capabilities: [50] Power Management version 3
	Capabilities: [58] Express Legacy Endpoint, MSI 00
	Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+
	Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>

01:00.1 Audio device [0403]: ATI Technologies Inc RV710/730 [1002:aa38]
	Subsystem: Hewlett-Packard Company ATI RV710/730 [dv6-1190en] [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 33
	Memory at da010000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [50] Power Management version 3
	Capabilities: [58] Express Legacy Endpoint, MSI 00
	Capabilities: [a0] MSI: Enable+ Count=1/1 Maskable- 64bit+
	Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 <?>
	Kernel driver in use: HDA Intel

02:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g LP-PHY [14e4:4315] (rev 01)
	Subsystem: Hewlett-Packard Company Device [103c:1508]
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at d9000000 (64-bit, non-prefetchable) [size=16K]
	Capabilities: [40] Power Management version 3
	Capabilities: [58] Vendor Specific Information: Len=78 <?>
	Capabilities: [e8] MSI: Enable- Count=1/1 Maskable- 64bit+
	Capabilities: [d0] Express Endpoint, MSI 00
	Capabilities: [100] Advanced Error Reporting
	Capabilities: [13c] Virtual Channel
	Capabilities: [160] Device Serial Number 00-00-00-ff-ff-00-ff-ff
	Capabilities: [16c] Power Budgeting <?>
	Kernel driver in use: b43-pci-bridge

03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 02)
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 30
	I/O ports at 5000 [size=256]
	Memory at d1010000 (64-bit, prefetchable) [size=4K]
	Memory at d1000000 (64-bit, prefetchable) [size=64K]
	Expansion ROM at d1020000 [disabled] [size=64K]
	Capabilities: [40] Power Management version 3
	Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
	Capabilities: [70] Express Endpoint, MSI 01
	Capabilities: [b0] MSI-X: Enable- Count=2 Masked-
	Capabilities: [d0] Vital Product Data
	Capabilities: [100] Advanced Error Reporting
	Capabilities: [140] Virtual Channel
	Capabilities: [160] Device Serial Number 00-00-00-00-00-00-00-00
	Kernel driver in use: r8169

06:00.0 FireWire (IEEE 1394) [0c00]: JMicron Technology Corp. IEEE 1394 Host Controller [197b:2380] (prog-if 10 [OHCI])
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at d6000000 (32-bit, non-prefetchable) [size=2K]
	Memory at d6000d00 (32-bit, non-prefetchable) [size=128]
	Memory at d6000c80 (32-bit, non-prefetchable) [size=128]
	Memory at d6000c00 (32-bit, non-prefetchable) [size=128]
	Capabilities: [44] Power Management version 3
	Capabilities: [80] Express Endpoint, MSI 00
	Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
	Kernel driver in use: ohci1394

06:00.1 System peripheral [0880]: JMicron Technology Corp. SD/MMC Host Controller [197b:2382]
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at d6000b00 (32-bit, non-prefetchable) [size=256]
	Capabilities: [a4] Power Management version 3
	Capabilities: [80] Express Endpoint, MSI 00
	Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
	Kernel driver in use: sdhci-pci

06:00.2 SD Host controller [0805]: JMicron Technology Corp. Standard SD Host Controller [197b:2381] (prog-if 01)
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: fast devsel, IRQ 16
	Memory at d6000a00 (32-bit, non-prefetchable) [size=256]
	Capabilities: [a4] Power Management version 3
	Capabilities: [80] Express Endpoint, MSI 00
	Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-

06:00.3 System peripheral [0880]: JMicron Technology Corp. MS Host Controller [197b:2383]
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at d6000900 (32-bit, non-prefetchable) [size=256]
	Capabilities: [a4] Power Management version 3
	Capabilities: [80] Express Endpoint, MSI 00
	Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
	Kernel driver in use: jmb38x_ms

06:00.4 System peripheral [0880]: JMicron Technology Corp. xD Host Controller [197b:2384]
	Subsystem: Hewlett-Packard Company Device [103c:3628]
	Flags: bus master, fast devsel, latency 0, IRQ 11
	Memory at d6000800 (32-bit, non-prefetchable) [size=256]
	Capabilities: [a4] Power Management version 3
	Capabilities: [80] Express Endpoint, MSI 00
	Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-


^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: me @ 2010-04-25 19:22 UTC (permalink / raw)
  To: Pedro Francisco
  Cc: Vegard Nossum, John W. Linville, linux-kernel, linux-wireless,
	mickflemm
In-Reply-To: <201004241828.37489.pedrogfrancisco@gmail.com>

On Sat, Apr 24, 2010 at 06:28:36PM +0100, Pedro Francisco wrote:
> =============================================================================
> [ 2658.663424] BUG kmalloc-4096: Poison overwritten
> [ 2658.663483] 

Ok there are 4 messages here, two of them are definitely 802.11 beacons,
which would point the finger squarely at ath5k.  We had reports of this
some time ago but a few things got rewritten around that time.  I'd guess
the rx DMA code is still subtly broken. 

> 6b 6b kkkkkkkkkkkkkkkk
> [ 2658.664816]   Object 0xed3db0c0:  c4 00 84 00 00 22 43 89 42 69 4e 12 ca 6f 
> 6f 6f �...."C.BiN.�ooo
> [ 4689.945547]   Object 0xed3d9080:  c4 00 70 00 00 22 43 89 42 69 fe 08 eb 14 
> 14 14 �.p.."C.Bi�.�...

Offhand, I'm not sure what pattern these are.

> [14487.165341]   Object 0xed378040:  80 00 00 00 ff ff ff ff ff ff 00 1e 8c 0f 3e af 
> [24370.460011]   Object 0xed3dc100:  80 00 00 00 ff ff ff ff ff ff 00 1e 8c 0f 3e af 

These two are definitely beacons.

-- 
Bob Copeland %% www.bobcopeland.com


^ permalink raw reply

* [WIP] p54pci: fix resume p54 cardbus
From: Christian Lamparter @ 2010-04-25 13:25 UTC (permalink / raw)
  To: linux-wireless; +Cc: hdegoede

This patch tries to fix the resume freeze, which is described in
https://bugzilla.redhat.com/show_bug.cgi?id=583623

Unlike (normal) PCI cards, cardbus cards are easily removable.
Therefore, the user might replace/remove the card while
the system is suspended. The pcmcia subsystem takes special
precautions to deal with such cases and un- and rebinds
all devices on the pci-bridge during the resume process.

But here's the catch: p54pci uses request_firmware
which blocks until the filesystem is available.
This deadlocks, because the filesystem won't
be initialized until all pci devices are ready again.
---
highly experimental and possibly unstable
---
diff --git a/drivers/net/wireless/p54/main.c b/drivers/net/wireless/p54/main.c
index 7bbd9d3..810197c 100644
--- a/drivers/net/wireless/p54/main.c
+++ b/drivers/net/wireless/p54/main.c
@@ -603,6 +603,8 @@ int p54_register_common(struct ieee80211_hw *dev, struct device *pdev)
 		return err;
 	}
 
+	priv->registered = true;
+
 #ifdef CONFIG_P54_LEDS
 	err = p54_init_leds(priv);
 	if (err)
@@ -638,6 +640,9 @@ void p54_unregister_common(struct ieee80211_hw *dev)
 {
 	struct p54_common *priv = dev->priv;
 
+	if (!priv->registered)
+		return;
+
 #ifdef CONFIG_P54_LEDS
 	p54_unregister_leds(priv);
 #endif /* CONFIG_P54_LEDS */
diff --git a/drivers/net/wireless/p54/p54.h b/drivers/net/wireless/p54/p54.h
index 43a3b2e..850e6bb 100644
--- a/drivers/net/wireless/p54/p54.h
+++ b/drivers/net/wireless/p54/p54.h
@@ -172,6 +172,7 @@ struct p54_common {
 	struct sk_buff_head tx_pending;
 	struct sk_buff_head tx_queue;
 	struct mutex conf_mutex;
+	bool registered;
 
 	/* memory management (as seen by the firmware) */
 	u32 rx_start;
diff --git a/drivers/net/wireless/p54/p54pci.c b/drivers/net/wireless/p54/p54pci.c
index c916e46..353085d 100644
--- a/drivers/net/wireless/p54/p54pci.c
+++ b/drivers/net/wireless/p54/p54pci.c
@@ -50,7 +50,6 @@ static int p54p_upload_firmware(struct ieee80211_hw *dev)
 {
 	struct p54p_priv *priv = dev->priv;
 	__le32 reg;
-	int err;
 	__le32 *data;
 	u32 remains, left, device_addr;
 
@@ -75,11 +74,7 @@ static int p54p_upload_firmware(struct ieee80211_hw *dev)
 	wmb();
 
 	/* wait for the firmware to reset properly */
-	mdelay(10);
-
-	err = p54_parse_firmware(dev, priv->firmware);
-	if (err)
-		return err;
+	mdelay(50);
 
 	if (priv->common.fw_interface != FW_LM86) {
 		dev_err(&priv->pdev->dev, "wrong firmware, "
@@ -360,8 +355,12 @@ static void p54p_stop(struct ieee80211_hw *dev)
 {
 	struct p54p_priv *priv = dev->priv;
 	struct p54p_ring_control *ring_control = priv->ring_control;
-	unsigned int i;
 	struct p54p_desc *desc;
+	unsigned int i;
+
+	mutex_lock(&priv->mutex);
+	if (!priv->started)
+		goto out_unlock;
 
 	P54P_WRITE(int_enable, cpu_to_le32(0));
 	P54P_READ(int_enable);
@@ -420,6 +419,10 @@ static void p54p_stop(struct ieee80211_hw *dev)
 	}
 
 	memset(ring_control, 0, sizeof(*ring_control));
+	priv->started = false;
+
+out_unlock:
+	mutex_unlock(&priv->mutex);
 }
 
 static int p54p_open(struct ieee80211_hw *dev)
@@ -427,19 +430,25 @@ static int p54p_open(struct ieee80211_hw *dev)
 	struct p54p_priv *priv = dev->priv;
 	int err;
 
+	mutex_lock(&priv->mutex);
+	if (WARN_ON(priv->started)) {
+		err = -EBUSY;
+		goto out_unlock;
+	}
+
 	init_completion(&priv->boot_comp);
 	err = request_irq(priv->pdev->irq, p54p_interrupt,
 			  IRQF_SHARED, "p54pci", dev);
 	if (err) {
 		dev_err(&priv->pdev->dev, "failed to register IRQ handler\n");
-		return err;
+		goto out_unlock;
 	}
 
 	memset(priv->ring_control, 0, sizeof(*priv->ring_control));
 	err = p54p_upload_firmware(dev);
 	if (err) {
 		free_irq(priv->pdev->irq, dev);
-		return err;
+		goto out_unlock;
 	}
 	priv->rx_idx_data = priv->tx_idx_data = 0;
 	priv->rx_idx_mgmt = priv->tx_idx_mgmt = 0;
@@ -464,10 +473,10 @@ static int p54p_open(struct ieee80211_hw *dev)
 	P54P_READ(dev_int);
 
 	if (!wait_for_completion_interruptible_timeout(&priv->boot_comp, HZ)) {
-		printk(KERN_ERR "%s: Cannot boot firmware!\n",
-		       wiphy_name(dev->wiphy));
+		dev_err(&priv->pdev->dev, "Cannot boot firmware!");
 		p54p_stop(dev);
-		return -ETIMEDOUT;
+		err = -ETIMEDOUT;
+		goto out_unlock;
 	}
 
 	P54P_WRITE(int_enable, cpu_to_le32(ISL38XX_INT_IDENT_UPDATE));
@@ -480,7 +489,78 @@ static int p54p_open(struct ieee80211_hw *dev)
 	wmb();
 	udelay(10);
 
-	return 0;
+	priv->started = true;
+
+out_unlock:
+	mutex_unlock(&priv->mutex);
+	return err;
+}
+
+const static char *p54p_fws[] = { "isl3886pci", "isl3886" };
+
+static void p54p_fw_callback(const struct firmware *fw, void *context);
+static int p54p_request_fw(struct p54p_priv *priv)
+{
+
+	if (ARRAY_SIZE(p54p_fws) <= priv->fw_idx)
+		return -ENOENT;
+
+	return request_firmware_nowait(THIS_MODULE, 1, p54p_fws[priv->fw_idx],
+				       &priv->pdev->dev, GFP_KERNEL, priv,
+				       p54p_fw_callback);
+}
+
+static void p54p_fw_callback(const struct firmware *fw, void *context)
+{
+	struct p54p_priv *priv = context;
+	struct ieee80211_hw *dev = pci_get_drvdata(priv->pdev);
+	int err;
+
+	if (!fw) {
+		dev_err(&priv->pdev->dev, "Cannot find firmware (\"%s\")",
+			p54p_fws[priv->fw_idx]);
+		priv->fw_idx++;
+
+		err = p54p_request_fw(priv);
+		if (err)
+			goto err_out;
+
+		return;
+	}
+
+	priv->firmware = fw;
+
+	err = p54_parse_firmware(dev, priv->firmware);
+	if (err) {
+		dev_err(&priv->pdev->dev, "Failed to parse firmware");
+		goto err_out;
+	}
+
+	err = p54p_open(dev);
+	if (err)
+		goto err_out;
+	err = p54_read_eeprom(dev);
+	p54p_stop(dev);
+	if (err)
+		goto err_out;
+
+	err = p54_register_common(dev, &priv->pdev->dev);
+	if (err)
+		goto err_out;
+
+	return;
+
+err_out:
+	device_release_driver(&priv->pdev->dev);
+}
+
+static void p54p_init_dev(struct pci_dev *pdev)
+{
+	pci_set_master(pdev);
+	pci_try_set_mwi(pdev);
+
+	pci_write_config_byte(pdev, 0x40, 0);
+	pci_write_config_byte(pdev, 0x41, 0);
 }
 
 static int __devinit p54p_probe(struct pci_dev *pdev,
@@ -518,11 +598,7 @@ static int __devinit p54p_probe(struct pci_dev *pdev,
 		goto err_free_reg;
 	}
 
-	pci_set_master(pdev);
-	pci_try_set_mwi(pdev);
-
-	pci_write_config_byte(pdev, 0x40, 0);
-	pci_write_config_byte(pdev, 0x41, 0);
+	p54p_init_dev(pdev);
 
 	dev = p54_init_common(sizeof(*priv));
 	if (!dev) {
@@ -556,34 +632,16 @@ static int __devinit p54p_probe(struct pci_dev *pdev,
 	priv->common.tx = p54p_tx;
 
 	spin_lock_init(&priv->lock);
+	mutex_init(&priv->mutex);
 	tasklet_init(&priv->tasklet, p54p_tasklet, (unsigned long)dev);
 
-	err = request_firmware(&priv->firmware, "isl3886pci",
-			       &priv->pdev->dev);
-	if (err) {
-		dev_err(&pdev->dev, "Cannot find firmware (isl3886pci)\n");
-		err = request_firmware(&priv->firmware, "isl3886",
-				       &priv->pdev->dev);
-		if (err)
-			goto err_free_common;
-	}
-
-	err = p54p_open(dev);
-	if (err)
-		goto err_free_common;
-	err = p54_read_eeprom(dev);
-	p54p_stop(dev);
-	if (err)
-		goto err_free_common;
-
-	err = p54_register_common(dev, &pdev->dev);
+	err = p54p_request_fw(priv);
 	if (err)
 		goto err_free_common;
 
 	return 0;
 
  err_free_common:
-	release_firmware(priv->firmware);
 	pci_free_consistent(pdev, sizeof(*priv->ring_control),
 			    priv->ring_control, priv->ring_control_dma);
 
@@ -611,6 +669,8 @@ static void __devexit p54p_remove(struct pci_dev *pdev)
 
 	p54_unregister_common(dev);
 	priv = dev->priv;
+	p54p_stop(dev);
+	mutex_destroy(&priv->mutex);
 	release_firmware(priv->firmware);
 	pci_free_consistent(pdev, sizeof(*priv->ring_control),
 			    priv->ring_control, priv->ring_control_dma);
@@ -624,32 +684,48 @@ static void __devexit p54p_remove(struct pci_dev *pdev)
 static int p54p_suspend(struct pci_dev *pdev, pm_message_t state)
 {
 	struct ieee80211_hw *dev = pci_get_drvdata(pdev);
-	struct p54p_priv *priv = dev->priv;
-
-	if (priv->common.mode != NL80211_IFTYPE_UNSPECIFIED) {
-		ieee80211_stop_queues(dev);
-		p54p_stop(dev);
-	}
 
+	p54p_stop(dev);
 	pci_save_state(pdev);
-	pci_set_power_state(pdev, pci_choose_state(pdev, state));
-	return 0;
+	pci_disable_device(pdev);
+	return pci_set_power_state(pdev, pci_choose_state(pdev, state));
 }
 
 static int p54p_resume(struct pci_dev *pdev)
 {
 	struct ieee80211_hw *dev = pci_get_drvdata(pdev);
 	struct p54p_priv *priv = dev->priv;
+	int err;
+
+	err = pci_set_power_state(pdev, PCI_D0);
+	if (err) {
+		dev_err(&pdev->dev, "failed to power-up device");
+		return err;
+	}
 
-	pci_set_power_state(pdev, PCI_D0);
-	pci_restore_state(pdev);
+	err = pci_enable_device(pdev);
+	if (err) {
+		dev_err(&pdev->dev, "failed to reenable device");
+		return err;
+	}
+
+	err = pci_restore_state(pdev);
+	if (err) {
+		dev_err(&pdev->dev, "failed to restore device state");
+		return err;
+	}
+
+	p54p_init_dev(pdev);
 
 	if (priv->common.mode != NL80211_IFTYPE_UNSPECIFIED) {
-		p54p_open(dev);
-		ieee80211_wake_queues(dev);
+		err = p54p_open(dev);
+		if (err) {
+			dev_err(&pdev->dev, "failed to bring up link");
+			return err;
+		}
 	}
 
-	return 0;
+	return err;
 }
 #endif /* CONFIG_PM */
 
diff --git a/drivers/net/wireless/p54/p54pci.h b/drivers/net/wireless/p54/p54pci.h
index 9fd822f..d4a9bdc 100644
--- a/drivers/net/wireless/p54/p54pci.h
+++ b/drivers/net/wireless/p54/p54pci.h
@@ -95,7 +95,10 @@ struct p54p_priv {
 	struct pci_dev *pdev;
 	struct p54p_csr __iomem *map;
 	struct tasklet_struct tasklet;
+	unsigned int fw_idx;
 	const struct firmware *firmware;
+	bool started;
+	struct mutex mutex;
 	spinlock_t lock;
 	struct p54p_ring_control *ring_control;
 	dma_addr_t ring_control_dma;

^ permalink raw reply related

* Re: update compat drivers,adpter can not be work,4 help.tks
From: SECO @ 2010-04-25  8:42 UTC (permalink / raw)
  To: Gábor Stefanik; +Cc: linux-wireless
In-Reply-To: <u2p69e28c911004230108pd2452f2fga186ee2155c9e36c@mail.gmail.com>

tks Sir

what's matter with update compat-wireless under bt4?

--seco


00000-9FFFF write-back
  A0000-BFFFF uncachable
  C0000-CBFFF write-protect
  CC000-EFFFF uncachable
  F0000-FFFFF write-protect
MTRR variable ranges enabled:
  0 base 0000000000 mask FFE0000000 write-back
  1 disabled
  2 disabled
  3 disabled
  4 disabled
  5 disabled
  6 disabled
  7 disabled
x86 PAT enabled: cpu 0, old 0x0, new 0x7010600070106
init_memory_mapping: 0000000000000000-0000000020000000
 0000000000 - 0000400000 page 4k
 0000400000 - 0020000000 page 2M
kernel direct mapping tables up to 20000000 @ 10000-14000
RAMDISK: 1f9ef000 - 1fedf950
ACPI: RSDP 000f6940 00024 (v02 PTLTD )
ACPI: XSDT 1fef0885 0004C (v01 INTEL  440BX    06040000 VMW  01324272)
ACPI: FACP 1fefee98 000F4 (v04 INTEL  440BX    06040000 PTL  000F4240)
ACPI: DSDT 1fef0a3d 0E45B (v01 PTLTD  Custom   06040000 MSFT 03000001)
ACPI: FACS 1fefffc0 00040
ACPI: BOOT 1fef0a15 00028 (v01 PTLTD  $SBFTBL$ 06040000  LTP 00000001)
ACPI: APIC 1fef09c5 00050 (v01 PTLTD     APIC   06040000  LTP 00000000)
ACPI: MCFG 1fef0989 0003C (v01 PTLTD  $PCITBL$ 06040000  LTP 00000001)
ACPI: SRAT 1fef0909 00080 (v02 VMWARE MEMPLUG  06040000 VMW  00000001)
ACPI: Local APIC address 0xfee00000
0MB HIGHMEM available.
512MB LOWMEM available.
  mapped low ram: 0 - 20000000
  low ram: 0 - 20000000
  node 0 low ram: 00000000 - 20000000
  node 0 bootmap 00010000 - 00014000
(8 early reservations) ==> bootmem [0000000000 - 0020000000]
  #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
  #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
  #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
  #3 [0000100000 - 00009e4374]    TEXT DATA BSS ==> [0000100000 - 00009e4374]
  #4 [001f9ef000 - 001fedf950]          RAMDISK ==> [001f9ef000 - 001fedf950]
  #5 [000009f800 - 0000100000]    BIOS reserved ==> [000009f800 - 0000100000]
  #6 [00009e5000 - 00009e81c0]              BRK ==> [00009e5000 - 00009e81c0]
  #7 [0000010000 - 0000014000]          BOOTMAP ==> [0000010000 - 0000014000]
found SMP MP-table at [c00f69b0] f69b0
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  Normal   0x00001000 -> 0x00020000
  HighMem  0x00020000 -> 0x00020000
Movable zone start PFN for each node
early_node_map[3] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0001fef0
    0: 0x0001ff00 -> 0x00020000
On node 0 totalpages: 130943
free_area_init_node: node 0, pgdat c08e7b40, node_mem_map c1000200
  DMA zone: 32 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 3951 pages, LIFO batch:0
  Normal zone: 992 pages used for memmap
  Normal zone: 125968 pages, LIFO batch:31
Using APIC driver default
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Enabling APIC mode:  Flat.  Using 1 I/O APICs
Using ACPI (MADT) for SMP configuration information
SMP: Allowing 1 CPUs, 0 hotplug CPUs
nr_irqs_gsi: 24
PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000dc000
PM: Registered nosave memory: 00000000000dc000 - 00000000000e4000
PM: Registered nosave memory: 00000000000e4000 - 00000000000e8000
PM: Registered nosave memory: 00000000000e8000 - 0000000000100000
PM: Registered nosave memory: 000000001fef0000 - 000000001feff000
PM: Registered nosave memory: 000000001feff000 - 000000001ff00000
Allocating PCI resources starting at 30000000 (gap: 20000000:c0000000)
NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
PERCPU: Embedded 11 pages at c1402000, static data 23068 bytes
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129919
Kernel command line: root=UUID=f996e2eb-094e-46ef-93c6-8a9b3aa71aaa ro
quiet splash
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Initializing CPU#0
NR_IRQS:512
PID hash table entries: 2048 (order: 11, 8192 bytes)
Extended CMOS year: 2000
TSC: Frequency read from the hypervisor
Detected 2800.099 MHz processor.
Console: colour VGA+ 80x25
console [tty0] enabled
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Initializing HighMem for node 0 (00000000:00000000)
Memory: 504580k/524288k available (6103k kernel code, 18816k reserved,
2103k data, 432k init, 0k highmem)
virtual kernel memory layout:
    fixmap  : 0xfff4f000 - 0xfffff000   ( 704 kB)
    pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000   ( 495 MB)
    lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
      .init : 0xc090d000 - 0xc0979000   ( 432 kB)
      .data : 0xc06f5dad - 0xc0903a44   (2103 kB)
      .text : 0xc0100000 - 0xc06f5dad   (6103 kB)
Checking if this processor honours the WP bit even in supervisor mode...Ok.
SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Calibrating delay loop (skipped), value calculated using timer
frequency.. 5602.53 BogoMIPS (lpj=9333663)
Security Framework initialized
Mount-cache hash table entries: 512
CPU: Physical Processor ID: 0
CPU: L1 I cache: 32K, L1 D cache: 32K
CPU: L2 cache: 3072K
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
Checking 'hlt' instruction... OK.
SMP alternatives: switching to UP code
Freeing SMP alternatives: 24k freed
ACPI: Core revision 20090320
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: Intel(R) Core(TM)2 Duo CPU     E7400  @ 2.80GHz stepping 0a
Brought up 1 CPUs
Total of 1 processors activated (5602.53 BogoMIPS).
net_namespace: 980 bytes
xor: automatically using best checksumming function: pIII_sse
   pIII_sse  :  9027.600 MB/sec
xor: using function: pIII_sse (9027.600 MB/sec)
NET: Registered protocol family 16
ACPI: bus type pci registered
PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
PCI: MCFG area at e0000000 reserved in E820
PCI: Using MMCONFIG for extended config space
PCI: Using configuration type 1 for base access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: BIOS _OSI(Linux) query ignored
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S4 S5)
ACPI: Using IOAPIC for interrupt routing
ACPI: No dock devices found.
ACPI: PCI Root Bridge [PCI0] (0000:00)
pci 0000:00:07.1: reg 20 io port: [0x10c0-0x10cf]
pci 0000:00:07.3: quirk: region 1000-103f claimed by PIIX4 ACPI
pci 0000:00:07.3: quirk: region 1040-104f claimed by PIIX4 SMB
pci 0000:00:07.7: reg 10 io port: [0x1080-0x10bf]
pci 0000:00:0f.0: reg 10 io port: [0x10d0-0x10df]
pci 0000:00:0f.0: reg 14 32bit mmio: [0xd0000000-0xd7ffffff]
pci 0000:00:0f.0: reg 18 32bit mmio: [0xd8000000-0xd87fffff]
pci 0000:00:0f.0: reg 30 32bit mmio: [0x000000-0x007fff]
pci 0000:00:10.0: reg 10 io port: [0x1400-0x14ff]
pci 0000:00:10.0: reg 14 64bit mmio: [0xd8820000-0xd883ffff]
pci 0000:00:10.0: reg 1c 64bit mmio: [0xd8800000-0xd881ffff]
pci 0000:00:10.0: reg 30 32bit mmio: [0x000000-0x003fff]
pci 0000:00:15.0: PME# supported from D0 D3hot D3cold
pci 0000:00:15.0: PME# disabled
pci 0000:00:15.1: PME# supported from D0 D3hot D3cold
pci 0000:00:15.1: PME# disabled
pci 0000:00:15.2: PME# supported from D0 D3hot D3cold
pci 0000:00:15.2: PME# disabled
pci 0000:00:15.3: PME# supported from D0 D3hot D3cold
pci 0000:00:15.3: PME# disabled
pci 0000:00:15.4: PME# supported from D0 D3hot D3cold
pci 0000:00:15.4: PME# disabled
pci 0000:00:15.5: PME# supported from D0 D3hot D3cold
pci 0000:00:15.5: PME# disabled
pci 0000:00:15.6: PME# supported from D0 D3hot D3cold
pci 0000:00:15.6: PME# disabled
pci 0000:00:15.7: PME# supported from D0 D3hot D3cold
pci 0000:00:15.7: PME# disabled
pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
pci 0000:00:16.0: PME# disabled
pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
pci 0000:00:16.1: PME# disabled
pci 0000:00:16.2: PME# supported from D0 D3hot D3cold
pci 0000:00:16.2: PME# disabled
pci 0000:00:16.3: PME# supported from D0 D3hot D3cold
pci 0000:00:16.3: PME# disabled
pci 0000:00:16.4: PME# supported from D0 D3hot D3cold
pci 0000:00:16.4: PME# disabled
pci 0000:00:16.5: PME# supported from D0 D3hot D3cold
pci 0000:00:16.5: PME# disabled
pci 0000:00:16.6: PME# supported from D0 D3hot D3cold
pci 0000:00:16.6: PME# disabled
pci 0000:00:16.7: PME# supported from D0 D3hot D3cold
pci 0000:00:16.7: PME# disabled
pci 0000:00:17.0: PME# supported from D0 D3hot D3cold
pci 0000:00:17.0: PME# disabled
pci 0000:00:17.1: PME# supported from D0 D3hot D3cold
pci 0000:00:17.1: PME# disabled
pci 0000:00:17.2: PME# supported from D0 D3hot D3cold
pci 0000:00:17.2: PME# disabled
pci 0000:00:17.3: PME# supported from D0 D3hot D3cold
pci 0000:00:17.3: PME# disabled
pci 0000:00:17.4: PME# supported from D0 D3hot D3cold
pci 0000:00:17.4: PME# disabled
pci 0000:00:17.5: PME# supported from D0 D3hot D3cold
pci 0000:00:17.5: PME# disabled
pci 0000:00:17.6: PME# supported from D0 D3hot D3cold
pci 0000:00:17.6: PME# disabled
pci 0000:00:17.7: PME# supported from D0 D3hot D3cold
pci 0000:00:17.7: PME# disabled
pci 0000:00:18.0: PME# supported from D0 D3hot D3cold
pci 0000:00:18.0: PME# disabled
pci 0000:00:18.1: PME# supported from D0 D3hot D3cold
pci 0000:00:18.1: PME# disabled
pci 0000:00:18.2: PME# supported from D0 D3hot D3cold
pci 0000:00:18.2: PME# disabled
pci 0000:00:18.3: PME# supported from D0 D3hot D3cold
pci 0000:00:18.3: PME# disabled
pci 0000:00:18.4: PME# supported from D0 D3hot D3cold
pci 0000:00:18.4: PME# disabled
pci 0000:00:18.5: PME# supported from D0 D3hot D3cold
pci 0000:00:18.5: PME# disabled
pci 0000:00:18.6: PME# supported from D0 D3hot D3cold
pci 0000:00:18.6: PME# disabled
pci 0000:00:18.7: PME# supported from D0 D3hot D3cold
pci 0000:00:18.7: PME# disabled
pci 0000:02:00.0: reg 20 io port: [0x20c0-0x20df]
pci 0000:02:01.0: reg 10 io port: [0x2000-0x207f]
pci 0000:02:01.0: reg 30 32bit mmio: [0x000000-0x00ffff]
pci 0000:02:02.0: reg 10 io port: [0x2080-0x20bf]
pci 0000:02:03.0: reg 10 32bit mmio: [0xd8900000-0xd8900fff]
pci 0000:00:11.0: transparent bridge
pci 0000:00:11.0: bridge io port: [0x2000-0x3fff]
pci 0000:00:11.0: bridge 32bit mmio: [0xd8900000-0xd9cfffff]
pci 0000:00:11.0: bridge 64bit mmio pref: [0xdc400000-0xdc9fffff]
pci 0000:00:15.0: bridge io port: [0x4000-0x4fff]
pci 0000:00:15.0: bridge 32bit mmio: [0xd9d00000-0xd9dfffff]
pci 0000:00:15.0: bridge 64bit mmio pref: [0xdca00000-0xdcafffff]
pci 0000:00:15.1: bridge io port: [0x8000-0x8fff]
pci 0000:00:15.1: bridge 32bit mmio: [0xda100000-0xda1fffff]
pci 0000:00:15.1: bridge 64bit mmio pref: [0xdce00000-0xdcefffff]
pci 0000:00:15.2: bridge io port: [0xc000-0xcfff]
pci 0000:00:15.2: bridge 32bit mmio: [0xda500000-0xda5fffff]
pci 0000:00:15.2: bridge 64bit mmio pref: [0xdd200000-0xdd2fffff]
pci 0000:00:15.3: bridge 32bit mmio: [0xda900000-0xda9fffff]
pci 0000:00:15.3: bridge 64bit mmio pref: [0xdd600000-0xdd6fffff]
pci 0000:00:15.4: bridge 32bit mmio: [0xdad00000-0xdadfffff]
pci 0000:00:15.4: bridge 64bit mmio pref: [0xdda00000-0xddafffff]
pci 0000:00:15.5: bridge 32bit mmio: [0xdb100000-0xdb1fffff]
pci 0000:00:15.5: bridge 64bit mmio pref: [0xdde00000-0xddefffff]
pci 0000:00:15.6: bridge 32bit mmio: [0xdb500000-0xdb5fffff]
pci 0000:00:15.6: bridge 64bit mmio pref: [0xde200000-0xde2fffff]
pci 0000:00:15.7: bridge 32bit mmio: [0xdb900000-0xdb9fffff]
pci 0000:00:15.7: bridge 64bit mmio pref: [0xde600000-0xde6fffff]
pci 0000:00:16.0: bridge io port: [0x5000-0x5fff]
pci 0000:00:16.0: bridge 32bit mmio: [0xd9e00000-0xd9efffff]
pci 0000:00:16.0: bridge 64bit mmio pref: [0xdcb00000-0xdcbfffff]
pci 0000:00:16.1: bridge io port: [0x9000-0x9fff]
pci 0000:00:16.1: bridge 32bit mmio: [0xda200000-0xda2fffff]
pci 0000:00:16.1: bridge 64bit mmio pref: [0xdcf00000-0xdcffffff]
pci 0000:00:16.2: bridge io port: [0xd000-0xdfff]
pci 0000:00:16.2: bridge 32bit mmio: [0xda600000-0xda6fffff]
pci 0000:00:16.2: bridge 64bit mmio pref: [0xdd300000-0xdd3fffff]
pci 0000:00:16.3: bridge 32bit mmio: [0xdaa00000-0xdaafffff]
pci 0000:00:16.3: bridge 64bit mmio pref: [0xdd700000-0xdd7fffff]
pci 0000:00:16.4: bridge 32bit mmio: [0xdae00000-0xdaefffff]
pci 0000:00:16.4: bridge 64bit mmio pref: [0xddb00000-0xddbfffff]
pci 0000:00:16.5: bridge 32bit mmio: [0xdb200000-0xdb2fffff]
pci 0000:00:16.5: bridge 64bit mmio pref: [0xddf00000-0xddffffff]
pci 0000:00:16.6: bridge 32bit mmio: [0xdb600000-0xdb6fffff]
pci 0000:00:16.6: bridge 64bit mmio pref: [0xde300000-0xde3fffff]
pci 0000:00:16.7: bridge 32bit mmio: [0xdba00000-0xdbafffff]
pci 0000:00:16.7: bridge 64bit mmio pref: [0xde700000-0xde7fffff]
pci 0000:00:17.0: bridge io port: [0x6000-0x6fff]
pci 0000:00:17.0: bridge 32bit mmio: [0xd9f00000-0xd9ffffff]
pci 0000:00:17.0: bridge 64bit mmio pref: [0xdcc00000-0xdccfffff]
pci 0000:00:17.1: bridge io port: [0xa000-0xafff]
pci 0000:00:17.1: bridge 32bit mmio: [0xda300000-0xda3fffff]
pci 0000:00:17.1: bridge 64bit mmio pref: [0xdd000000-0xdd0fffff]
pci 0000:00:17.2: bridge io port: [0xe000-0xefff]
pci 0000:00:17.2: bridge 32bit mmio: [0xda700000-0xda7fffff]
pci 0000:00:17.2: bridge 64bit mmio pref: [0xdd400000-0xdd4fffff]
pci 0000:00:17.3: bridge 32bit mmio: [0xdab00000-0xdabfffff]
pci 0000:00:17.3: bridge 64bit mmio pref: [0xdd800000-0xdd8fffff]
pci 0000:00:17.4: bridge 32bit mmio: [0xdaf00000-0xdaffffff]
pci 0000:00:17.4: bridge 64bit mmio pref: [0xddc00000-0xddcfffff]
pci 0000:00:17.5: bridge 32bit mmio: [0xdb300000-0xdb3fffff]
pci 0000:00:17.5: bridge 64bit mmio pref: [0xde000000-0xde0fffff]
pci 0000:00:17.6: bridge 32bit mmio: [0xdb700000-0xdb7fffff]
pci 0000:00:17.6: bridge 64bit mmio pref: [0xde400000-0xde4fffff]
pci 0000:00:17.7: bridge 32bit mmio: [0xdbb00000-0xdbbfffff]
pci 0000:00:17.7: bridge 64bit mmio pref: [0xde800000-0xde8fffff]
pci 0000:00:18.0: bridge io port: [0x7000-0x7fff]
pci 0000:00:18.0: bridge 32bit mmio: [0xda000000-0xda0fffff]
pci 0000:00:18.0: bridge 64bit mmio pref: [0xdcd00000-0xdcdfffff]
pci 0000:00:18.1: bridge io port: [0xb000-0xbfff]
pci 0000:00:18.1: bridge 32bit mmio: [0xda400000-0xda4fffff]
pci 0000:00:18.1: bridge 64bit mmio pref: [0xdd100000-0xdd1fffff]
pci 0000:00:18.2: bridge io port: [0xf000-0xffff]
pci 0000:00:18.2: bridge 32bit mmio: [0xda800000-0xda8fffff]
pci 0000:00:18.2: bridge 64bit mmio pref: [0xdd500000-0xdd5fffff]
pci 0000:00:18.3: bridge 32bit mmio: [0xdac00000-0xdacfffff]
pci 0000:00:18.3: bridge 64bit mmio pref: [0xdd900000-0xdd9fffff]
pci 0000:00:18.4: bridge 32bit mmio: [0xdb000000-0xdb0fffff]
pci 0000:00:18.4: bridge 64bit mmio pref: [0xddd00000-0xdddfffff]
pci 0000:00:18.5: bridge 32bit mmio: [0xdb400000-0xdb4fffff]
pci 0000:00:18.5: bridge 64bit mmio pref: [0xde100000-0xde1fffff]
pci 0000:00:18.6: bridge 32bit mmio: [0xdb800000-0xdb8fffff]
pci 0000:00:18.6: bridge 64bit mmio pref: [0xde500000-0xde5fffff]
pci 0000:00:18.7: bridge 32bit mmio: [0xdbc00000-0xdbcfffff]
pci 0000:00:18.7: bridge 64bit mmio pref: [0xde900000-0xde9fffff]
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 14 15)
SCSI subsystem initialized
libata version 3.00 loaded.
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
raid6: int32x1   1528 MB/s
raid6: int32x2   1484 MB/s
raid6: int32x4   1136 MB/s
raid6: int32x8   1189 MB/s
raid6: mmxx1     3446 MB/s
raid6: mmxx2     3937 MB/s
raid6: sse1x1    2347 MB/s
raid6: sse1x2    3989 MB/s
raid6: sse2x1    5889 MB/s
raid6: sse2x2    3582 MB/s
raid6: using algorithm sse2x1 (5889 MB/s)
PCI: Using ACPI for IRQ routing
pnp: PnP ACPI init
ACPI: bus type pnp registered
Switched to high resolution mode on CPU 0
pnp: PnP ACPI: found 13 devices
ACPI: ACPI bus type pnp unregistered
system 00:01: ioport range 0x1000-0x103f has been reserved
system 00:01: ioport range 0x1040-0x104f has been reserved
system 00:01: ioport range 0xcf0-0xcf1 has been reserved
system 00:0c: ioport range 0x1060-0x107f has been reserved
system 00:0c: iomem range 0xe0000000-0xefffffff has been reserved
system 00:0c: iomem range 0xdbe00000-0xdbffffff has been reserved
pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
pci 0000:00:01.0:   IO window: disabled
pci 0000:00:01.0:   MEM window: disabled
pci 0000:00:01.0:   PREFETCH window: disabled
pci 0000:00:11.0: PCI bridge, secondary bus 0000:02
pci 0000:00:11.0:   IO window: 0x2000-0x3fff
pci 0000:00:11.0:   MEM window: 0xd8900000-0xd9cfffff
pci 0000:00:11.0:   PREFETCH window: 0x000000dc400000-0x000000dc9fffff
pci 0000:00:15.0: PCI bridge, secondary bus 0000:03
pci 0000:00:15.0:   IO window: 0x4000-0x4fff
pci 0000:00:15.0:   MEM window: 0xd9d00000-0xd9dfffff
pci 0000:00:15.0:   PREFETCH window: 0x000000dca00000-0x000000dcafffff
pci 0000:00:15.1: PCI bridge, secondary bus 0000:04
pci 0000:00:15.1:   IO window: 0x8000-0x8fff
pci 0000:00:15.1:   MEM window: 0xda100000-0xda1fffff
pci 0000:00:15.1:   PREFETCH window: 0x000000dce00000-0x000000dcefffff
pci 0000:00:15.2: PCI bridge, secondary bus 0000:05
pci 0000:00:15.2:   IO window: 0xc000-0xcfff
pci 0000:00:15.2:   MEM window: 0xda500000-0xda5fffff
pci 0000:00:15.2:   PREFETCH window: 0x000000dd200000-0x000000dd2fffff
pci 0000:00:15.3: PCI bridge, secondary bus 0000:06
pci 0000:00:15.3:   IO window: disabled
pci 0000:00:15.3:   MEM window: 0xda900000-0xda9fffff
pci 0000:00:15.3:   PREFETCH window: 0x000000dd600000-0x000000dd6fffff
pci 0000:00:15.4: PCI bridge, secondary bus 0000:07
pci 0000:00:15.4:   IO window: disabled
pci 0000:00:15.4:   MEM window: 0xdad00000-0xdadfffff
pci 0000:00:15.4:   PREFETCH window: 0x000000dda00000-0x000000ddafffff
pci 0000:00:15.5: PCI bridge, secondary bus 0000:08
pci 0000:00:15.5:   IO window: disabled
pci 0000:00:15.5:   MEM window: 0xdb100000-0xdb1fffff
pci 0000:00:15.5:   PREFETCH window: 0x000000dde00000-0x000000ddefffff
pci 0000:00:15.6: PCI bridge, secondary bus 0000:09
pci 0000:00:15.6:   IO window: disabled
pci 0000:00:15.6:   MEM window: 0xdb500000-0xdb5fffff
pci 0000:00:15.6:   PREFETCH window: 0x000000de200000-0x000000de2fffff
pci 0000:00:15.7: PCI bridge, secondary bus 0000:0a
pci 0000:00:15.7:   IO window: disabled
pci 0000:00:15.7:   MEM window: 0xdb900000-0xdb9fffff
pci 0000:00:15.7:   PREFETCH window: 0x000000de600000-0x000000de6fffff
pci 0000:00:16.0: PCI bridge, secondary bus 0000:0b
pci 0000:00:16.0:   IO window: 0x5000-0x5fff
pci 0000:00:16.0:   MEM window: 0xd9e00000-0xd9efffff
pci 0000:00:16.0:   PREFETCH window: 0x000000dcb00000-0x000000dcbfffff
pci 0000:00:16.1: PCI bridge, secondary bus 0000:0c
pci 0000:00:16.1:   IO window: 0x9000-0x9fff
pci 0000:00:16.1:   MEM window: 0xda200000-0xda2fffff
pci 0000:00:16.1:   PREFETCH window: 0x000000dcf00000-0x000000dcffffff
pci 0000:00:16.2: PCI bridge, secondary bus 0000:0d
pci 0000:00:16.2:   IO window: 0xd000-0xdfff
pci 0000:00:16.2:   MEM window: 0xda600000-0xda6fffff
pci 0000:00:16.2:   PREFETCH window: 0x000000dd300000-0x000000dd3fffff
pci 0000:00:16.3: PCI bridge, secondary bus 0000:0e
pci 0000:00:16.3:   IO window: disabled
pci 0000:00:16.3:   MEM window: 0xdaa00000-0xdaafffff
pci 0000:00:16.3:   PREFETCH window: 0x000000dd700000-0x000000dd7fffff
pci 0000:00:16.4: PCI bridge, secondary bus 0000:0f
pci 0000:00:16.4:   IO window: disabled
pci 0000:00:16.4:   MEM window: 0xdae00000-0xdaefffff
pci 0000:00:16.4:   PREFETCH window: 0x000000ddb00000-0x000000ddbfffff
pci 0000:00:16.5: PCI bridge, secondary bus 0000:10
pci 0000:00:16.5:   IO window: disabled
pci 0000:00:16.5:   MEM window: 0xdb200000-0xdb2fffff
pci 0000:00:16.5:   PREFETCH window: 0x000000ddf00000-0x000000ddffffff
pci 0000:00:16.6: PCI bridge, secondary bus 0000:11
pci 0000:00:16.6:   IO window: disabled
pci 0000:00:16.6:   MEM window: 0xdb600000-0xdb6fffff
pci 0000:00:16.6:   PREFETCH window: 0x000000de300000-0x000000de3fffff
pci 0000:00:16.7: PCI bridge, secondary bus 0000:12
pci 0000:00:16.7:   IO window: disabled
pci 0000:00:16.7:   MEM window: 0xdba00000-0xdbafffff
pci 0000:00:16.7:   PREFETCH window: 0x000000de700000-0x000000de7fffff
pci 0000:00:17.0: PCI bridge, secondary bus 0000:13
pci 0000:00:17.0:   IO window: 0x6000-0x6fff
pci 0000:00:17.0:   MEM window: 0xd9f00000-0xd9ffffff
pci 0000:00:17.0:   PREFETCH window: 0x000000dcc00000-0x000000dccfffff
pci 0000:00:17.1: PCI bridge, secondary bus 0000:14
pci 0000:00:17.1:   IO window: 0xa000-0xafff
pci 0000:00:17.1:   MEM window: 0xda300000-0xda3fffff
pci 0000:00:17.1:   PREFETCH window: 0x000000dd000000-0x000000dd0fffff
pci 0000:00:17.2: PCI bridge, secondary bus 0000:15
pci 0000:00:17.2:   IO window: 0xe000-0xefff
pci 0000:00:17.2:   MEM window: 0xda700000-0xda7fffff
pci 0000:00:17.2:   PREFETCH window: 0x000000dd400000-0x000000dd4fffff
pci 0000:00:17.3: PCI bridge, secondary bus 0000:16
pci 0000:00:17.3:   IO window: disabled
pci 0000:00:17.3:   MEM window: 0xdab00000-0xdabfffff
pci 0000:00:17.3:   PREFETCH window: 0x000000dd800000-0x000000dd8fffff
pci 0000:00:17.4: PCI bridge, secondary bus 0000:17
pci 0000:00:17.4:   IO window: disabled
pci 0000:00:17.4:   MEM window: 0xdaf00000-0xdaffffff
pci 0000:00:17.4:   PREFETCH window: 0x000000ddc00000-0x000000ddcfffff
pci 0000:00:17.5: PCI bridge, secondary bus 0000:18
pci 0000:00:17.5:   IO window: disabled
pci 0000:00:17.5:   MEM window: 0xdb300000-0xdb3fffff
pci 0000:00:17.5:   PREFETCH window: 0x000000de000000-0x000000de0fffff
pci 0000:00:17.6: PCI bridge, secondary bus 0000:19
pci 0000:00:17.6:   IO window: disabled
pci 0000:00:17.6:   MEM window: 0xdb700000-0xdb7fffff
pci 0000:00:17.6:   PREFETCH window: 0x000000de400000-0x000000de4fffff
pci 0000:00:17.7: PCI bridge, secondary bus 0000:1a
pci 0000:00:17.7:   IO window: disabled
pci 0000:00:17.7:   MEM window: 0xdbb00000-0xdbbfffff
pci 0000:00:17.7:   PREFETCH window: 0x000000de800000-0x000000de8fffff
pci 0000:00:18.0: PCI bridge, secondary bus 0000:1b
pci 0000:00:18.0:   IO window: 0x7000-0x7fff
pci 0000:00:18.0:   MEM window: 0xda000000-0xda0fffff
pci 0000:00:18.0:   PREFETCH window: 0x000000dcd00000-0x000000dcdfffff
pci 0000:00:18.1: PCI bridge, secondary bus 0000:1c
pci 0000:00:18.1:   IO window: 0xb000-0xbfff
pci 0000:00:18.1:   MEM window: 0xda400000-0xda4fffff
pci 0000:00:18.1:   PREFETCH window: 0x000000dd100000-0x000000dd1fffff
pci 0000:00:18.2: PCI bridge, secondary bus 0000:1d
pci 0000:00:18.2:   IO window: 0xf000-0xffff
pci 0000:00:18.2:   MEM window: 0xda800000-0xda8fffff
pci 0000:00:18.2:   PREFETCH window: 0x000000dd500000-0x000000dd5fffff
pci 0000:00:18.3: PCI bridge, secondary bus 0000:1e
pci 0000:00:18.3:   IO window: disabled
pci 0000:00:18.3:   MEM window: 0xdac00000-0xdacfffff
pci 0000:00:18.3:   PREFETCH window: 0x000000dd900000-0x000000dd9fffff
pci 0000:00:18.4: PCI bridge, secondary bus 0000:1f
pci 0000:00:18.4:   IO window: disabled
pci 0000:00:18.4:   MEM window: 0xdb000000-0xdb0fffff
pci 0000:00:18.4:   PREFETCH window: 0x000000ddd00000-0x000000dddfffff
pci 0000:00:18.5: PCI bridge, secondary bus 0000:20
pci 0000:00:18.5:   IO window: disabled
pci 0000:00:18.5:   MEM window: 0xdb400000-0xdb4fffff
pci 0000:00:18.5:   PREFETCH window: 0x000000de100000-0x000000de1fffff
pci 0000:00:18.6: PCI bridge, secondary bus 0000:21
pci 0000:00:18.6:   IO window: disabled
pci 0000:00:18.6:   MEM window: 0xdb800000-0xdb8fffff
pci 0000:00:18.6:   PREFETCH window: 0x000000de500000-0x000000de5fffff
pci 0000:00:18.7: PCI bridge, secondary bus 0000:22
pci 0000:00:18.7:   IO window: disabled
pci 0000:00:18.7:   MEM window: 0xdbc00000-0xdbcfffff
pci 0000:00:18.7:   PREFETCH window: 0x000000de900000-0x000000de9fffff
pci 0000:00:01.0: setting latency timer to 64
pci 0000:00:15.0: setting latency timer to 64
pci 0000:00:15.1: setting latency timer to 64
pci 0000:00:15.2: setting latency timer to 64
pci 0000:00:15.3: setting latency timer to 64
pci 0000:00:15.4: setting latency timer to 64
pci 0000:00:15.5: setting latency timer to 64
pci 0000:00:15.6: setting latency timer to 64
pci 0000:00:15.7: setting latency timer to 64
pci 0000:00:16.0: setting latency timer to 64
pci 0000:00:16.1: setting latency timer to 64
pci 0000:00:16.2: setting latency timer to 64
pci 0000:00:16.3: setting latency timer to 64
pci 0000:00:16.4: setting latency timer to 64
pci 0000:00:16.5: setting latency timer to 64
pci 0000:00:16.6: setting latency timer to 64
pci 0000:00:16.7: setting latency timer to 64
pci 0000:00:17.0: setting latency timer to 64
pci 0000:00:17.1: setting latency timer to 64
pci 0000:00:17.2: setting latency timer to 64
pci 0000:00:17.3: setting latency timer to 64
pci 0000:00:17.4: setting latency timer to 64
pci 0000:00:17.5: setting latency timer to 64
pci 0000:00:17.6: setting latency timer to 64
pci 0000:00:17.7: setting latency timer to 64
pci 0000:00:18.0: setting latency timer to 64
pci 0000:00:18.1: setting latency timer to 64
pci 0000:00:18.2: setting latency timer to 64
pci 0000:00:18.3: setting latency timer to 64
pci 0000:00:18.4: setting latency timer to 64
pci 0000:00:18.5: setting latency timer to 64
pci 0000:00:18.6: setting latency timer to 64
pci 0000:00:18.7: setting latency timer to 64
pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
pci_bus 0000:02: resource 0 io:  [0x2000-0x3fff]
pci_bus 0000:02: resource 1 mem: [0xd8900000-0xd9cfffff]
pci_bus 0000:02: resource 2 pref mem [0xdc400000-0xdc9fffff]
pci_bus 0000:02: resource 3 io:  [0x00-0xffff]
pci_bus 0000:02: resource 4 mem: [0x000000-0xffffffff]
pci_bus 0000:03: resource 0 io:  [0x4000-0x4fff]
pci_bus 0000:03: resource 1 mem: [0xd9d00000-0xd9dfffff]
pci_bus 0000:03: resource 2 pref mem [0xdca00000-0xdcafffff]
pci_bus 0000:04: resource 0 io:  [0x8000-0x8fff]
pci_bus 0000:04: resource 1 mem: [0xda100000-0xda1fffff]
pci_bus 0000:04: resource 2 pref mem [0xdce00000-0xdcefffff]
pci_bus 0000:05: resource 0 io:  [0xc000-0xcfff]
pci_bus 0000:05: resource 1 mem: [0xda500000-0xda5fffff]
pci_bus 0000:05: resource 2 pref mem [0xdd200000-0xdd2fffff]
pci_bus 0000:06: resource 1 mem: [0xda900000-0xda9fffff]
pci_bus 0000:06: resource 2 pref mem [0xdd600000-0xdd6fffff]
pci_bus 0000:07: resource 1 mem: [0xdad00000-0xdadfffff]
pci_bus 0000:07: resource 2 pref mem [0xdda00000-0xddafffff]
pci_bus 0000:08: resource 1 mem: [0xdb100000-0xdb1fffff]
pci_bus 0000:08: resource 2 pref mem [0xdde00000-0xddefffff]
pci_bus 0000:09: resource 1 mem: [0xdb500000-0xdb5fffff]
pci_bus 0000:09: resource 2 pref mem [0xde200000-0xde2fffff]
pci_bus 0000:0a: resource 1 mem: [0xdb900000-0xdb9fffff]
pci_bus 0000:0a: resource 2 pref mem [0xde600000-0xde6fffff]
pci_bus 0000:0b: resource 0 io:  [0x5000-0x5fff]
pci_bus 0000:0b: resource 1 mem: [0xd9e00000-0xd9efffff]
pci_bus 0000:0b: resource 2 pref mem [0xdcb00000-0xdcbfffff]
pci_bus 0000:0c: resource 0 io:  [0x9000-0x9fff]
pci_bus 0000:0c: resource 1 mem: [0xda200000-0xda2fffff]
pci_bus 0000:0c: resource 2 pref mem [0xdcf00000-0xdcffffff]
pci_bus 0000:0d: resource 0 io:  [0xd000-0xdfff]
pci_bus 0000:0d: resource 1 mem: [0xda600000-0xda6fffff]
pci_bus 0000:0d: resource 2 pref mem [0xdd300000-0xdd3fffff]
pci_bus 0000:0e: resource 1 mem: [0xdaa00000-0xdaafffff]
pci_bus 0000:0e: resource 2 pref mem [0xdd700000-0xdd7fffff]
pci_bus 0000:0f: resource 1 mem: [0xdae00000-0xdaefffff]
pci_bus 0000:0f: resource 2 pref mem [0xddb00000-0xddbfffff]
pci_bus 0000:10: resource 1 mem: [0xdb200000-0xdb2fffff]
pci_bus 0000:10: resource 2 pref mem [0xddf00000-0xddffffff]
pci_bus 0000:11: resource 1 mem: [0xdb600000-0xdb6fffff]
pci_bus 0000:11: resource 2 pref mem [0xde300000-0xde3fffff]
pci_bus 0000:12: resource 1 mem: [0xdba00000-0xdbafffff]
pci_bus 0000:12: resource 2 pref mem [0xde700000-0xde7fffff]
pci_bus 0000:13: resource 0 io:  [0x6000-0x6fff]
pci_bus 0000:13: resource 1 mem: [0xd9f00000-0xd9ffffff]
pci_bus 0000:13: resource 2 pref mem [0xdcc00000-0xdccfffff]
pci_bus 0000:14: resource 0 io:  [0xa000-0xafff]
pci_bus 0000:14: resource 1 mem: [0xda300000-0xda3fffff]
pci_bus 0000:14: resource 2 pref mem [0xdd000000-0xdd0fffff]
pci_bus 0000:15: resource 0 io:  [0xe000-0xefff]
pci_bus 0000:15: resource 1 mem: [0xda700000-0xda7fffff]
pci_bus 0000:15: resource 2 pref mem [0xdd400000-0xdd4fffff]
pci_bus 0000:16: resource 1 mem: [0xdab00000-0xdabfffff]
pci_bus 0000:16: resource 2 pref mem [0xdd800000-0xdd8fffff]
pci_bus 0000:17: resource 1 mem: [0xdaf00000-0xdaffffff]
pci_bus 0000:17: resource 2 pref mem [0xddc00000-0xddcfffff]
pci_bus 0000:18: resource 1 mem: [0xdb300000-0xdb3fffff]
pci_bus 0000:18: resource 2 pref mem [0xde000000-0xde0fffff]
pci_bus 0000:19: resource 1 mem: [0xdb700000-0xdb7fffff]
pci_bus 0000:19: resource 2 pref mem [0xde400000-0xde4fffff]
pci_bus 0000:1a: resource 1 mem: [0xdbb00000-0xdbbfffff]
pci_bus 0000:1a: resource 2 pref mem [0xde800000-0xde8fffff]
pci_bus 0000:1b: resource 0 io:  [0x7000-0x7fff]
pci_bus 0000:1b: resource 1 mem: [0xda000000-0xda0fffff]
pci_bus 0000:1b: resource 2 pref mem [0xdcd00000-0xdcdfffff]
pci_bus 0000:1c: resource 0 io:  [0xb000-0xbfff]
pci_bus 0000:1c: resource 1 mem: [0xda400000-0xda4fffff]
pci_bus 0000:1c: resource 2 pref mem [0xdd100000-0xdd1fffff]
pci_bus 0000:1d: resource 0 io:  [0xf000-0xffff]
pci_bus 0000:1d: resource 1 mem: [0xda800000-0xda8fffff]
pci_bus 0000:1d: resource 2 pref mem [0xdd500000-0xdd5fffff]
pci_bus 0000:1e: resource 1 mem: [0xdac00000-0xdacfffff]
pci_bus 0000:1e: resource 2 pref mem [0xdd900000-0xdd9fffff]
pci_bus 0000:1f: resource 1 mem: [0xdb000000-0xdb0fffff]
pci_bus 0000:1f: resource 2 pref mem [0xddd00000-0xdddfffff]
pci_bus 0000:20: resource 1 mem: [0xdb400000-0xdb4fffff]
pci_bus 0000:20: resource 2 pref mem [0xde100000-0xde1fffff]
pci_bus 0000:21: resource 1 mem: [0xdb800000-0xdb8fffff]
pci_bus 0000:21: resource 2 pref mem [0xde500000-0xde5fffff]
pci_bus 0000:22: resource 1 mem: [0xdbc00000-0xdbcfffff]
pci_bus 0000:22: resource 2 pref mem [0xde900000-0xde9fffff]
NET: Registered protocol family 2
IP route cache hash table entries: 16384 (order: 4, 65536 bytes)
TCP established hash table entries: 65536 (order: 7, 524288 bytes)
TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
TCP: Hash tables configured (established 65536 bind 65536)
TCP reno registered
NET: Registered protocol family 1
Trying to unpack rootfs image as initramfs...
Freeing initrd memory: 5058k freed
Simple Boot Flag at 0x36 set to 0x1
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
apm: overridden by ACPI.
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
NTFS driver 2.1.29 [Flags: R/O].
msgmni has been set to 996
alg: No test for stdrng (krng)
async_tx: api initialized (sync-only)
io scheduler noop registered
io scheduler anticipatory registered
io scheduler deadline registered
io scheduler cfq registered (default)
pci 0000:00:00.0: Limiting direct PCI/PCI transfers
pci 0000:00:0f.0: Boot video device
pcieport-driver 0000:00:15.0: irq 24 for MSI/MSI-X
pcieport-driver 0000:00:15.0: setting latency timer to 64
pcieport-driver 0000:00:15.1: irq 25 for MSI/MSI-X
pcieport-driver 0000:00:15.1: setting latency timer to 64
pcieport-driver 0000:00:15.2: irq 26 for MSI/MSI-X
pcieport-driver 0000:00:15.2: setting latency timer to 64
pcieport-driver 0000:00:15.3: irq 27 for MSI/MSI-X
pcieport-driver 0000:00:15.3: setting latency timer to 64
pcieport-driver 0000:00:15.4: irq 28 for MSI/MSI-X
pcieport-driver 0000:00:15.4: setting latency timer to 64
pcieport-driver 0000:00:15.5: irq 29 for MSI/MSI-X
pcieport-driver 0000:00:15.5: setting latency timer to 64
pcieport-driver 0000:00:15.6: irq 30 for MSI/MSI-X
pcieport-driver 0000:00:15.6: setting latency timer to 64
pcieport-driver 0000:00:15.7: irq 31 for MSI/MSI-X
pcieport-driver 0000:00:15.7: setting latency timer to 64
pcieport-driver 0000:00:16.0: irq 32 for MSI/MSI-X
pcieport-driver 0000:00:16.0: setting latency timer to 64
pcieport-driver 0000:00:16.1: irq 33 for MSI/MSI-X
pcieport-driver 0000:00:16.1: setting latency timer to 64
pcieport-driver 0000:00:16.2: irq 34 for MSI/MSI-X
pcieport-driver 0000:00:16.2: setting latency timer to 64
pcieport-driver 0000:00:16.3: irq 35 for MSI/MSI-X
pcieport-driver 0000:00:16.3: setting latency timer to 64
pcieport-driver 0000:00:16.4: irq 36 for MSI/MSI-X
pcieport-driver 0000:00:16.4: setting latency timer to 64
pcieport-driver 0000:00:16.5: irq 37 for MSI/MSI-X
pcieport-driver 0000:00:16.5: setting latency timer to 64
pcieport-driver 0000:00:16.6: irq 38 for MSI/MSI-X
pcieport-driver 0000:00:16.6: setting latency timer to 64
pcieport-driver 0000:00:16.7: irq 39 for MSI/MSI-X
pcieport-driver 0000:00:16.7: setting latency timer to 64
pcieport-driver 0000:00:17.0: irq 40 for MSI/MSI-X
pcieport-driver 0000:00:17.0: setting latency timer to 64
pcieport-driver 0000:00:17.1: irq 41 for MSI/MSI-X
pcieport-driver 0000:00:17.1: setting latency timer to 64
pcieport-driver 0000:00:17.2: irq 42 for MSI/MSI-X
pcieport-driver 0000:00:17.2: setting latency timer to 64
pcieport-driver 0000:00:17.3: irq 43 for MSI/MSI-X
pcieport-driver 0000:00:17.3: setting latency timer to 64
pcieport-driver 0000:00:17.4: irq 44 for MSI/MSI-X
pcieport-driver 0000:00:17.4: setting latency timer to 64
pcieport-driver 0000:00:17.5: irq 45 for MSI/MSI-X
pcieport-driver 0000:00:17.5: setting latency timer to 64
pcieport-driver 0000:00:17.6: irq 46 for MSI/MSI-X
pcieport-driver 0000:00:17.6: setting latency timer to 64
pcieport-driver 0000:00:17.7: irq 47 for MSI/MSI-X
pcieport-driver 0000:00:17.7: setting latency timer to 64
pcieport-driver 0000:00:18.0: irq 48 for MSI/MSI-X
pcieport-driver 0000:00:18.0: setting latency timer to 64
pcieport-driver 0000:00:18.1: irq 49 for MSI/MSI-X
pcieport-driver 0000:00:18.1: setting latency timer to 64
pcieport-driver 0000:00:18.2: irq 50 for MSI/MSI-X
pcieport-driver 0000:00:18.2: setting latency timer to 64
pcieport-driver 0000:00:18.3: irq 51 for MSI/MSI-X
pcieport-driver 0000:00:18.3: setting latency timer to 64
pcieport-driver 0000:00:18.4: irq 52 for MSI/MSI-X
pcieport-driver 0000:00:18.4: setting latency timer to 64
pcieport-driver 0000:00:18.5: irq 53 for MSI/MSI-X
pcieport-driver 0000:00:18.5: setting latency timer to 64
pcieport-driver 0000:00:18.6: irq 54 for MSI/MSI-X
pcieport-driver 0000:00:18.6: setting latency timer to 64
pcieport-driver 0000:00:18.7: irq 55 for MSI/MSI-X
pcieport-driver 0000:00:18.7: setting latency timer to 64
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
ACPI: AC Adapter [ACAD] (on-line)
input: Power Button as /class/input/input0
ACPI: Power Button [PWRF]
processor ACPI_CPU:00: registered as cooling_device0
ACPI: Processor [CP00] (supports 8 throttling states)
isapnp: Scanning for PnP cards...
isapnp: No Plug & Play device found
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
00:09: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
00:0a: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
brd: module loaded
loop: module loaded
Compaq SMART2 Driver (v 2.6.0)
HP CISS Driver (v 3.6.20)
input: Macintosh mouse button emulation as /class/input/input1
Uniform Multi-Platform E-IDE driver
piix 0000:00:07.1: IDE controller (0x8086:0x7111 rev 0x01)
piix 0000:00:07.1: not 100% native mode: will probe irqs later
    ide0: BM-DMA at 0x10c0-0x10c7
    ide1: BM-DMA at 0x10c8-0x10cf
Probing IDE interface ide0...
hda: VMware Virtual IDE CDROM Drive, ATAPI CD/DVD-ROM drive
hdb: VMware Virtual IDE Hard Drive, ATA DISK drive
hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hda: UDMA/33 mode selected
hdb: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hdb: UDMA/33 mode selected
Probing IDE interface ide1...
hdc: VMware Virtual IDE CDROM Drive, ATAPI CD/DVD-ROM drive
hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
hdc: UDMA/33 mode selected
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
ide1 at 0x170-0x177,0x376 on irq 15
ide_generic: please use "probe_mask=0x3f" module parameter for probing
all legacy ISA IDE ports
ide-gd driver 1.18
hdb: max request size: 128KiB
hdb: 209715200 sectors (107374 MB) w/32KiB Cache, CHS=65535/15/63
 hdb: hdb1 hdb2 < hdb5 hdb6 hdb7 hdb8 hdb9 >
ide-cd driver 5.00
ATAPI device hda:
  Error: Not ready -- (Sense key=0x02)
  (reserved error code) -- (asc=0x00, ascq=0x00)
  The failed "Mode Sense 10" packet command was:
  "5a 00 2a 00 00 00 00 00 18 00 00 00 98 be 44 df "
ATAPI device hda:
  Error: Not ready -- (Sense key=0x02)
  (reserved error code) -- (asc=0x00, ascq=0x00)
  The failed "Mode Sense 10" packet command was:
  "5a 00 2a 00 00 00 00 00 18 00 00 00 98 be 44 df "
ATAPI device hda:
  Error: Not ready -- (Sense key=0x02)
  (reserved error code) -- (asc=0x00, ascq=0x00)
  The failed "Mode Sense 10" packet command was:
  "5a 00 2a 00 00 00 00 00 18 00 00 00 98 be 44 df "
Uniform CD-ROM driver Revision: 3.20
ide-cd: hdc: ATAPI 48X DVD-ROM DVD-R/RAM CD-R/RW drive, 2048kB Cache
Loading iSCSI transport class v2.0-870.
iscsi: registered transport (tcp)
Loading Adaptec I2O RAID: Version 2.4 Build 5go
Detecting Adaptec I2O RAID controllers...
Adaptec aacraid driver 1.1-5[2461]-ms
aic94xx: Adaptec aic94xx SAS/SATA driver version 1.0.3 loaded
scsi: <fdomain> Detection failed (no card)
sym53c416.c: Version 1.0.0-ac
qlogicfas: no cards were found, please specify I/O address and IRQ
using iobase= and irq= options<6>QLogic Fibre Channel HBA Driver:
8.03.01-k1
iscsi: registered transport (qla4xxx)
QLogic iSCSI HBA Driver
Emulex LightPulse Fibre Channel SCSI driver 8.3.1
Copyright(c) 2004-2009 Emulex.  All rights reserved.
Failed initialization of WD-7000 SCSI card!
pci 0000:00:10.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
DC390: clustering now enabled by default. If you get problems load
       with "disable_clustering=1" and report to maintainers
megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
megasas: 00.00.04.01 Thu July 24 11:41:51 PST 2008
GDT-HA: Storage RAID Controller Driver. Version: 3.05
3ware Storage Controller device driver for Linux v1.26.02.002.
3ware 9000 Storage Controller device driver for Linux v2.26.02.012.
nsp32: loading...
ipr: IBM Power RAID SCSI Device Driver version: 2.4.2 (January 21, 2009)
RocketRAID 3xxx/4xxx Controller driver v1.3 (071203)
st: Version 20081215, fixed bufsize 32768, s/g segs 256
Driver 'st' needs updating - please use bus_type methods
Driver 'sd' needs updating - please use bus_type methods
Driver 'sr' needs updating - please use bus_type methods
Intel(R) PRO/1000 Network Driver - version 7.3.21-k3-NAPI
Copyright (c) 1999-2006 Intel Corporation.
Atheros(R) L2 Ethernet Driver - version 2.2.3
Copyright (c) 2007 Atheros Corporation.
jme: JMicron JMC2XX ethernet driver version 1.0.4
pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
pcnet32 0000:02:01.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
pcnet32: PCnet/PCI II 79C970A at 0x2000, 00:0c:29:59:fc:2c assigned IRQ 19.
eth0: registered as PCnet/PCI II 79C970A
pcnet32: 1 cards_found.
e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
e100: Copyright(c) 1999-2006 Intel Corporation
I2O subsystem v1.325
i2o: max drivers = 8
I2O Configuration OSM v1.323
I2O Bus Adapter OSM v1.317
I2O Block Device OSM v1.325
I2O SCSI Peripheral OSM v1.316
I2O ProcFS OSM v1.316
Fusion MPT base driver 3.04.07
Copyright (c) 1999-2008 LSI Corporation
Fusion MPT SPI Host driver 3.04.07
mptbase: ioc0: Initiating bringup
ioc0: LSI53C1030 B0: Capabilities={Initiator}
scsi2 : ioc0: LSI53C1030 B0, FwRev=01032920h, Ports=1, MaxQ=128, IRQ=17
Fusion MPT FC Host driver 3.04.07
Fusion MPT SAS Host driver 3.04.07
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:02:03.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
ehci_hcd 0000:02:03.0: EHCI Host Controller
ehci_hcd 0000:02:03.0: new USB bus registered, assigned bus number 1
ehci_hcd 0000:02:03.0: cache line size of 32 is not supported
ehci_hcd 0000:02:03.0: irq 17, io mem 0xd8900000
ehci_hcd 0000:02:03.0: USB 2.0 started, EHCI 1.00
usb usb1: configuration #1 chosen from 1 choice
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
116x: driver isp116x-hcd, 03 Nov 2005
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
uhci_hcd: USB Universal Host Controller Interface driver
uhci_hcd 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
uhci_hcd 0000:02:00.0: UHCI Host Controller
uhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
uhci_hcd 0000:02:00.0: irq 18, io base 0x000020c0
usb usb2: configuration #1 chosen from 1 choice
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
sl811: driver sl811-hcd, 19 May 2005
Initializing USB Mass Storage driver...
usbcore: registered new interface driver usb-storage
USB Mass Storage support registered.
usbcore: registered new interface driver ums-alauda
usbcore: registered new interface driver ums-datafab
usbcore: registered new interface driver ums-freecom
usbcore: registered new interface driver ums-isd200
usbcore: registered new interface driver ums-jumpshot
usbcore: registered new interface driver ums-karma
usbcore: registered new interface driver ums-sddr09
usbcore: registered new interface driver ums-sddr55
usbcore: registered new interface driver ums-usbat
PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUS] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
md: linear personality registered for level -1
md: raid0 personality registered for level 0
md: raid1 personality registered for level 1
md: raid10 personality registered for level 10
md: raid6 personality registered for level 6
md: raid5 personality registered for level 5
md: raid4 personality registered for level 4
md: multipath personality registered for level -4
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
cpuidle: using governor ladder
cpuidle: using governor menu
usbcore: registered new interface driver hiddev
usbcore: registered new interface driver usbhid
usbhid: v2.6:USB HID core driver
TCP cubic registered
Initializing XFRM netlink socket
NET: Registered protocol family 17
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
Using IPI No-Shortcut mode
Freeing unused kernel memory: 432k freed
input: AT Translated Set 2 keyboard as /class/input/input2
fuse init (API version 7.11)
usb 1-1: new high speed USB device using ehci_hcd and address 2
usb 1-1: config 1 interface 0 altsetting 0 bulk endpoint 0x81 has
invalid maxpacket 64
usb 1-1: config 1 interface 0 altsetting 0 bulk endpoint 0x1 has
invalid maxpacket 64
usb 1-1: configuration #1 chosen from 1 choice
kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with writeback data mode.
udevd version 124 started
Linux agpgart interface v0.103
agpgart-intel 0000:00:00.0: Intel 440BX Chipset
agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x0
piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, y3k, 114 bytes nvram
parport_pc 00:08: reported by Plug and Play ACPI
parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
cfg80211: Using static regulatory domain info
cfg80211: Regulatory domain: US
        (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
        (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
        (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
        (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
        (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
        (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
        (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
cfg80211: Calling CRDA for country: US
phy0 -> rt2500usb_init_eeprom: Error - Invalid RT chipset detected.
phy0 -> rt2x00lib_probe_dev: Error - Failed to allocate device.
usbcore: registered new interface driver rt2500usb
ENS1371 0000:02:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
input: ImPS/2 Generic Wheel Mouse as /class/input/input3
phy1: Selected rate control algorithm 'minstrel'
Registered led device: rt73usb-phy1::radio
Registered led device: rt73usb-phy1::assoc
Registered led device: rt73usb-phy1::quality
usbcore: registered new interface driver rt73usb
cfg80211: Regulatory domain changed to country: US
        (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
        (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
        (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
        (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
        (5490000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
        (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
lp0: using parport0 (interrupt-driven).
lp0: console ready
EXT3 FS on hdb5, internal journal
ip_tables: (C) 2000-2006 Netfilter Core Team
kjournald starting.  Commit interval 5 seconds
EXT3 FS on hdb9, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting.  Commit interval 5 seconds
EXT3 FS on hdb6, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
rt73usb 1-1:1.0: firmware: requesting rt73.bin
eth0: link up
eth0: link up
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
ADDRCONF(NETDEV_UP): wlan0: link is not ready
eth0: no IPv6 routers present
ISO 9660 Extensions: Microsoft Joliet Level 3
ISO 9660 Extensions: RRIP_1991A
squashfs: version 4.0 (2009/01/31) Phillip Lougher
eth0: link up
eth0: no IPv6 routers present
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP ver 2.14
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
usbcore: deregistering interface driver rt2500usb
usbcore: deregistering interface driver rt73usb
NET: Unregistered protocol family 31
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: L2CAP ver 2.14
Bluetooth: L2CAP socket layer initialized
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
NET: Unregistered protocol family 31
Generic kernel compatibility enabled based on linux-next next-20100113
cfg80211: Calling CRDA to update world regulatory domain
lib80211: common routines for IEEE802.11 drivers
lib80211_crypt: registered algorithm 'NULL'
libipw: 802.11 data/management/control stack, git-1.1.13
libipw: Copyright (C) 2004-2005 Intel Corporation <jketreno@linux.intel.com>
ipw2100: Intel(R) PRO/Wireless 2100 Network Driver, git-1.2.2
ipw2100: Copyright(c) 2003-2006 Intel Corporation
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmprq
ipw2200: Copyright(c) 2003-2006 Intel Corporation
cfg80211: World regulatory domain updated:
    (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
    (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
    (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
usbcore: registered new interface driver usb8xxx
usbcore: registered new interface driver p54usb
usbcore: registered new interface driver zd1211rw
usbcore: registered new interface driver rtl8187
iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver
for Linux, in-tree:ds
iwl3945: Copyright(c) 2003-2010 Intel Corporation
iwlagn: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
iwlagn: Copyright(c) 2003-2010 Intel Corporation
usbcore: registered new interface driver ar9170usb
phy0 -> rt2500usb_init_eeprom: Error - Invalid RT chipset detected.
phy0 -> rt2x00lib_probe_dev: Error - Failed to allocate device.
usbcore: registered new interface driver rt2500usb
phy1: Selected rate control algorithm 'minstrel'
Registered led device: rt73usb-phy1::radio
Registered led device: rt73usb-phy1::assoc
Registered led device: rt73usb-phy1::quality
usbcore: registered new interface driver rt73usb
usbcore: registered new interface driver cdc_ether
usbcore: registered new interface driver rndis_host
usbcore: registered new interface driver rndis_wlan
mac80211_hwsim: Initializing radio 0
phy2: Selected rate control algorithm 'minstrel'
phy2: hwaddr 02:00:00:00:00:00 registered
mac80211_hwsim: Initializing radio 1
phy3: Selected rate control algorithm 'minstrel'
phy3: hwaddr 02:00:00:00:01:00 registered
Atmel at76x USB Wireless LAN Driver 0.17 loading
usbcore: registered new interface driver at76c50x-usb
Bluetooth: Core ver 2.15
NET: Registered protocol family 31
Bluetooth: HCI device and connection manager initialized
Bluetooth: HCI socket layer initialized
Bluetooth: Generic Bluetooth USB driver ver 0.6
usbcore: registered new interface driver btusb
Bluetooth: L2CAP ver 2.14
Bluetooth: L2CAP socket layer initialized
Bluetooth: SCO (Voice Link) ver 0.6
Bluetooth: SCO socket layer initialized
Bluetooth: HIDP (Human Interface Emulation) ver 1.2
Bluetooth: RFCOMM TTY layer initialized
Bluetooth: RFCOMM socket layer initialized
Bluetooth: RFCOMM ver 1.11
Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Bluetooth: BNEP filters: protocol multicast
b43: Unknown symbol ssb_pmu_set_ldo_paref
b43: Unknown symbol ssb_pmu_set_ldo_voltage
b43: Unknown symbol ssb_chipco_gpio_control
b43: Unknown symbol ssb_bus_sdiobus_register
b43: Unknown symbol ssb_bus_pcmciabus_register
Broadcom 43xx-legacy driver loaded [ Features: PLID, Firmware-ID: FW10 ]
Bridge firewalling registered
b43: Unknown symbol ssb_pmu_set_ldo_paref
b43: Unknown symbol ssb_pmu_set_ldo_voltage
b43: Unknown symbol ssb_chipco_gpio_control
b43: Unknown symbol ssb_bus_sdiobus_register
b43: Unknown symbol ssb_bus_pcmciabus_register
root@bt:/media/disk/build/compat-wireless-2010-04-23#

2010/4/23, Gábor Stefanik <netrolller.3d@gmail.com>:
> On Fri, Apr 23, 2010 at 2:20 AM, SECO <secowu@gmail.com> wrote:
>> & this is the full log
>>
>>
>> ./scripts/gen-compat-autoconf.sh config.mk >
>> include/linux/compat_autoconf.h
>> make -C /lib/modules/2.6.30.9/build M=/root/compat-wireless-2.6.34-rc4
>> modules
>> make[1]: Entering directory `/usr/src/linux-source-2.6.30.9'
>>
>>  WARNING: Symbol version dump
>> /usr/src/linux-source-2.6.30.9/Module.symvers
>>           is missing; modules will have no dependencies and modversions.
>>
>>  CC [M]  /root/compat-wireless-2.6.34-rc4/compat/main.o
>> ....
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/mac80211_hwsim.o
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/mac80211_hwsim.c: In
>> funct
>> ion ‘__check_fake_hw_scan’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/mac80211_hwsim.c:37:
>> warni
>> ng: return from incompatible pointer type
>> ...
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/main.c: In
>> function ‘b43_request_firmware’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/main.c:2271:
>> warning: format not a string literal and no format
>>  arguments
>> ...
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:442:
>> warning: ‘b43_nphy_rx_cal_phy_cleanup’ defined but
>>  not used
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:465:
>> warning: ‘b43_nphy_rx_cal_phy_setup’ defined but n
>> ot used
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:1462:
>> warning: ‘b43_nphy_bphy_init’ defined but not use
>> d
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c: In
>> function ‘b43_nphy_spur_workaround’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:739:
>> warning: ‘channel’ may be used uninitialized in th
>> is function
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c: In
>> function ‘b43_nphy_cal_tx_iq_lo’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:2519:
>> warning: ‘last’ may be used uninitialized in this
>>  function
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c: In
>> function ‘b43_nphy_rev2_cal_rx_iq’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:2774:
>> warning: ‘cur_hpf2’ may be used uninitialized in
>> this function
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/b43/phy_n.c:2774:
>> warning: ‘cur_hpf1’ may be used uninitialized in
>> this function
>> ...
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/ipw2x00/libipw_wx.c:
>> In function ‘libipw_wx_set_encodeext’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/ipw2x00/libipw_wx.c:623:
>> warning: format not a string literal and n
>> o format arguments
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/ipw2x00/libipw_geo.o
>>  ...
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-5000.o
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-5000.c:
>> In function ‘iwl5000_gain_computation’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-5000.c:189:
>> warning: comparison of distinct pointer typ
>> es lacks a cast
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-6000.o
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-1000.o
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-core.o
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-core.c:
>> In function ‘__check_bt_coex_active’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-core.c:68:
>> warning: return from incompatible pointer ty
>> pe
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-eeprom.o
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-hcmd.o
>>  CC [M]
>>  /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-power.o
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-power.c:
>> In function ‘__check_no_sleep_autoadjust’:
>> /root/compat-wireless-2.6.34-rc4/drivers/net/wireless/iwlwifi/iwl-power.c:58:
>> warning: return from incompatible pointer t
>> ype
>> ...
>>  CC [M]  /root/compat-wireless-2.6.34-rc4/net/bluetooth/hidp/core.o
>> /root/compat-wireless-2.6.34-rc4/net/bluetooth/hidp/core.c: In
>> function ‘hidp_setup_hid’:
>> /root/compat-wireless-2.6.34-rc4/net/bluetooth/hidp/core.c:872:
>> warning: assignment from incompatible pointer type
>>  CC [M]  /root/compat-wireless-2.6.34-rc4/net/bluetooth/hidp/sock.o
>> ...
>>  CC [M]  /root/compat-wireless-2.6.34-rc4/net/mac80211/main.o
>> /root/compat-wireless-2.6.34-rc4/net/mac80211/main.c: In function
>> ‘__check_ieee80211_disable_40mhz_24ghz’:
>> /root/compat-wireless-2.6.34-rc4/net/mac80211/main.c:39: warning:
>> return from incompatible pointer type
>>  CC [M]  /root/compat-wireless-2.6.34-rc4/net/mac80211/status.o
>>
>> sudo make install
>> ...
>> make -C /lib/modules/2.6.30.9/build M=/root/compat-wireless-2.6.34-rc4
>> modules
>> make[1]: Entering directory `/usr/src/linux-source-2.6.30.9'
>>
>>  WARNING: Symbol version dump
>> /usr/src/linux-source-2.6.30.9/Module.symvers
>>           is missing; modules will have no dependencies and modversions.
>>
>> .......
>>  INSTALL
>> /root/compat-wireless-2.6.34-rc4/net/wireless/lib80211_crypt_wep.ko
>>  DEPMOD  2.6.30.9
>> make[1]: Leaving directory `/usr/src/linux-source-2.6.30.9'
>> Updating Ubuntu's initramfs for 2.6.31-wl under /boot/ ...
>> Cannot find /lib/modules/2.6.31-wl
>> Will now run update-grub to ensure grub will find the new initramfs ...
>> Searching for GRUB installation directory ... found: /boot/grub
>> Searching for default file ... found: /boot/grub/default
>> Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
>> Searching for splash image ... found: /boot/grub/splash.xpm.gz
>> Found kernel: /boot/vmlinuz-2.6.30.9
>> Found kernel: /boot/memtest86+.bin
>> Updating /boot/grub/menu.lst ... done
>>
>> depmod will prefer updates/ over kernel/ -- OK!
>>
>> Currently detected wireless subsystem modules:
>>
>> /lib/modules/2.6.30.9/updates/net/mac80211/mac80211.ko
>> /lib/modules/2.6.30.9/updates/net/wireless/cfg80211.ko
>> /lib/modules/2.6.30.9/updates/net/wireless/lib80211.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/adm8211.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ath/ar9170/ar9170usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/at76c50x-usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ath/ath.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ath/ath5k/ath5k.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ath/ath9k/ath9k.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/b43/b43.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/b43legacy/b43legacy.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/usb/cdc_ether.ko
>> /lib/modules/2.6.30.9/updates/drivers/misc/eeprom/eeprom_93cx6.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ipw2x00/ipw2100.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ipw2x00/ipw2200.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/iwlwifi/iwl3945.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/iwlwifi/iwlagn.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/iwlwifi/iwlcore.ko
>> /lib/modules/2.6.30.9/updates/net/wireless/lib80211_crypt_ccmp.ko
>> /lib/modules/2.6.30.9/updates/net/wireless/lib80211_crypt_tkip.ko
>> /lib/modules/2.6.30.9/updates/net/wireless/lib80211_crypt_wep.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas/libertas.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas/libertas_cs.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas/libertas_sdio.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas_tf/libertas_tf.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas_tf/libertas_tf_usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/ipw2x00/libipw.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/mac80211_hwsim.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/mwl8k.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/p54/p54common.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/p54/p54pci.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/p54/p54usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/usb/rndis_host.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rndis_wlan.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2400pci.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2500pci.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2500usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2x00lib.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2x00pci.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt2x00usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt61pci.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rt2x00/rt73usb.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rtl818x/rtl8180.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/rtl818x/rtl8187.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/libertas/usb8xxx.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/usb/usbnet.ko
>> /lib/modules/2.6.30.9/updates/drivers/net/wireless/zd1211rw/zd1211rw.ko
>>
>> Currently detected bluetooth subsystem modules:
>>
>> /lib/modules/2.6.30.9/updates/net/bluetooth/sco.ko
>> /lib/modules/2.6.30.9/updates/net/bluetooth/l2cap.ko
>> /lib/modules/2.6.30.9/updates/net/bluetooth/hidp/hidp.ko
>> /lib/modules/2.6.30.9/updates/net/bluetooth/rfcomm/rfcomm.ko
>> /lib/modules/2.6.30.9/updates/net/bluetooth/bnep/bnep.ko
>> /lib/modules/2.6.30.9/updates/drivers/bluetooth/btusb.ko
>> /lib/modules/2.6.30.9/updates/net/bluetooth/bluetooth.ko
>>
>> Now run:
>>
>> sudo make unload to unload both wireless and bluetooth modules
>> sudo make wlunload to unload wireless modules
>> sudo make btunload to unload bluetooth modules
>>
>> And then load the wireless or bluetooth module you need. If unsure reboot.
>> Alternatively use sudo make load/wlload/btload to load modules
>>
>> root@bt:~/compat-wireless-2.6.34-rc4#
>> root@bt:~/compat-wireless-2.6.34-rc4# sudo make unload
>> Stoping bluetooth service..
>> Stopping bluetooth: bluetoothd.
>> * bluetooth is not running.
>> Unloading ar9170usb...
>> Unloading rfcomm...
>> Unloading btusb...
>> root@bt:~/compat-wireless-2.6.34-rc4# sudo make wlunload
>> root@bt:~/compat-wireless-2.6.34-rc4# sudo make btunload
>> Stoping bluetooth service..
>> Stopping bluetooth: bluetoothd.
>> * bluetooth is not running.
>> Unloading rfcomm...
>> root@bt:~/compat-wireless-2.6.34-rc4#
>> root@bt:~/compat-wireless-2.6.34-rc4# sudo make load
>> Stoping bluetooth service..
>> Stopping bluetooth: bluetoothd.
>> * bluetooth is not running.
>> Unloading rfcomm...
>> Loading ipw2100...
>> Loading ipw2200...
>> Loading libertas_cs...
>> Loading usb8xxx...
>> Loading p54pci...
>> Loading p54usb...
>> Loading adm8211...
>> Loading zd1211rw...
>> Loading rtl8180...
>> Loading rtl8187...
>> Loading p54pci...
>> Loading p54usb...
>> Loading iwl3945...
>> Loading iwlagn...
>> Loading ath...
>> Loading ar9170usb...
>> Loading rtl8180...
>> Loading rtl8187...
>> Loading rt2400pci...
>> Loading rt2500pci...
>> Loading rt61pci...
>> Loading rt2500usb...
>> Loading rt73usb...
>> Loading rndis_wlan...
>> Loading at76_usb...
>> FATAL: Module at76_usb not found.
>> Loading mwl8k...
>> Loading mac80211_hwsim...
>> Loading at76c50x_usb...
>> Loading bluetooth...
>> Loading btusb...
>> Loading l2cap...
>> Loading sco...
>> Loading hidp...
>> Loading rfcomm...
>> Loading bnep...
>> Module ath_pci not detected -- this is fine
>> ath5k loaded successfully
>> ath9k loaded successfully
>> Module bcm43xx not detected -- this is fine
>> Module wl not detected -- this is fine
>> FATAL: Error inserting b43
>> (/lib/modules/2.6.30.9/updates/drivers/net/wireless/b43/b43.ko):
>> Unknown symbol in module, or unknown parameter (see dmesg)
>> b43 loaded successfully
>> b43legacy loaded successfully
>> Starting bluetooth service..
>> Starting bluetooth: bluetoothd.
>> bluetooth is running.
>>
>>
>> 2010/4/23, SECO <secowu@gmail.com>:
>>> Hi,Sir.
>>>
>>>    I use BT4,after Updated drivers, the original adpter bcm4311 can not
>>> be
>>> work.
>>> Not mention WN721 and WN821N .
>>> & log here
>>>
>>> root@bt:~# ln -s /usr/src/linux /lib/modules/2.6.30.9/build
>>> root@bt:~# wget
>>> http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2010-04-21.tar.bz2
>>> --2010-04-22 21:21:31--
>>> http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2010-04-21.tar.bz2
>>> Resolving wireless.kernel.org... 78.46.109.217
>>> Connecting to wireless.kernel.org|78.46.109.217|:80... connected.
>>> HTTP request sent, awaiting response... 200 OK
>>> Length: 2424098 (2.3M) [application/octet-stream]
>>> Saving to: `compat-wireless-2010-04-21.tar.bz2'
>>>
>>> 100%[==================================================================================================================>]
>>> 2,424,098   44.0K/s   in 56s
>>>
>>> 2010-04-22 21:22:29 (42.1 KB/s) - `compat-wireless-2010-04-21.tar.bz2'
>>> saved [2424098/2424098]
>>>
>>> root@bt:~# tar -xf compat-wireless-2010-04-21.tar.bz2
>>> root@bt:~# cd compat-wireless-2010-04-21.tar.bz22.make & make install
>>>
>>> Code:
>>> oot@bt:~/compat-wireless-2010-04-21# sudo make && sudo make install
>>> make -C /lib/modules/2.6.30.9/build M=/root/compat-wireless-2010-04-21
>>> modules
>>> make[1]: Entering directory `/usr/src/linux-source-2.6.30.9'
>>> ....
>>> CC [M]  /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/main.o
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/main.c: In
>>> function ‘b43_request_firmware’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/main.c:2271:
>>> warning: format not a string literal and no format arguments
>>> ....
>>> root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:465:
>>> warning: ‘b43_nphy_rx_cal_phy_cleanup’ defined but not used
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:488:
>>> warning: ‘b43_nphy_rx_cal_phy_setup’ defined but not used
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:1574:
>>> warning: ‘b43_nphy_bphy_init’ defined but not used
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c: In
>>> function ‘b43_nphy_set_chanspec’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:3376:
>>> warning: ‘tabent_r3’ may be used uninitialized in this function
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c: In
>>> function ‘b43_nphy_cal_tx_iq_lo’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:2631:
>>> warning: ‘last’ may be used uninitialized in this function
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c: In
>>> function ‘b43_nphy_rev2_cal_rx_iq’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:2886:
>>> warning: ‘cur_hpf2’ may be used uninitialized in this function
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/phy_n.c:2886:
>>> warning: ‘cur_hpf1’ may be used uninitialized in this function
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/xmit.c: In
>>> function ‘b43_rx’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43/xmit.c:613:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43legacy/xmit.c:
>>> In function ‘b43legacy_rx’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/b43legacy/xmit.c:551:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/ipw2x00/libipw_wx.c:
>>> In function ‘libipw_wx_set_encodeext’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/ipw2x00/libipw_wx.c:623:
>>> warning: format not a string literal and no format arguments
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c:
>>> In function ‘iwlagn_gain_computation’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c:145:
>>> warning: comparison of distinct pointer types lacks a cast
>>> ...
>>> root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-core.c:
>>> In function ‘__check_bt_coex_active’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-core.c:68:
>>> warning: return from incompatible pointer type
>>>   CC [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-eeprom.o
>>>   CC [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-hcmd.o
>>>   CC [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-power.o
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-power.c:
>>> In function ‘__check_no_sleep_autoadjust’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/iwlwifi/iwl-power.c:58:
>>> warning: return from incompatible pointer type
>>> ....
>>> root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/if_sdio.c:
>>> In function ‘if_sdio_probe’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/if_sdio.c:948:
>>> warning: unused variable ‘host’
>>>   CC [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/if_usb.o
>>>   LD [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/libertas.o
>>>   LD [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/usb8xxx.o
>>>   LD [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/libertas_cs.o
>>>   LD [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas/libertas_sdio.o
>>>   CC [M]
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas_tf/main.o
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas_tf/main.c:
>>> In function ‘lbtf_rx’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/libertas_tf/main.c:513:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>>   CC [M]  /root/compat-wireless-2010-
>>> ...
>>> root/compat-wireless-2010-04-21/drivers/net/wireless/p54/txrx.c: In
>>> function ‘p54_rx_data’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/p54/txrx.c:353:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/rt2x00/rt2x00dev.c:
>>> In function ‘rt2x00lib_rxdone’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/rt2x00/rt2x00dev.c:438:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>> ...
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/wl12xx/wl1251_rx.c:
>>> In function ‘wl1251_rx_status’:
>>> /root/compat-wireless-2010-04-21/drivers/net/wireless/wl12xx/wl1251_rx.c:81:
>>> warning: ‘noise’ is deprecated (declared at
>>> /root/compat-wireless-2010-04-21/include/net/mac80211.h:564)
>>> ...
>>> root/compat-wireless-2010-04-21/net/bluetooth/hidp/core.c: In function
>>> ‘hidp_setup_hid’:
>>> /root/compat-wireless-2010-04-21/net/bluetooth/hidp/core.c:872:
>>> warning: assignment from incompatible pointer type
>>> ....
>>> /root/compat-wireless-2010-04-21/net/mac80211/main.c: In function
>>> ‘__check_ieee80211_disable_40mhz_24ghz’:
>>> /root/compat-wireless-2010-04-21/net/mac80211/main.c:37: warning:
>>> return from incompatible pointer type
>>> ...& download ar9271.fw form herer
>>> '[PATCH 0/3] ath9k: add initial ar9271 support' - MARC
>>>
>>> Code:
>>>
>>> root@bt:~/compat-wireless-2010-04-21# make load
>>> Stoping bluetooth service..
>>> Stopping bluetooth: bluetoothd.
>>> * bluetooth is not running.
>>> Unloading b43...
>>> Unloading ar9170usb...
>>> Unloading lib80211...
>>> FATAL: Module lib80211 is in use.
>>> Unloading btusb...
>>> Loading ipw2100...
>>> Loading ipw2200...
>>> Loading libertas_cs...
>>> Loading usb8xxx...
>>> Loading p54pci...
>>> Loading p54usb...
>>> Loading adm8211...
>>> Loading zd1211rw...
>>> Loading rtl8180...
>>> Loading rtl8187...
>>> Loading p54pci...
>>> Loading p54usb...
>>> Loading iwl3945...
>>> Loading iwlagn...
>>> Loading ath...
>>> Loading ar9170usb...
>>> Loading rtl8180...
>>> Loading rtl8187...
>>> Loading rt2400pci...
>>> Loading rt2500pci...
>>> Loading rt61pci...
>>> Loading rt2500usb...
>>> Loading rt73usb...
>>> Loading rndis_wlan...
>>> Loading at76_usb...
>>> FATAL: Module at76_usb not found.
>>> Loading mwl8k...
>>> Loading mac80211_hwsim...
>>> Loading at76c50x_usb...
>>> Loading bluetooth...
>>> Loading btusb...
>>> Loading l2cap...
>>> Loading sco...
>>> Loading hidp...
>>> Loading rfcomm...
>>> Loading bnep...
>>> Module ath_pci not detected -- this is fine
>>> ath5k loaded successfully
>>> ath9k loaded successfully
>>> Module bcm43xx not detected -- this is fine
>>> Disabling wl ...        [OK]    Module disabled:
>>> /lib/modules/2.6.30.9/kernel/net/wireless/wl.ko
>>> FATAL: Error inserting b43
>>> (/lib/modules/2.6.30.9/updates/drivers/net/wireless/b43/b43.ko):
>>> Unknown symbol in module, or unknown parameter (see dmesg)
>>> b43 loaded successfully
>>> b43legacy loaded successfully
>>> Starting bluetooth service..
>>> Starting bluetooth: bluetoothd.
>>> bluetooth is running.
>>> root@bt:~/compat-wireless-2010-04-21# ifconfig
>>> eth0      Link encap:Ethernet  HWaddr 00:2a:4b:18:68:99
>>>           UP BROADCAST MULTICAST  MTU:1500  Metric:1
>>>           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
>>>           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
>>>           collisions:0 txqueuelen:1000
>>>           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
>>>           Interrupt:16
>>>
>>> lo        Link encap:Local Loopback
>>>           inet addr:127.0.0.1  Mask:255.0.0.0
>>>           inet6 addr: ::1/128 Scope:Host
>>>           UP LOOPBACK RUNNING  MTU:16436  Metric:1
>>>           RX packets:218 errors:0 dropped:0 overruns:0 frame:0
>>>           TX packets:218 errors:0 dropped:0 overruns:0 carrier:0
>>>           collisions:0 txqueuelen:0
>>>           RX bytes:10928 (10.9 KB)  TX bytes:10928 (10.9 KB)
>>>
>>> wlan0     Link encap:Ethernet  HWaddr 02:01:20:00:60:00
>>>           UP BROADCAST MULTICAST  MTU:1500  Metric:1
>>>           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
>>>           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
>>>           collisions:0 txqueuelen:1000
>>>           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
>>>
>>> root@bt:~/compat-wireless-2010-04-21# iwconfig
>>> lo        no wireless extensions.
>>>
>>> eth0      no wireless extensions.
>>>
>>> wlan0     IEEE 802.11abgn  Mode:Managed  Access Point: Not-Associated
>>>           Tx-Power=20 dBm
>>>           Retry  long limit:7   RTS thr:off   Fragment thr:off
>>>           Encryption key:off
>>>           Power Management:off
>>>
>>> wlan1     IEEE 802.11abgn  Mode:Managed  Access Point: Not-Associated
>>>           Tx-Power=0 dBm
>>>           Retry  long limit:7   RTS thr:off   Fragment thr:off
>>>           Encryption key:off
>>>           Power Management:off
>>>
>>> hwsim0    no wireless extensions.
>>>
>>> pan0      no wireless extensions.
>>>
>>> root@bt:~/compat-wireless-2010-04-21# ifconfig wlan0 up
>>> root@bt:~/compat-wireless-2010-04-21# iwlist wlan0 scan
>>> wlan0     No scan results
>>>
>>> root@bt:~/compat-wireless-2010-04-21# iwlist wlan1 scan
>>> wlan1     Interface doesn't support scanning : Network is down
>>>
>>> root@bt:~/compat-wireless-2010-04-21# ifconfig wlan1 up
>>> root@bt:~/compat-wireless-2010-04-21# iwlist wlan1 scan
>>> wlan1     No scan results
>>> root@bt:~/compat-wireless-2010-04-21/scripts# ./wlload.sh
>>> Loading ipw2100...
>>> Loading ipw2200...
>>> Loading libertas_cs...
>>> Loading usb8xxx...
>>> Loading p54pci...
>>> Loading p54usb...
>>> Loading adm8211...
>>> Loading zd1211rw...
>>> Loading rtl8180...
>>> Loading rtl8187...
>>> Loading p54pci...
>>> Loading p54usb...
>>> Loading iwl3945...
>>> Loading iwlagn...
>>> Loading ath...
>>> Loading ar9170usb...
>>> Loading rtl8180...
>>> Loading rtl8187...
>>> Loading rt2400pci...
>>> Loading rt2500pci...
>>> Loading rt61pci...
>>> Loading rt2500usb...
>>> Loading rt73usb...
>>> Loading rndis_wlan...
>>> Loading at76_usb...
>>> FATAL: Module at76_usb not found.
>>> Loading mwl8k...
>>> Loading mac80211_hwsim...
>>> Loading at76c50x_usb...
>>> Module ath_pci not detected -- this is fine
>>> ath5k loaded successfully
>>> ath9k loaded successfully
>>> Module bcm43xx not detected -- this is fine
>>> Module wl not detected -- this is fine
>>> FATAL: Error inserting b43
>>> (/lib/modules/2.6.30.9/updates/drivers/net/wireless/b43/b43.ko):
>>> Unknown symbol in module, or unknown parameter (see dmesg)
>
> Please post your dmesg output too.
>
>>> b43 loaded successfully
>>> b43legacy loaded successfully
>>> root@bt:~/compat-wireless-2010-04-21# rebootbcm4311 can not be work
>>> after update comapt-wireless u nder bt4 final.
>>> Last edited by Archangel-Amael; Today at 02:49 PM.
>>>  Edit Post    Reply    Reply With Quote
>>> --------------------------------------------------------------------------------
>>> --
>>> Best Regards
>>> --------------------
>>> SECO
>>>
>>> --------------------------------------------------------------------------------
>>> This information in this e-mail is confidential and may well also be
>>> legally privileged. It is intended solely for the addressee. If you
>>> have received it in error, you are on notice of its status. Please
>>> notify us immediately and then destroy this message. Please do not
>>> copy it or use it for any purposes, or disclose its contents to any
>>> other person: to do so could be a breach of confidence. Thank you for
>>> your co-operation.
>>> --------------------------------------------------------------------------------
>>>
>>
>>
>> --
>> Best Regards
>> --------------------
>> SECO
>>
>> --------------------------------------------------------------------------------
>> This information in this e-mail is confidential and may well also be
>> legally privileged. It is intended solely for the addressee. If you
>> have received it in error, you are on notice of its status. Please
>> notify us immediately and then destroy this message. Please do not
>> copy it or use it for any purposes, or disclose its contents to any
>> other person: to do so could be a breach of confidence. Thank you for
>> your co-operation.
>> --------------------------------------------------------------------------------
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-wireless"
>> in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>
>
>
> --
> Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
>


-- 
Best Regards
--------------------
SECO

--------------------------------------------------------------------------------
This information in this e-mail is confidential and may well also be
legally privileged. It is intended solely for the addressee. If you
have received it in error, you are on notice of its status. Please
notify us immediately and then destroy this message. Please do not
copy it or use it for any purposes, or disclose its contents to any
other person: to do so could be a breach of confidence. Thank you for
your co-operation.
--------------------------------------------------------------------------------

^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Matthew Garrett @ 2010-04-24 20:02 UTC (permalink / raw)
  To: Philippe De Muyter; +Cc: Dan Williams, Larry Finger, linux-wireless
In-Reply-To: <20100424195630.GA15053@frolo.macqel>

On Sat, Apr 24, 2010 at 09:56:30PM +0200, Philippe De Muyter wrote:
> On Sat, Apr 24, 2010 at 04:21:07PM +0100, Matthew Garrett wrote:
> > Does this laptop also have bluetooth?
> 
> No

Hm. I have no idea why hitting the key doesn't change the colour then, 
I'm afraid. On the other hand, it sounds like things are working now? 
The only thing I can suggest is attempting to clear the CMOS data in the 
BIOS menu and see if that changes things.

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Philippe De Muyter @ 2010-04-24 19:56 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: Dan Williams, Larry Finger, linux-wireless
In-Reply-To: <20100424152107.GA13417@srcf.ucam.org>

On Sat, Apr 24, 2010 at 04:21:07PM +0100, Matthew Garrett wrote:
> On Sat, Apr 24, 2010 at 07:42:10AM +0200, Philippe De Muyter wrote:
> 
> > - often wifi is blocked, but (except for `sudo rfkill' now) my daughter had
> > no way to enable it,
> > - the led does not reflect the wifi enabled/disabled state.
> > - messages from kernel about `Unknown key pressed'
> 
> Does this laptop also have bluetooth?

No

Philippe

^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Pedro Francisco @ 2010-04-24 17:28 UTC (permalink / raw)
  To: Vegard Nossum
  Cc: me, John W. Linville, linux-kernel, linux-wireless, mickflemm
In-Reply-To: <q2p19f34abd1004240509r63449b41l379bc14f5c6eaeae@mail.gmail.com>

Mashup of two different mails with identical info.

A Sábado, 24 de Abril de 2010 13:09:20 Vegard Nossum escreveu:
> On 24 April 2010 10:56, Pedro Francisco <pedrogfrancisco@gmail.com> wrote:
-snip
> > 
> > I got a few messages which I pasting here only partially to check for
> > their significance. If significant I'll post them fully:
> Please post all the info you have. Full crash log and full slub-debug
> report are both very interesting.
> 
> Not sure what exactly linux-backports-modules-wireless-lucid-generic
> is, but one way to narrow it down is to NOT use that and see if it
> still crashes.

I *believe* it includes compat-wireless.

As I've yet to understand fully what is compat-wireless I'm following your 
advice: uninstalled linux-backports-modules-wireless-lucid-generic.

> 
> You might find your distro config in /boot/config-*; you could copy
> that to .config in your kernel directory and try to compile (and boot)
> a more recent kernel with that.
> 

I get an error booting as if I'd forgotten to compile my disk's controller; 
since I used the .config of the distro's kernel I doubt that (and I checked). 
Must be  missing some hocus-pocus on using Ubuntu/Debian's `make-kpkg' .

Ubuntu provides mainline kernels, I'm currently with the one of two or three 
days ago, since the current seems to cause X issues, my plan is to boot it 
(linux-image-2.6.34-999-generic_2.6.34-999.201004211003_i386) just for doing 
these tests.


A Sábado, 24 de Abril de 2010 13:05:03 me@bobcopeland.com escreveu:
> On Sat, Apr 24, 2010 at 09:56:45AM +0100, Pedro Francisco wrote:
> > Were those lines significant and shall I post them here?
> 
> Yes, please post the whole message.
Will do ;)


I left the three extra lines at the top to provide a "timeline" of the time 
between leaving kismet running and the time of the first error.

[  109.876670] device wlan1 entered promiscuous mode
[  109.882126] device wlan1mon entered promiscuous mode
[  311.656242] usb 5-1: USB disconnect, address 2
[ 2658.663308] 
=============================================================================
[ 2658.663424] BUG kmalloc-4096: Poison overwritten
[ 2658.663483] 
-----------------------------------------------------------------------------
[ 2658.663486] 
[ 2658.663606] INFO: 0xed3db0c0-0xed3db0cf. First byte 0xc4 instead of 0x6b
[ 2658.663698] INFO: Allocated in ath_rxbuf_alloc+0x30/0xa0 [ath] age=7117 
cpu=0 pid=0
[ 2658.663799] INFO: Freed in skb_release_data+0x70/0xa0 age=0 cpu=0 pid=0
[ 2658.663882] INFO: Slab 0xc15fbb00 objects=7 used=5 fp=0xed3db090 
flags=0x400040c3
[ 2658.663975] INFO: Object 0xed3db090 @offset=12432 fp=0xed3da060
[ 2658.663977] 
[ 2658.664069] Bytes b4 0xed3db080:  00 00 00 00 61 ff 08 00 5a 5a 5a 5a 5a 5a 
5a 5a ....a�..ZZZZZZZZ
[ 2658.664258]   Object 0xed3db090:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.664443]   Object 0xed3db0a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.664629]   Object 0xed3db0b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.664816]   Object 0xed3db0c0:  c4 00 84 00 00 22 43 89 42 69 4e 12 ca 6f 
6f 6f �...."C.BiN.�ooo
[ 2658.665004]   Object 0xed3db0d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.665191]   Object 0xed3db0e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.665377]   Object 0xed3db0f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.665564]   Object 0xed3db100:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.665751]   Object 0xed3db110:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.665937]   Object 0xed3db120:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.666124]   Object 0xed3db130:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.666311]   Object 0xed3db140:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.666498]   Object 0xed3db150:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.666685]   Object 0xed3db160:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.666871]   Object 0xed3db170:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667059]   Object 0xed3db180:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667246]   Object 0xed3db190:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db1f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db200:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db210:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db220:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db230:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db240:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db250:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db260:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db270:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db280:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db290:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db2f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db300:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db310:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db320:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db330:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db340:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db350:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db360:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db370:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db380:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db390:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db3f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db400:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db410:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db420:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db430:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db440:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db450:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db460:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db470:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db480:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db490:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db4f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db500:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db510:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db520:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db530:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db540:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db550:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db560:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db570:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db580:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db590:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db5f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db600:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db610:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db620:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db630:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db640:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db650:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db660:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db670:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db680:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db690:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db6f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db700:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db710:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db720:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db730:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db740:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db750:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db760:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db770:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db780:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db790:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db7f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db800:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db810:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db820:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db840:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db8f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db900:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db910:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db920:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db930:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db940:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db950:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db960:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db970:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db980:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db990:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3db9f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dba90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbaa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbab0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbac0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbad0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbae0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbaf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbb90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbba0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbbb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbbc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbbd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbbe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbbf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbc90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbca0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbcb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbcc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbcd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbce0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbcf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbd90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbda0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbdb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbdc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbdd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbde0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbdf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbe90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbea0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbeb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbec0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbed0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbee0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbef0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbf90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbfa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbfb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbfc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbfd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbfe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dbff0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc000:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc010:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc020:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc030:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc040:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc050:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc060:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc070:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 2658.667258]   Object 0xed3dc080:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b a5 kkkkkkkkkkkkkkk�
[ 2658.667258]  Redzone 0xed3dc090:  bb bb bb bb                                     
����            
[ 2658.667258]  Padding 0xed3dc0b8:  5a 5a 5a 5a 5a 5a 5a 5a                         
ZZZZZZZZ        
[ 2658.667258] Pid: 0, comm: swapper Not tainted 2.6.32-21-generic #32-Ubuntu
[ 2658.667258] Call Trace:
[ 2658.667258]  [<c01faf63>] print_trailer+0xd3/0x120
[ 2658.667258]  [<c01fb07c>] check_bytes_and_report+0xcc/0xf0
[ 2658.667258]  [<c01fc021>] check_object+0x1a1/0x1e0
[ 2658.667258]  [<c01fcc98>] alloc_debug_processing+0xc8/0x190
[ 2658.667258]  [<c01fcf2a>] __slab_alloc+0x1ca/0x220
[ 2658.667258]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 2658.667258]  [<c01fdf5d>] __kmalloc_track_caller+0xcd/0x170
[ 2658.667258]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 2658.667258]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 2658.667258]  [<c04b9782>] __alloc_skb+0x52/0x130
[ 2658.667258]  [<f847e030>] ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 2658.667258]  [<f8b38539>] ath5k_rx_skb_alloc+0x29/0x150 [ath5k]
[ 2658.667258]  [<c04c2087>] ? netif_receive_skb+0x387/0x570
[ 2658.667258]  [<f8b38ce3>] ath5k_tasklet_rx+0xe3/0x580 [ath5k]
[ 2658.667258]  [<f8b33cad>] ? ath5k_hw_calibration_poll+0x1d/0x80 [ath5k]
[ 2658.667258]  [<c0151a77>] tasklet_action+0xa7/0xb0
[ 2658.667258]  [<c0153068>] __do_softirq+0x98/0x1b0
[ 2658.667258]  [<c012293b>] ? ack_apic_level+0x6b/0x170
[ 2658.667258]  [<c016d7de>] ? sched_clock_tick+0x5e/0xa0
[ 2658.667258]  [<c01531c5>] do_softirq+0x45/0x50
[ 2658.667258]  [<c0153315>] irq_exit+0x65/0x70
[ 2658.667258]  [<c058fa25>] do_IRQ+0x55/0xc0
[ 2658.667258]  [<c016d4f5>] ? sched_clock_local+0xa5/0x180
[ 2658.667258]  [<c0103a30>] common_interrupt+0x30/0x40
[ 2658.667258]  [<c016007b>] ? sys_setrlimit+0xcb/0x120
[ 2658.667258]  [<c039ccad>] ? acpi_idle_enter_bm+0x26b/0x29a
[ 2658.667258]  [<c04a076a>] cpuidle_idle_call+0x7a/0x100
[ 2658.667258]  [<c01021d4>] cpu_idle+0x94/0xd0
[ 2658.667258]  [<c0579168>] rest_init+0x58/0x60
[ 2658.667258]  [<c07a38ec>] start_kernel+0x351/0x357
[ 2658.667258]  [<c07a33c7>] ? unknown_bootoption+0x0/0x19e
[ 2658.667258]  [<c07a30aa>] i386_start_kernel+0xaa/0xb1
[ 2658.667258] FIX kmalloc-4096: Restoring 0xed3db0c0-0xed3db0cf=0x6b
[ 2658.667258] 
[ 2658.667258] FIX kmalloc-4096: Marking all objects used
[ 4689.941595] 
=============================================================================
[ 4689.942368] BUG kmalloc-4096: Poison overwritten
[ 4689.943165] 
-----------------------------------------------------------------------------
[ 4689.943167] 
[ 4689.944962] INFO: 0xed3d9080-0xed3d908f. First byte 0xc4 instead of 0x6b
[ 4689.945547] INFO: Allocated in ath_rxbuf_alloc+0x30/0xa0 [ath] age=8 cpu=0 
pid=0
[ 4689.945547] INFO: Freed in skb_release_data+0x70/0xa0 age=0 cpu=0 pid=0
[ 4689.945547] INFO: Slab 0xc15fbb00 objects=7 used=6 fp=0xed3d9030 
flags=0x400040c3
[ 4689.945547] INFO: Object 0xed3d9030 @offset=4144 fp=0x(null)
[ 4689.945547] 
[ 4689.945547] Bytes b4 0xed3d9020:  00 00 00 00 0d bf 10 00 5a 5a 5a 5a 5a 5a 
5a 5a .....�..ZZZZZZZZ
[ 4689.945547]   Object 0xed3d9030:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9040:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9050:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9060:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9070:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9080:  c4 00 70 00 00 22 43 89 42 69 fe 08 eb 14 
14 14 �.p.."C.Bi�.�...
[ 4689.945547]   Object 0xed3d9090:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d90f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9100:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9110:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9120:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9130:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9140:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9150:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9160:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9170:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9180:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9190:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d91f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9200:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9210:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9220:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9230:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9240:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9250:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9260:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9270:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9280:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9290:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d92f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9300:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9310:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9320:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9330:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9340:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9350:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9360:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9370:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9380:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9390:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d93f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9400:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9410:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9420:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9430:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9440:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9450:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9460:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9470:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9480:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9490:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d94f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9500:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9510:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9520:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9530:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9540:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9550:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9560:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9570:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9580:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9590:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d95f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9600:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9610:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9620:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9630:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9640:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9650:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9660:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9670:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9680:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9690:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d96f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9700:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9710:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9720:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9730:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9740:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9750:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9760:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9770:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9780:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9790:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d97f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9800:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9810:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9820:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9840:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d98f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9900:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9910:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9920:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9930:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9940:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9950:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9960:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9970:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9980:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9990:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d99f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9a90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9aa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ab0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ac0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ad0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ae0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9af0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9b90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ba0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9bb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9bc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9bd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9be0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9bf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9c90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ca0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9cb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9cc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9cd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ce0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9cf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9d90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9da0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9db0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9dc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9dd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9de0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9df0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9e90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ea0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9eb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ec0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ed0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ee0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ef0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9f90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9fa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9fb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9fc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9fd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9fe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3d9ff0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3da000:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3da010:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[ 4689.945547]   Object 0xed3da020:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b a5 kkkkkkkkkkkkkkk�
[ 4689.945547]  Redzone 0xed3da030:  bb bb bb bb                                     
����            
[ 4689.945547]  Padding 0xed3da058:  5a 5a 5a 5a 5a 5a 5a 5a                         
ZZZZZZZZ        
[ 4689.945547] Pid: 0, comm: swapper Not tainted 2.6.32-21-generic #32-Ubuntu
[ 4689.945547] Call Trace:
[ 4689.945547]  [<c01faf63>] print_trailer+0xd3/0x120
[ 4689.945547]  [<c01fb07c>] check_bytes_and_report+0xcc/0xf0
[ 4689.945547]  [<c01fc021>] check_object+0x1a1/0x1e0
[ 4689.945547]  [<c01fcc98>] alloc_debug_processing+0xc8/0x190
[ 4689.945547]  [<c01fcf2a>] __slab_alloc+0x1ca/0x220
[ 4689.945547]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 4689.945547]  [<c01fdf5d>] __kmalloc_track_caller+0xcd/0x170
[ 4689.945547]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 4689.945547]  [<f847e030>] ? ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 4689.945547]  [<c04b9782>] __alloc_skb+0x52/0x130
[ 4689.945547]  [<f847e030>] ath_rxbuf_alloc+0x30/0xa0 [ath]
[ 4689.945547]  [<f8b38539>] ath5k_rx_skb_alloc+0x29/0x150 [ath5k]
[ 4689.945547]  [<c016ab98>] ? enqueue_hrtimer+0x78/0xb0
[ 4689.945547]  [<f8b38ce3>] ath5k_tasklet_rx+0xe3/0x580 [ath5k]
[ 4689.945547]  [<f8b33cad>] ? ath5k_hw_calibration_poll+0x1d/0x80 [ath5k]
[ 4689.945547]  [<c0151a77>] tasklet_action+0xa7/0xb0
[ 4689.945547]  [<c0153068>] __do_softirq+0x98/0x1b0
[ 4689.945547]  [<c012293b>] ? ack_apic_level+0x6b/0x170
[ 4689.945547]  [<c016d7de>] ? sched_clock_tick+0x5e/0xa0
[ 4689.945547]  [<c01531c5>] do_softirq+0x45/0x50
[ 4689.945547]  [<c0153315>] irq_exit+0x65/0x70
[ 4689.945547]  [<c058fa25>] do_IRQ+0x55/0xc0
[ 4689.945547]  [<c016d4f5>] ? sched_clock_local+0xa5/0x180
[ 4689.945547]  [<c0103a30>] common_interrupt+0x30/0x40
[ 4689.945547]  [<c016007b>] ? sys_setrlimit+0xcb/0x120
[ 4689.945547]  [<c039ccad>] ? acpi_idle_enter_bm+0x26b/0x29a
[ 4689.945547]  [<c04a076a>] cpuidle_idle_call+0x7a/0x100
[ 4689.945547]  [<c01021d4>] cpu_idle+0x94/0xd0
[ 4689.945547]  [<c0579168>] rest_init+0x58/0x60
[ 4689.945547]  [<c07a38ec>] start_kernel+0x351/0x357
[ 4689.945547]  [<c07a33c7>] ? unknown_bootoption+0x0/0x19e
[ 4689.945547]  [<c07a30aa>] i386_start_kernel+0xaa/0xb1
[ 4689.945547] FIX kmalloc-4096: Restoring 0xed3d9080-0xed3d908f=0x6b
[ 4689.945547] 
[ 4689.945547] FIX kmalloc-4096: Marking all objects used
[14487.161759] 
=============================================================================
[14487.162531] BUG kmalloc-4096: Poison overwritten
[14487.163319] 
-----------------------------------------------------------------------------
[14487.163322] 
[14487.165136] INFO: 0xed378040-0xed378087. First byte 0x80 instead of 0x6b
[14487.165341] INFO: Allocated in ath_rxbuf_alloc+0x30/0xa0 [ath] age=12696 
cpu=0 pid=0
[14487.165341] INFO: Freed in skb_release_data+0x70/0xa0 age=1704 cpu=0 
pid=806
[14487.165341] INFO: Slab 0xc15faf00 objects=7 used=6 fp=0xed378000 
flags=0x400040c3
[14487.165341] INFO: Object 0xed378000 @offset=0 fp=0x(null)
[14487.165341] 
[14487.165341]   Object 0xed378000:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378010:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378020:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378030:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378040:  80 00 00 00 ff ff ff ff ff ff 00 1e 8c 0f 3e af 
....������....>�
[14487.165341]   Object 0xed378050:  00 1e 8c 0f 3e af 90 36 85 b1 08 af 0b 00 
00 00 ....>�.6.�.�....
[14487.165341]   Object 0xed378060:  64 00 11 00 00 04 43 41 53 41 01 04 82 84 
8b 96 d.....CASA......
[14487.165341]   Object 0xed378070:  03 01 09 05 04 00 01 00 00 dd 09 00 10 18 
02 00 .........�......
[14487.165341]   Object 0xed378080:  f0 00 00 00 b2 c4 d1 e4 6b 6b 6b 6b 6b 6b 
6b 6b �...����kkkkkkkk
[14487.165341]   Object 0xed378090:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3780f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378100:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378110:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378120:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378130:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378140:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378150:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378160:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378170:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378180:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378190:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3781f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378200:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378210:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378220:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378230:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378240:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378250:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378260:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378270:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378280:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378290:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3782f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378300:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378310:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378320:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378330:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378340:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378350:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378360:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378370:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378380:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378390:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3783f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378400:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378410:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378420:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378430:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378440:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378450:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378460:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378470:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378480:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378490:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3784f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378500:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378510:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378520:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378530:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378540:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378550:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378560:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378570:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378580:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378590:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3785f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378600:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378610:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378620:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378630:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378640:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378650:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378660:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378670:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378680:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378690:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3786f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378700:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378710:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378720:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378730:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378740:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378750:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378760:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378770:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378780:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378790:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3787f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378800:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378810:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378820:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378840:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3788f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378900:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378910:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378920:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378930:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378940:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378950:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378960:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378970:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378980:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378990:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed3789f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378a90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378aa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ab0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ac0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ad0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ae0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378af0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378b90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ba0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378bb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378bc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378bd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378be0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378bf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378c90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ca0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378cb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378cc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378cd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ce0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378cf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378d90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378da0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378db0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378dc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378dd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378de0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378df0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378e90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ea0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378eb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ec0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ed0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ee0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ef0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378f90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378fa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378fb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378fc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378fd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378fe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[14487.165341]   Object 0xed378ff0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b a5 kkkkkkkkkkkkkkk�
[14487.165341]  Redzone 0xed379000:  bb bb bb bb                                     
����            
[14487.165341]  Padding 0xed379028:  5a 5a 5a 5a 5a 5a 5a 5a                         
ZZZZZZZZ        
[14487.165341] Pid: 2011, comm: kismet_server Not tainted 2.6.32-21-generic 
#32-Ubuntu
[14487.165341] Call Trace:
[14487.165341]  [<c01faf63>] print_trailer+0xd3/0x120
[14487.165341]  [<c01fb07c>] check_bytes_and_report+0xcc/0xf0
[14487.165341]  [<c01fc021>] check_object+0x1a1/0x1e0
[14487.165341]  [<c01fcc98>] alloc_debug_processing+0xc8/0x190
[14487.165341]  [<c01fcf2a>] __slab_alloc+0x1ca/0x220
[14487.165341]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[14487.165341]  [<c01fd038>] kmem_cache_alloc+0xb8/0x120
[14487.165341]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[14487.165341]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[14487.165341]  [<c0222d00>] ? seq_read+0x0/0x3a0
[14487.165341]  [<c0222f7e>] seq_read+0x27e/0x3a0
[14487.165341]  [<c01ea4fb>] ? mmap_region+0x1fb/0x480
[14487.165341]  [<c0222d00>] ? seq_read+0x0/0x3a0
[14487.165341]  [<c024c497>] proc_reg_read+0x67/0xa0
[14487.165341]  [<c02083cf>] vfs_read+0x9f/0x1a0
[14487.165341]  [<c024c430>] ? proc_reg_read+0x0/0xa0
[14487.165341]  [<c0208582>] sys_read+0x42/0x70
[14487.165341]  [<c01033ec>] syscall_call+0x7/0xb
[14487.165341] FIX kmalloc-4096: Restoring 0xed378040-0xed378087=0x6b
[14487.165341] 
[14487.165341] FIX kmalloc-4096: Marking all objects used
[24370.458652] 
=============================================================================
[24370.459425] BUG kmalloc-4096: Poison overwritten
[24370.460011] 
-----------------------------------------------------------------------------
[24370.460011] 
[24370.460011] INFO: 0xed3dc100-0xed3dc147. First byte 0x80 instead of 0x6b
[24370.460011] INFO: Allocated in ath_rxbuf_alloc+0x30/0xa0 [ath] age=13242 
cpu=0 pid=0
[24370.460011] INFO: Freed in skb_release_data+0x70/0xa0 age=2328 cpu=1 
pid=806
[24370.460011] INFO: Slab 0xc15fbb00 objects=7 used=6 fp=0xed3dc0c0 
flags=0x400040c3
[24370.460011] INFO: Object 0xed3dc0c0 @offset=16576 fp=0x(null)
[24370.460011] 
[24370.460011] Bytes b4 0xed3dc0b0:  00 00 00 00 61 ff 08 00 5a 5a 5a 5a 5a 5a 
5a 5a ....a�..ZZZZZZZZ
[24370.460011]   Object 0xed3dc0c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc0d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc0e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc0f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc100:  80 00 00 00 ff ff ff ff ff ff 00 1e 8c 0f 3e af 
....������....>�
[24370.460011]   Object 0xed3dc110:  00 1e 8c 0f 3e af 20 55 8b 31 f3 fb 0d 00 
00 00 ....>�.U.1��....
[24370.460011]   Object 0xed3dc120:  64 00 11 00 00 04 43 41 53 41 01 04 82 84 
8b 96 d.....CASA......
[24370.460011]   Object 0xed3dc130:  03 01 09 05 04 00 01 00 00 dd 09 00 10 18 
02 00 .........�......
[24370.460011]   Object 0xed3dc140:  f0 00 00 00 43 0e a0 28 6b 6b 6b 6b 6b 6b 
6b 6b �...C..(kkkkkkkk
[24370.460011]   Object 0xed3dc150:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc160:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc170:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc180:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc190:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc1f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc200:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc210:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc220:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc230:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc240:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc250:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc260:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc270:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc280:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc290:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc2f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc300:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc310:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc320:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc330:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc340:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc350:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc360:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc370:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc380:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc390:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc3f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc400:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc410:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc420:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc430:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc440:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc450:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc460:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc470:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc480:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc490:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc4f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc500:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc510:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc520:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc530:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc540:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc550:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc560:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc570:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc580:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc590:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc5f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc600:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc610:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc620:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc630:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc640:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc650:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc660:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc670:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc680:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc690:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc6f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc700:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc710:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc720:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc730:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc740:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc750:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc760:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc770:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc780:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc790:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc7f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc800:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc810:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc820:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc830:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc840:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc850:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc860:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc870:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc880:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc890:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc8f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc900:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc910:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc920:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc930:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc940:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc950:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc960:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc970:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc980:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc990:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9c0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9d0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9e0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dc9f0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dca90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcaa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcab0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcac0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcad0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcae0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcaf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcb90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcba0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcbb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcbc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcbd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcbe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcbf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcc90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcca0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dccb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dccc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dccd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcce0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dccf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcd90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcda0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcdb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcdc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcdd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcde0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcdf0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dce90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcea0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dceb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcec0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dced0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcee0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcef0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf00:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf10:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf20:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf30:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf40:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf50:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf60:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf70:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf80:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcf90:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcfa0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcfb0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcfc0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcfd0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcfe0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dcff0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd000:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd010:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd020:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd030:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd040:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd050:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd060:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd070:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd080:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd090:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd0a0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk
[24370.460011]   Object 0xed3dd0b0:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b a5 kkkkkkkkkkkkkkk�
[24370.460011]  Redzone 0xed3dd0c0:  bb bb bb bb                                     
����            
[24370.460011]  Padding 0xed3dd0e8:  5a 5a 5a 5a 5a 5a 5a 5a                         
ZZZZZZZZ        
[24370.460011] Pid: 2011, comm: kismet_server Not tainted 2.6.32-21-generic 
#32-Ubuntu
[24370.460011] Call Trace:
[24370.460011]  [<c01faf63>] print_trailer+0xd3/0x120
[24370.460011]  [<c01fb07c>] check_bytes_and_report+0xcc/0xf0
[24370.460011]  [<c01fc021>] check_object+0x1a1/0x1e0
[24370.460011]  [<c01fcc98>] alloc_debug_processing+0xc8/0x190
[24370.460011]  [<c01fcf2a>] __slab_alloc+0x1ca/0x220
[24370.460011]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[24370.460011]  [<c01fd038>] kmem_cache_alloc+0xb8/0x120
[24370.460011]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[24370.460011]  [<c0222f7e>] ? seq_read+0x27e/0x3a0
[24370.460011]  [<c0222d00>] ? seq_read+0x0/0x3a0
[24370.460011]  [<c0222f7e>] seq_read+0x27e/0x3a0
[24370.460011]  [<c01ea4fb>] ? mmap_region+0x1fb/0x480
[24370.460011]  [<c0222d00>] ? seq_read+0x0/0x3a0
[24370.460011]  [<c024c497>] proc_reg_read+0x67/0xa0
[24370.460011]  [<c02083cf>] vfs_read+0x9f/0x1a0
[24370.460011]  [<c024c430>] ? proc_reg_read+0x0/0xa0
[24370.460011]  [<c0208582>] sys_read+0x42/0x70
[24370.460011]  [<c01033ec>] syscall_call+0x7/0xb
[24370.460011] FIX kmalloc-4096: Restoring 0xed3dc100-0xed3dc147=0x6b
[24370.460011] 
[24370.460011] FIX kmalloc-4096: Marking all objects used




^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Matthew Garrett @ 2010-04-24 15:21 UTC (permalink / raw)
  To: Philippe De Muyter; +Cc: Dan Williams, Larry Finger, linux-wireless
In-Reply-To: <20100424054210.GA23836@frolo.macqel>

On Sat, Apr 24, 2010 at 07:42:10AM +0200, Philippe De Muyter wrote:

> - often wifi is blocked, but (except for `sudo rfkill' now) my daughter had
> no way to enable it,
> - the led does not reflect the wifi enabled/disabled state.
> - messages from kernel about `Unknown key pressed'

Does this laptop also have bluetooth?

-- 
Matthew Garrett | mjg59@srcf.ucam.org

^ permalink raw reply

* Re: RTL 8187b - naughty behaviour
From: Larry Finger @ 2010-04-24 13:59 UTC (permalink / raw)
  To: Rogerio Luz Coelho
  Cc: Gábor Stefanik, linux-wireless, Herton Ronaldo Krzesinski
In-Reply-To: <l2z917a57cb1004240347jcd95308bp5be3b66c8638907d@mail.gmail.com>

On 04/24/2010 05:47 AM, Rogerio Luz Coelho wrote:
> Will check this ... but it seems to be a module ...If I have rtl8187
> and rtl8187b in the blacklist will I be able to load them manually?

Yes, you will be able to load manually. BTW, there is no rtl8187b. Both
the RTL8187L and the RTL8187B (device names) use driver rtl8187.

In future discussions, please trim the replies. We do not need to see
the same stuff over and over.

Larry


^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Vegard Nossum @ 2010-04-24 12:09 UTC (permalink / raw)
  To: Pedro Francisco
  Cc: me, John W. Linville, linux-kernel, linux-wireless, mickflemm
In-Reply-To: <201004240956.45899.pedrogfrancisco@gmail.com>

On 24 April 2010 10:56, Pedro Francisco <pedrogfrancisco@gmail.com> wrote:
> For some reason I am unable to get a kernel I compiled to boot. Since I was
> unable to compile the kernel with those debugging options, I just turned on
> slub_debug on GRUB.
>
> I got a few messages which I pasting here only partially to check for their
> significance. If significant I'll post them fully:

Please post all the info you have. Full crash log and full slub-debug
report are both very interesting.

Not sure what exactly linux-backports-modules-wireless-lucid-generic
is, but one way to narrow it down is to NOT use that and see if it
still crashes.

You might find your distro config in /boot/config-*; you could copy
that to .config in your kernel directory and try to compile (and boot)
a more recent kernel with that.

Good luck,


Vegard

^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: me @ 2010-04-24 12:05 UTC (permalink / raw)
  To: Pedro Francisco; +Cc: John W. Linville, linux-kernel, linux-wireless, mickflemm
In-Reply-To: <201004240956.45899.pedrogfrancisco@gmail.com>

On Sat, Apr 24, 2010 at 09:56:45AM +0100, Pedro Francisco wrote:
> Were those lines significant and shall I post them here?

Yes, please post the whole message.

-- 
Bob Copeland %% www.bobcopeland.com


^ permalink raw reply

* Re: [PATCH] ath9k: use spin_lock_bh() instead of spin_lock() in ath_tid_drain()
From: Ming Lei @ 2010-04-24 10:52 UTC (permalink / raw)
  To: Jongman Heo; +Cc: linux-wireless, ath9k-devel
In-Reply-To: <w2x55d522f11004232132ze7fcf8fdk54c2c8bfae72c64@mail.gmail.com>

2010/4/24 Jongman Heo <jongman.heo@gmail.com>:
> commit a9f042cb ("ath9k: fix lockdep warning when unloading module")
> changed spin_[un]lock() to
> spin_[un]lock_bh() in ath_tx_node_cleanup(), but didn't change those
> in ath_tid_drain().

Did you see any lockdep warning due to ath_tid_drain?

It is not necessary since bh has been disabled before calling
ath_tid_drain.


-- 
Lei Ming

^ permalink raw reply

* Re: RTL 8187b - naughty behaviour
From: Rogerio Luz Coelho @ 2010-04-24 10:47 UTC (permalink / raw)
  To: Gábor Stefanik
  Cc: Larry Finger, linux-wireless, Herton Ronaldo Krzesinski
In-Reply-To: <k2s69e28c911004231316u7fd3118qe971919ed8a433d7@mail.gmail.com>

2010/4/23 Gábor Stefanik <netrolller.3d@gmail.com>:
> 2010/4/22 Rogerio Luz Coelho <rogluz.news@gmail.com>:
>> 2010/4/11 Gábor Stefanik <netrolller.3d@gmail.com>:
>>> 2010/4/10 Rogerio Luz Coelho <rogluz.news@gmail.com>:
>>>> 2010/4/10 Gábor Stefanik <netrolller.3d@gmail.com>:
>>>>> On Sat, Apr 10, 2010 at 2:07 PM, Rogerio Luz Coelho
>>>>> <rogluz.news@gmail.com> wrote:
>>>>>> 2010/4/3 Rogerio Luz Coelho <rogluz.news@gmail.com>:
>>>>>>> 2010/4/3 Larry Finger <Larry.Finger@lwfinger.net>:
>>>>>>>> On 04/03/2010 11:49 AM, Rogerio Luz Coelho wrote:
>>>>>>>>>
>>>>>>>>> I have a MS-Win7 instalation on this Laptop and it works 100% even at
>>>>>>>>> longer distances than you report,even with walls in between.
>>>>>>>>>
>>>>>>>>> Will do the tcpperf test as soon as I get home. There are other with
>>>>>>>>> the same problem with my exact chip here in Brasil , that is because
>>>>>>>>> one of our leading Laptop vendors uses this config.
>>>>>>>>
>>>>>>>> What is the exact make and model of the device? It might be difficult
>>>>>>>> for me to get one in the US, but one of the rtl8187 developers lives in
>>>>>>>> Brazil. He should be able to find one.
>>>>>>>>
>>>>>>>
>>>>>>> It愀 a POSITIVO R430L - Core 2 Duo 4GB RAM
>>>>>>>
>>>>>>>
>>>>>>>>> Does it matter that the USB port used in this setting is a connected
>>>>>>>>> to a USB HUB and then to the mother board?
>>>>>>>>
>>>>>>>> Is the hub passive, or is it powered? If the hub is good and not
>>>>>>>> underpowered, it should be OK.
>>>>>>>>
>>>>>>>>> More details and tests will come your way in a day or two ... will
>>>>>>>>> reinstall Mandriva 2010 and do some tests with older kernels.
>>>>>>>>
>>>>>>>> If you can download an openSUSE 11.2 Live CD and burn it, you would not
>>>>>>>> even have to do an installation. That one has a 2.6.31 kernel.
>>>>>>>>
>>>>>>>> Larry
>>>>>>
>>>>>>
>>>>>> Downloaded and installed:
>>>>>>
>>>>>> OpenSuse 11.2 - LiveCD  result: Gnome Network-Manager tells me there
>>>>>> is connection but no ping resposes, Firefox complains about conections
>>>>>> errors.
>>>>>>
>>>>>> Mandriva 2010.0 (kernel 2.6.31-12) result: concection comes and goes
>>>>>> ... generally the first boot of the day connects, but it lasts less
>>>>>> than 5min. The error code is the "deauthentication by local reason
>>>>>> (reason=3) again.
>>>>>>
>>>>>> MS-Win7 : connects and is as fast as ever.
>>>>>>
>>>>>> -- Any other suggestions?
>>>>>>
>>>>>> Rogerio
>>>>>>
>>>>>> PS: Will give OpenSuse a HD install atempt and will try to debug the
>>>>>> Mandriva for some time, future tries involve Debian Stable (old
>>>>>> kernel) and some Fedora (any suggestions?) and the NDISwrapper drive
>>>>>> in a Debian Testing (the Distro I need working)
>>>>>
>>>>> Hi,
>>>>>
>>>>> Please also test Realtek's official r8187b driver. If possible, please
>>>>> do an mmiotrace on that driver.
>>>>
>>>> Ok ... The official Realtek is only for 32bits systems right ? ( At
>>>> least the guys at Realtek support told me so... ) and this mmiotrace
>>>> can be accomplished how? Is it a program, a command, a debug message
>>>> in some form? Sorry, as I said earlier I am NOT a kernel programer.
>>>>
>>>> Rogerio
>>>>
>>>
>>> You need to enable MMIO tracing support in your kernel config, and
>>> recompile your kernel (assuming it is not enabled already - distros
>>> usually disable the entire tracing framework by default). Then:
>>> -Mount debugfs to /debug. (Usually it is mounted by default, but some
>>> distros like to mount it @ /sys/kernel/debug instead - remount it to
>>> /debug.)
>>> -"echo mmiotrace > /debug/tracing/current_tracer"
>>> -"cat /debug/tracing/trace_pipe >  trace.txt &" - at this point, tracing begins.
>>> -Load r8187b and connect.
>>> -"echo "Driver loaded!" > /debug/tracing/trace_marker"
>>> -"echo nop > /debug/tracing/current_tracer" - tracing ends here.
>>>
>>> Do this for rtl8187 as well.
>>> After each trace, check if "grep -i lost trace.txt" returns anything.
>>> If it does, enlarge the trace buffer and retry:
>>> -"cat /debug/tracing/trace_buffer_kb"
>>> -"echo [BUFSIZE] > /debug/tracing/trace_buffer_kb", where [BUFSIZE] is
>>> recommended to be about twice the number returned by the previous
>>> command.
>>
>> I installed a vanilla kernel 2.6.32.11 , config to rum mmio , but my
>> rtl818x modules are loaded by default and the modprobe -r command
>> doesn't seem to change this ... any ideas ?
>>
>> Rogerio
>
> Did you build rtl8187 as a module? Otherwise modprobe -r can do nothing.
>

Will check this ... but it seems to be a module ...If I have rtl8187
and rtl8187b in the blacklist will I be able to load them manually?

Rogerio



>>
>>
>>>
>>> Repeat these steps until the "lost events" warning disappears. Once
>>> you find the right BUFSIZE for one driver, you can use the same size
>>> for the other one too.
>>>
>>> Hth,
>>> Gábor
>>>
>>> --
>>> Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
>>>
>>
>
>
>
> --
> Vista: [V]iruses, [I]ntruders, [S]pyware, [T]rojans and [A]dware. :-)
>

^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Pedro Francisco @ 2010-04-24  8:59 UTC (permalink / raw)
  To: Maciej Żenczykowski
  Cc: me, John W. Linville, linux-kernel, linux-wireless, mickflemm
In-Reply-To: <v2p55a4f86e1004230943j6b312cacpca585c80096375ea@mail.gmail.com>

I've 2 GB RAM + 5GB swap (got fed up with hibernating not working sometimes), 
so no such errors.

A Sexta, 23 de Abril de 2010 17:43:59 Maciej Żenczykowski escreveu:
> Do you have more than ~2.5-3.5GB of ram (enough to make some ram
> non-32-bit-DMA-accessible) with swiotlb enabled,
> if such are you seeing "DMA: Out of SW-IOMMU space" kernel messages?
> 

^ permalink raw reply

* Re: ath5k misbehaving affecting other kernel parts unrelated?
From: Pedro Francisco @ 2010-04-24  8:56 UTC (permalink / raw)
  To: me; +Cc: John W. Linville, linux-kernel, linux-wireless, mickflemm
In-Reply-To: <20100423163703.GB11112@hash.localnet>

A Sexta, 23 de Abril de 2010 17:37:03 me@bobcopeland.com escreveu:
> On Fri, Apr 23, 2010 at 09:48:23AM -0400, John W. Linville wrote:
> > > a) is it "normal"? I thought modules were somewhat isolated these days.
> > > b) any advices for debugging? I've yet to have two oopses that are
> > > similar....
> 
> Advice for debugging: turn on slub/slab debug options, and possibly
> kmemcheck.  kmemcheck was very helpful for me last time I had such
> a corruption issue.


For some reason I am unable to get a kernel I compiled to boot. Since I was 
unable to compile the kernel with those debugging options, I just turned on 
slub_debug on GRUB.

I got a few messages which I pasting here only partially to check for their 
significance. If significant I'll post them fully:

[ 2658.663308] 
=============================================================================
[ 2658.663424] BUG kmalloc-4096: Poison overwritten
[ 2658.663483] 
-----------------------------------------------------------------------------
[ 2658.663486] 
[ 2658.663606] INFO: 0xed3db0c0-0xed3db0cf. First byte 0xc4 instead of 0x6b
[ 2658.663698] INFO: Allocated in ath_rxbuf_alloc+0x30/0xa0 [ath] age=7117 
cpu=0 pid=0
[ 2658.663799] INFO: Freed in skb_release_data+0x70/0xa0 age=0 cpu=0 pid=0
[ 2658.663882] INFO: Slab 0xc15fbb00 objects=7 used=5 fp=0xed3db090 
flags=0x400040c3
[ 2658.663975] INFO: Object 0xed3db090 @offset=12432 fp=0xed3da060
[ 2658.663977] 
[ 2658.664069] Bytes b4 0xed3db080:  00 00 00 00 61 ff 08 00 5a 5a 5a 5a 5a 5a 
5a 5a ....a<FF>..ZZZZZZZZ
[ 2658.664258]   Object 0xed3db090:  6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 
6b 6b kkkkkkkkkkkkkkkk

(a lot of lines with memory contents omitted)

[ 2658.667258]  Redzone 0xed3dc090:  bb bb bb bb                                     
<BB><BB><BB><BB>            
[ 2658.667258]  Padding 0xed3dc0b8:  5a 5a 5a 5a 5a 5a 5a 5a                         
ZZZZZZZZ        
[ 2658.667258] Pid: 0, comm: swapper Not tainted 2.6.32-21-generic #32-Ubuntu
[ 2658.667258] Call Trace:
[ 2658.667258]  [<c01faf63>] print_trailer+0xd3/0x120
[ 2658.667258]  [<c01fb07c>] check_bytes_and_report+0xcc/0xf0
[ 2658.667258]  [<c01fc021>] check_object+0x1a1/0x1e0
[ 2658.667258]  [<c01fcc98>] alloc_debug_processing+0xc8/0x190
(...)


[ 2658.667258] FIX kmalloc-4096: Restoring 0xed3db0c0-0xed3db0cf=0x6b
[ 2658.667258] 
[ 2658.667258] FIX kmalloc-4096: Marking all objects used
[ 4689.941595] 


And I've two or three more similar messages. The system was apparently stable 
in the morning though I had an error on the console:

[24370.460011] Pid: 2011, comm: kismet_server Not tainted 2.6.32-21-generic 
#32-Ubuntu
[24370.460011] Call Trace:
(...)


The latest daily from Ubuntu PPA wouldn't boot, the one from 2 or 3 days ago 
did, if needed I can install that one.


Were those lines significant and shall I post them here?


Thank you for your time,
-- 
Pedro

^ permalink raw reply

* Re: b43 'hardware blocked' but only keyboard/led touch button
From: Philippe De Muyter @ 2010-04-24  5:42 UTC (permalink / raw)
  To: Matthew Garrett; +Cc: Dan Williams, Larry Finger, linux-wireless
In-Reply-To: <20100419150627.GA10680@srcf.ucam.org>

Hello Matthew,

On Mon, Apr 19, 2010 at 04:06:28PM +0100, Matthew Garrett wrote:
> On Mon, Apr 19, 2010 at 05:00:50PM +0200, Philippe De Muyter wrote:
> > On Mon, Apr 19, 2010 at 03:51:07PM +0100, Matthew Garrett wrote:
> > > On Mon, Apr 19, 2010 at 01:53:29PM +0200, Philippe De Muyter wrote:
> > > 
> > > > and the blue/red led doesn't change color, and wifi state does not change
> > > > either.
> > > 
> > > What's the output of the rfkill command now?
> > 
> > Sorry, I cannot answer before friday (not my laptop).
> 
> No problem. The best command to run will be
> 
> rfkill list
> 
> and then just attach the output.

Here you are :

Led is blue, wifi does not work (testing with airodump-ng)

	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: yes
		Hard blocked: no
	1: phy0: Wireless LAN
		Soft blocked: yes
		Hard blocked: no
	linux-m1ew:~ # rfkill unblock hp-wifi
	Bogus unblock argument 'hp-wifi'.
	linux-m1ew:~ # rfkill unblock 0
	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	1: phy0: Wireless LAN
		Soft blocked: yes
		Hard blocked: no
	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	1: phy0: Wireless LAN
		Soft blocked: yes
		Hard blocked: no
	linux-m1ew:~ # rfkill unblock 1
	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	1: phy0: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	linux-m1ew:~ # 

Led is still blue, wifi works

Touching the soft key
Led stays blue, wifi does not work anymore (testing with airodump-ng)

	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: no
		Hard blocked: yes
	1: phy0: Wireless LAN
		Soft blocked: no
		Hard blocked: yes
	linux-m1ew:~ # dmesg | tail
	[  494.758041] b43 ssb0:0: firmware: requesting b43/lp0bsinitvals15.fw
	[ 1390.158487] atkbd serio0: Unknown key pressed (translated set 2, code 0x94 on isa0060/serio0).
	[ 1390.158501] atkbd serio0: Use 'setkeycodes e014 <keycode>' to make it known.
	[ 1390.165406] atkbd serio0: Unknown key released (translated set 2, code 0x94 on isa0060/serio0).
	[ 1390.165418] atkbd serio0: Use 'setkeycodes e014 <keycode>' to make it known.
	[ 1390.988287] b43-phy0: Radio hardware status changed to DISABLED
	[ 1390.992840] b43-phy0: Radio turned on by software
	[ 1390.992854] b43-phy0: The hardware RF-kill button still turns the radio physically off. Press the button to turn it on.
	linux-m1ew:~ # 

Touching the soft key again
Led stays blue, wifi works again (testing with airodump-ng)

	linux-m1ew:~ # rfkill list
	0: hp-wifi: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	1: phy0: Wireless LAN
		Soft blocked: no
		Hard blocked: no
	linux-m1ew:~ # dmesg | tail
	[ 1390.988287] b43-phy0: Radio hardware status changed to DISABLED
	[ 1390.992840] b43-phy0: Radio turned on by software
	[ 1390.992854] b43-phy0: The hardware RF-kill button still turns the radio physically off. Press the button to turn it on.
	[ 1447.758302] atkbd serio0: Unknown key pressed (translated set 2, code 0x94 on isa0060/serio0).
	[ 1447.758312] atkbd serio0: Use 'setkeycodes e014 <keycode>' to make it known.
	[ 1447.764038] atkbd serio0: Unknown key released (translated set 2, code 0x94 on isa0060/serio0).
	[ 1447.764048] atkbd serio0: Use 'setkeycodes e014 <keycode>' to make it known.
	[ 1451.008317] b43-phy0: Radio hardware status changed to ENABLED
	[ 1451.252283] b43-phy0: Loading firmware version 478.104 (2008-07-01 00:50:23)
	[ 1456.785018] ADDRCONF(NETDEV_UP): wlan0: link is not ready
	linux-m1ew:~ # 

So the problems are :

- often wifi is blocked, but (except for `sudo rfkill' now) my daughter had
no way to enable it,
- the led does not reflect the wifi enabled/disabled state.
- messages from kernel about `Unknown key pressed'

Philippe

Philippe De Muyter  phdm at macqel dot be  Tel +32 27029044
Macq Electronique SA  rue de l'Aeronef 2  B-1140 Bruxelles  Fax +32 27029077

^ permalink raw reply

* [PATCH] ath9k: use spin_lock_bh() instead of spin_lock() in ath_tid_drain()
From: Jongman Heo @ 2010-04-24  4:32 UTC (permalink / raw)
  To: linux-wireless, ath9k-devel

commit a9f042cb ("ath9k: fix lockdep warning when unloading module")
changed spin_[un]lock() to
spin_[un]lock_bh() in ath_tx_node_cleanup(), but didn't change those
in ath_tid_drain().

Signed-off-by: Jongman Heo <jongman.heo@gmail.com>

diff --git a/drivers/net/wireless/ath/ath9k/xmit.c
b/drivers/net/wireless/ath/ath9k/xmit.c
index 294b486..daf073b 100644
--- a/drivers/net/wireless/ath/ath9k/xmit.c
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
@@ -235,9 +235,9 @@ static void ath_tid_drain(struct ath_softc *sc,
struct ath_txq *txq,
 		if (bf_isretried(bf))
 			ath_tx_update_baw(sc, tid, bf->bf_seqno);

-		spin_unlock(&txq->axq_lock);
+		spin_unlock_bh(&txq->axq_lock);
 		ath_tx_complete_buf(sc, bf, txq, &bf_head, 0, 0);
-		spin_lock(&txq->axq_lock);
+		spin_lock_bh(&txq->axq_lock);
 	}

 	tid->seq_next = tid->seq_start;

^ permalink raw reply related

* Re: [PATCH] ath9k: Avoid corrupt frames being forwarded to mac80211.
From: Felix Fietkau @ 2010-04-24  3:45 UTC (permalink / raw)
  To: Vivek Natarajan; +Cc: linville, linux-wireless, stable, Ranga Rao Ravuri
In-Reply-To: <1272007564-6265-1-git-send-email-vnatarajan@atheros.com>

On 2010-04-23 9:26 AM, Vivek Natarajan wrote:
> If bit 29 is set, MAC H/W can attempt to decrypt the received aggregate
> with WEP or TKIP, eventhough the received frame may be a CRC failed
> corrupted frame.
> 
> Cc: stable@kernel.org
> Reported-by: Johan Hovold <johan.hovold@lundinova.se>
> Signed-off-by: Vivek Natarajan <vnatarajan@atheros.com>
> Signed-off-by: Ranga Rao Ravuri <ranga.ravuri@atheros.com>
> ---
>  drivers/net/wireless/ath/ath9k/ar5008_initvals.h |    2 +-
>  drivers/net/wireless/ath/ath9k/ar9002_initvals.h |    8 ++++----
>  2 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/net/wireless/ath/ath9k/ar5008_initvals.h b/drivers/net/wireless/ath/ath9k/ar5008_initvals.h
> index cd953f6..025c31a 100644
> --- a/drivers/net/wireless/ath/ath9k/ar5008_initvals.h
> +++ b/drivers/net/wireless/ath/ath9k/ar5008_initvals.h
> @@ -249,7 +249,7 @@ static const u32 ar5416Common[][2] = {
>      { 0x00008258, 0x00000000 },
>      { 0x0000825c, 0x400000ff },
>      { 0x00008260, 0x00080922 },
> -    { 0x00008264, 0xa8000010 },
> +    { 0x00008264, 0x88000010 },
I don't think this is enough. This register is called
AR_MAC_PCU_LOGIC_ANALYZER and the field you're modifying
(AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768) is being touched by the function
ar9002_hw_enable_async_fifo() in ar9002_hw.c.
So unless this AR9287 v1.2 or later is unaffected by this issue, the
REG_SET_BIT call should be removed as well.
By the way, is this change in the other Atheros codebases as well? If
so, maybe this change should go into the ini override functions instead,
to make it easier to keep initvals in sync.

- Felix

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox