LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* ipw3945: not only it periodically dies, it also BUG()s
@ 2008-02-05 21:44 Pavel Machek
  2008-02-05 22:59 ` Pavel Machek
  2008-02-06  2:20 ` Chatre, Reinette
  0 siblings, 2 replies; 10+ messages in thread
From: Pavel Machek @ 2008-02-05 21:44 UTC (permalink / raw)
  To: ipw3945-devel, reinette.chatre, linux-wireless, yi.zhu, kernel list

Hi!

Under not-even-high load, it periodically restarts:

Feb  5 21:08:50 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 21:08:52 amd kernel: iwl3945: Can't stop Rx DMA.
Feb  5 21:12:51 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 21:12:53 amd kernel: iwl3945: Can't stop Rx DMA.
Feb  5 21:21:44 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 21:21:46 amd kernel: iwl3945: Can't stop Rx DMA.
Feb  5 21:27:32 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 21:27:34 amd kernel: iwl3945: Can't stop Rx DMA.
Feb  5 21:41:29 amd -- MARK --
Feb  5 22:01:29 amd -- MARK --
Feb  5 22:09:11 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 22:09:12 amd kernel: iwl3945: Can't stop Rx DMA.

...I've reported this before, with full debugging. Not sure if
anything happened.

Now, I got BUG() in iwl3945-base.c: 3824

static void iwl3945_tx_cmd_complete(struct iwl3945_priv *priv,
                                struct iwl3945_rx_mem_buffer *rxb)
{
        struct iwl3945_rx_packet *pkt = (struct iwl3945_rx_packet
*)rxb->skb->data;
        u16 sequence = le16_to_cpu(pkt->hdr.sequence);
        int txq_id = SEQ_TO_QUEUE(sequence);
        int index = SEQ_TO_INDEX(sequence);
        int huge = sequence & SEQ_HUGE_FRAME;
        int cmd_index;
        struct iwl3945_cmd *cmd;

        /* If a Tx command is being handled and it isn't in the actual
         * command queue then there a command routing bug has been
introduced
         * in the queue management code. */
        if (txq_id != IWL_CMD_QUEUE_NUM)
                IWL_ERROR("Error wrong command queue %d command id
0x%X\n",
                          txq_id, pkt->hdr.cmd);
        BUG_ON(txq_id != IWL_CMD_QUEUE_NUM);
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Here. Any ideas?
									Pavel

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-05 21:44 ipw3945: not only it periodically dies, it also BUG()s Pavel Machek
@ 2008-02-05 22:59 ` Pavel Machek
  2008-02-06  2:20 ` Chatre, Reinette
  1 sibling, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2008-02-05 22:59 UTC (permalink / raw)
  To: ipw3945-devel, reinette.chatre, linux-wireless, yi.zhu, kernel list

On Tue 2008-02-05 22:44:41, Pavel Machek wrote:
> Hi!
> 
> Under not-even-high load, it periodically restarts:
> 
> Feb  5 21:08:50 amd kernel: iwl3945: Microcode SW error detected.
> Restarting 0x82000008.
> Feb  5 21:08:52 amd kernel: iwl3945: Can't stop Rx DMA.
> Feb  5 21:12:51 amd kernel: iwl3945: Microcode SW error detected.
> Restarting 0x82000008.
> Feb  5 21:12:53 amd kernel: iwl3945: Can't stop Rx DMA.
> Feb  5 21:21:44 amd kernel: iwl3945: Microcode SW error detected.
> Restarting 0x82000008.
> Feb  5 21:21:46 amd kernel: iwl3945: Can't stop Rx DMA.
> Feb  5 21:27:32 amd kernel: iwl3945: Microcode SW error detected.
> Restarting 0x82000008.
> Feb  5 21:27:34 amd kernel: iwl3945: Can't stop Rx DMA.
> Feb  5 21:41:29 amd -- MARK --
> Feb  5 22:01:29 amd -- MARK --
> Feb  5 22:09:11 amd kernel: iwl3945: Microcode SW error detected.
> Restarting 0x82000008.
> Feb  5 22:09:12 amd kernel: iwl3945: Can't stop Rx DMA.
> 

Now it decided to be original:

Feb  5 23:55:39 amd kernel: ACPI: EC: missing write data confirmation,
don't expect it any longer.
Feb  5 23:57:37 amd kernel: iwl3945: Microcode SW error detected.
Restarting 0x82000008.
Feb  5 23:57:37 amd kernel: iwl3945: TODO:  Implement Tx ABORT
REQUIRED!!!
Feb  5 23:57:39 amd kernel: iwl3945: Can't stop Rx DMA.

									Pavel

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-05 21:44 ipw3945: not only it periodically dies, it also BUG()s Pavel Machek
  2008-02-05 22:59 ` Pavel Machek
@ 2008-02-06  2:20 ` Chatre, Reinette
  2008-02-06 14:32   ` Pavel Machek
  1 sibling, 1 reply; 10+ messages in thread
From: Chatre, Reinette @ 2008-02-06  2:20 UTC (permalink / raw)
  To: Pavel Machek, ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

On Tuesday, February 05, 2008 1:45 PM, Pavel Machek  wrote:

> 
> ...I've reported this before, with full debugging. Not sure if
> anything happened. 

Could you please point me to where you have reported it before?

> Now, I got BUG() in iwl3945-base.c: 3824

Which driver and kernel are you using?

Reinette


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-06  2:20 ` Chatre, Reinette
@ 2008-02-06 14:32   ` Pavel Machek
  2008-02-06 17:13     ` Chatre, Reinette
  0 siblings, 1 reply; 10+ messages in thread
From: Pavel Machek @ 2008-02-06 14:32 UTC (permalink / raw)
  To: Chatre, Reinette; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]

On Tue 2008-02-05 18:20:58, Chatre, Reinette wrote:
> On Tuesday, February 05, 2008 1:45 PM, Pavel Machek  wrote:
> 
> > 
> > ...I've reported this before, with full debugging. Not sure if
> > anything happened. 
> 
> Could you please point me to where you have reported it before?

>From pavel@ucw.cz Wed Oct 31 01:52:02 2007
From: Pavel Machek <pavel@ucw.cz>
To: linux-wireless@vger.kernel.org,
        kernel list <linux-kernel@vger.kernel.org>,
        ipw3945-devel@lists.sourceforge.net, yi.zhu@intel.com
Subject: iwl3945 in 2.6.24-rc1 dies under load
X-Warning: Reading this can be dangerous to your mental health.

...and thread that resulted.

> > Now, I got BUG() in iwl3945-base.c: 3824
> 
> Which driver and kernel are you using?

I'm using the default driver present in 2.6.24-git; I did git
checkout, this is the newest commit I have from Linus:

commit ae9458d6a0956aa21cb49e1251e35a8d4dacbe6e
tree 98c162c79113bc2bd748a3ad5b6fb5ba66139751
parent 63e9b66e29357dd12e8b1d3ebf7036e7591f81e3
parent e91926e9ea9073d8ce95b74602e8c2d775f5a793
author Linus Torvalds <torvalds@linux-foundation.org> Sat, 02 Feb 2008
15:13:05 +1100
committer Linus Torvalds <torvalds@linux-foundation.org> Sat, 02 Feb
2008 15:13:05 +1100

    Merge git://git.infradead.org/battery-2.6

								Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

[-- Attachment #2: delme --]
[-- Type: text/plain, Size: 22178 bytes --]

>From pavel@ucw.cz Thu Nov  1 01:12:21 2007
Date: Thu, 1 Nov 2007 01:12:21 +0100
From: Pavel Machek <pavel@ucw.cz>
To: Zhu Yi <yi.zhu@intel.com>
Cc: linux-wireless@vger.kernel.org,
	kernel list <linux-kernel@vger.kernel.org>,
	ipw3945-devel@lists.sourceforge.net
Subject: Re: iwl3945 in 2.6.24-rc1 dies under load
Message-ID: <20071101001221.GA1755@elf.ucw.cz>
References: <20071031005202.GA1534@elf.ucw.cz> <1193792098.9704.16.camel@debian.sh.intel.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <1193792098.9704.16.camel@debian.sh.intel.com>
X-Warning: Reading this can be dangerous to your mental health.
User-Agent: Mutt/1.5.16 (2007-06-11)
Status: RO
Content-Length: 21428
Lines: 456

Hi!

> > tcpspray -n 1 -b 10000000 10.0.0.2
> > 
> > Oct 31 01:42:56 amd kernel: iwl3945: Microcode SW error detected.
> > Restarting 0x82000008.
> > Oct 31 01:42:56 amd kernel: iwl3945: Error Reply type 0x00000005 cmd
> > REPLY_TX (0x1C) seq 0x02C7 ser 0x0000004B
> > Oct 31 01:42:58 amd kernel: iwl3945: Can't stop Rx DMA.
> 
> Please attach the dmesg with module param debug=0x43fff (make sure
> CONFIG_IWLWIFI_DEBUG is selected). This will dump the firmware event log
> for debug.

I could reproduce it with reduced deubgging... after 2 hours or so,
and I did 2x tcpspray + ping -f.

Is it useful, or is full dump needed?
								Pavel

iwl3945: I iwl_rx_handle r = 124, i = 123, REPLY_3945_RX, 0x1b
iwl3945: I iwl_rx_handle r = 125, i = 124, STATISTICS_NOTIFICATION, 0x9d
iwl3945: U iwl_pci_remove *** UNLOAD DRIVER ***
iwl3945: U __iwl_down iwl3945 is going down
iwl3945: U iwl_hw_nic_stop_master stop master
iwl3945: U iwl_clear_free_frames 0 frames on pre-allocated heap on clear.
iwl3945: U iwl_mac_remove_interface enter
iwl3945: U iwl_mac_remove_interface leave
iwl3945: U iwl_mac_stop enter
iwl3945: U iwl_mac_stop leave
ACPI: PCI interrupt for device 0000:03:00.0 disabled
iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.1.17kds
iwl3945: Copyright(c) 2003-2007 Intel Corporation
PCI: Setting latency timer of device 0000:03:00.0 to 64
iwl3945: Detected Intel PRO/Wireless 3945ABG Network Connection
iwl3945: Tunable channels: 11 802.11bg, 13 802.11a channels
phy2: Selected rate control algorithm 'simple'
wlan0: Initial auth_alg=0
wlan0: authenticate with AP 00:11:2f:0e:95:a0
wlan0: RX authentication from 00:11:2f:0e:95:a0 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:11:2f:0e:95:a0
wlan0: RX AssocResp from 00:11:2f:0e:95:a0 (capab=0x401 status=0 aid=1)
wlan0: associated
wlan0: switched to short barker preamble (BSSID=00:11:2f:0e:95:a0)
iwl3945: iwl-3945-rs not selected as rate control algo!
wlan0: No ProbeResp from current AP 00:11:2f:0e:95:a0 - assume out of range
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: deauthenticated
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=6)
wlan0: authenticate with AP 00:11:2f:0e:95:a0
wlan0: RX authentication from 00:11:2f:0e:95:a0 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:11:2f:0e:95:a0
wlan0: RX ReassocResp from 00:11:2f:0e:95:a0 (capab=0x401 status=0 aid=1)
wlan0: associated
wlan0: switched to short barker preamble (BSSID=00:11:2f:0e:95:a0)
iwl3945: iwl-3945-rs not selected as rate control algo!
wlan0: CTS protection enabled (BSSID=00:11:2f:0e:95:a0)
iwl3945: Microcode SW error detected.  Restarting 0x82000008.
iwl3945: Start IWL Error Log Dump:
iwl3945: Status: 0x00010172, Config: 00000000 count: 1
iwl3945: Desc       Time       asrtPC  blink2 ilink1  nmiPC   Line
iwl3945: SYSASSERT     (#5) 0403761131 0x0089A 0x0025E 0x00300 0x073C2 75

iwl3945: Start IWL Event Log Dump: display count 256, wraps 86422
iwl3945: 0000000256	0x0000006a	403761132
iwl3945: 0000000217	0x0000012d	403755413
iwl3945: 0000000047	0x00000161	8394228
iwl3945: 0000228273	0x00000160	403755488
iwl3945: 0000000000	0x0000006a	403755497
iwl3945: 0000000217	0x0000012d	403755504
iwl3945: 0000000000	0x00000161	403755506
iwl3945: 0000228274	0x00000160	403755577
iwl3945: 0000000000	0x0000006a	403755586
iwl3945: 0000000217	0x0000012d	403755593
iwl3945: 0000000000	0x00000161	403755595
iwl3945: 0000228275	0x00000160	403755668
iwl3945: 0000000000	0x0000006a	403755677
iwl3945: 0000000217	0x0000012d	403755684
iwl3945: 0000000000	0x00000161	403755686
iwl3945: 0000228276	0x00000160	403755757
iwl3945: 0000000000	0x0000006a	403755766
iwl3945: 0000000217	0x0000012d	403755773
iwl3945: 0000000000	0x00000161	403755775
iwl3945: 0000228277	0x00000160	403755849
iwl3945: 0000000000	0x0000006a	403755858
iwl3945: 0000000217	0x0000012d	403755865
iwl3945: 0000000000	0x00000161	403755866
iwl3945: 0000228278	0x00000160	403755941
iwl3945: 0000000000	0x0000006a	403755950
iwl3945: 0000000217	0x0000012d	403755957
iwl3945: 0000000000	0x00000161	403755958
iwl3945: 0000228279	0x00000160	403756032
iwl3945: 0000000000	0x0000006a	403756041
iwl3945: 0000000217	0x0000012d	403756048
iwl3945: 0000000000	0x00000161	403756050
iwl3945: 0000228280	0x00000160	403756123
iwl3945: 0000000000	0x0000006a	403756132
iwl3945: 0000000217	0x0000012d	403756139
iwl3945: 0000000000	0x00000161	403756141
iwl3945: 0000228281	0x00000160	403756212
iwl3945: 0000000000	0x0000006a	403756221
iwl3945: 0000000217	0x0000012d	403756228
iwl3945: 0000000000	0x00000161	403756230
iwl3945: 0000228282	0x00000160	403756303
iwl3945: 0000000000	0x0000006a	403756312
iwl3945: 0000000217	0x0000012d	403756319
iwl3945: 0000000000	0x00000161	403756321
iwl3945: 0000228283	0x00000160	403756392
iwl3945: 0000000000	0x0000006a	403756401
iwl3945: 0000000217	0x0000012d	403756408
iwl3945: 0000000000	0x00000161	403756410
iwl3945: 0000228284	0x00000160	403756484
iwl3945: 0000000000	0x0000006a	403756493
iwl3945: 0000000217	0x0000012d	403756500
iwl3945: 0000000000	0x00000161	403756502
iwl3945: 0000228285	0x00000160	403756576
iwl3945: 0000000000	0x0000006a	403756585
iwl3945: 0000000217	0x0000012d	403756592
iwl3945: 0000000000	0x00000161	403756594
iwl3945: 0000228286	0x00000160	403756667
iwl3945: 0000000000	0x0000006a	403756676
iwl3945: 0000000217	0x0000012d	403756683
iwl3945: 0000000000	0x00000161	403756685
iwl3945: 0000228287	0x00000160	403756758
iwl3945: 0000000000	0x0000006a	403756767
iwl3945: 0000000217	0x0000012d	403756774
iwl3945: 0000000000	0x00000161	403756776
iwl3945: 0000228288	0x00000160	403756847
iwl3945: 0000000000	0x0000006a	403756856
iwl3945: 0000000217	0x0000012d	403756863
iwl3945: 0000000000	0x00000161	403756865
iwl3945: 0000228289	0x00000160	403756938
iwl3945: 0000000000	0x0000006a	403756947
iwl3945: 0000000217	0x0000012d	403756954
iwl3945: 0000000000	0x00000161	403756956
iwl3945: 0000228290	0x00000160	403757027
iwl3945: 0000000000	0x0000006a	403757036
iwl3945: 0000000217	0x0000012d	403757043
iwl3945: 0000000000	0x00000161	403757045
iwl3945: 0000228291	0x00000160	403757118
iwl3945: 0000000000	0x0000006a	403757127
iwl3945: 0000000217	0x0000012d	403757134
iwl3945: 0000000000	0x00000161	403757136
iwl3945: 0000228292	0x00000160	403757207
iwl3945: 0000000000	0x0000006a	403757216
iwl3945: 0000000217	0x0000012d	403757223
iwl3945: 0000000000	0x00000161	403757225
iwl3945: 0000228293	0x00000160	403757296
iwl3945: 0000000000	0x0000006a	403757305
iwl3945: 0000000217	0x0000012d	403757312
iwl3945: 0000000000	0x00000161	403757314
iwl3945: 0000228294	0x00000160	403757387
iwl3945: 0000000000	0x0000006a	403757396
iwl3945: 0000000217	0x0000012d	403757403
iwl3945: 0000000000	0x00000161	403757405
iwl3945: 0000228295	0x00000160	403757477
iwl3945: 0000000000	0x0000006a	403757486
iwl3945: 0000000217	0x0000012d	403757493
iwl3945: 0000000000	0x00000161	403757494
iwl3945: 0000228296	0x00000160	403757566
iwl3945: 0000000000	0x0000006a	403757575
iwl3945: 0000000217	0x0000012d	403757582
iwl3945: 0000000000	0x00000161	403757584
iwl3945: 0000228297	0x00000160	403757675
iwl3945: 0000000000	0x0000006a	403757684
iwl3945: 0000000217	0x0000012d	403757690
iwl3945: 0000000000	0x00000161	403757692
iwl3945: 0000228298	0x00000160	403757763
iwl3945: 0000000000	0x0000006a	403757772
iwl3945: 0000000217	0x0000012d	403757779
iwl3945: 0000000000	0x00000161	403757781
iwl3945: 0000228299	0x00000160	403757852
iwl3945: 0000000000	0x0000006a	403757861
iwl3945: 0000000217	0x0000012d	403757868
iwl3945: 0000000000	0x00000161	403757870
iwl3945: 0000228300	0x00000160	403757942
iwl3945: 0000000000	0x0000006a	403757951
iwl3945: 0000000217	0x0000012d	403757958
iwl3945: 0000000000	0x00000161	403757960
iwl3945: 0000228301	0x00000160	403758033
iwl3945: 0000000000	0x0000006a	403758042
iwl3945: 0000000217	0x0000012d	403758049
iwl3945: 0000000000	0x00000161	403758051
iwl3945: 0000228302	0x00000160	403758123
iwl3945: 0000000000	0x0000006a	403758132
iwl3945: 0000000217	0x0000012d	403758139
iwl3945: 0000000000	0x00000161	403758140
iwl3945: 0000228303	0x00000160	403758214
iwl3945: 0000000000	0x0000006a	403758222
iwl3945: 0000000217	0x0000012d	403758229
iwl3945: 0000000000	0x00000161	403758231
iwl3945: 0000228304	0x00000160	403758302
iwl3945: 0000000000	0x0000006a	403758311
iwl3945: 0000000217	0x0000012d	403758318
iwl3945: 0000000000	0x00000161	403758320
iwl3945: 0000228305	0x00000160	403758391
iwl3945: 0000000000	0x0000006a	403758400
iwl3945: 0000000217	0x0000012d	403758407
iwl3945: 0000000000	0x00000161	403758409
iwl3945: 0000228306	0x00000160	403758483
iwl3945: 0000000000	0x0000006a	403758492
iwl3945: 0000000217	0x0000012d	403758499
iwl3945: 0000000000	0x00000161	403758500
iwl3945: 0000228307	0x00000160	403758575
iwl3945: 0000000000	0x0000006a	403758584
iwl3945: 0000000217	0x0000012d	403758591
iwl3945: 0000000000	0x00000161	403758592
iwl3945: 0000228308	0x00000160	403758666
iwl3945: 0000000000	0x0000006a	403758675
iwl3945: 0000000217	0x0000012d	403758682
iwl3945: 0000000000	0x00000161	403758684
iwl3945: 0000228309	0x00000160	403758757
iwl3945: 0000000000	0x0000006a	403758766
iwl3945: 0000000217	0x0000012d	403758773
iwl3945: 0000000000	0x00000161	403758775
iwl3945: 0000228310	0x00000160	403758846
iwl3945: 0000000000	0x0000006a	403758855
iwl3945: 0000000217	0x0000012d	403758862
iwl3945: 0000000000	0x00000161	403758864
iwl3945: 0000228311	0x00000160	403758937
iwl3945: 0000000000	0x0000006a	403758946
iwl3945: 0000000217	0x0000012d	403758953
iwl3945: 0000000000	0x00000161	403758955
iwl3945: 0000228312	0x00000160	403759026
iwl3945: 0000000000	0x0000006a	403759035
iwl3945: 0000000217	0x0000012d	403759042
iwl3945: 0000000000	0x00000161	403759044
iwl3945: 0000228313	0x00000160	403759118
iwl3945: 0000000000	0x0000006a	403759127
iwl3945: 0000000217	0x0000012d	403759134
iwl3945: 0000000000	0x00000161	403759136
iwl3945: 0000228314	0x00000160	403759210
iwl3945: 0000000000	0x0000006a	403759219
iwl3945: 0000000217	0x0000012d	403759226
iwl3945: 0000000000	0x00000161	403759228
iwl3945: 0000228315	0x00000160	403759301
iwl3945: 0000000000	0x0000006a	403759310
iwl3945: 0000000217	0x0000012d	403759317
iwl3945: 0000000000	0x00000161	403759319
iwl3945: 0000228316	0x00000160	403759392
iwl3945: 0000000000	0x0000006a	403759401
iwl3945: 0000000217	0x0000012d	403759408
iwl3945: 0000000000	0x00000161	403759410
iwl3945: 0000228317	0x00000160	403759481
iwl3945: 0000000000	0x0000006a	403759490
iwl3945: 0000000217	0x0000012d	403759497
iwl3945: 0000000000	0x00000161	403759499
iwl3945: 0000228318	0x00000160	403759572
iwl3945: 0000000000	0x0000006a	403759580
iwl3945: 0000000217	0x0000012d	403759587
iwl3945: 0000000000	0x00000161	403759589
iwl3945: 0000228319	0x00000160	403759660
iwl3945: 0000000000	0x0000006a	403759669
iwl3945: 0000000217	0x0000012d	403759676
iwl3945: 0000000000	0x00000161	403759678
iwl3945: 0000228320	0x00000160	403759749
iwl3945: 0000000000	0x0000006a	403759758
iwl3945: 0000000217	0x0000012d	403759765
iwl3945: 0000000000	0x00000161	403759767
iwl3945: 0000228321	0x00000160	403759841
iwl3945: 0000000000	0x0000006a	403759850
iwl3945: 0000000217	0x0000012d	403759857
iwl3945: 0000000000	0x00000161	403759858
iwl3945: 0000228322	0x00000160	403759930
iwl3945: 0000000000	0x0000006a	403759939
iwl3945: 0000000217	0x0000012d	403759946
iwl3945: 0000000000	0x00000161	403759948
iwl3945: 0000228323	0x00000160	403760019
iwl3945: 0000000000	0x0000006a	403760028
iwl3945: 0000000217	0x0000012d	403760035
iwl3945: 0000000000	0x00000161	403760037
iwl3945: 0000228324	0x00000160	403760110
iwl3945: 0000000000	0x0000006a	403760119
iwl3945: 0000000217	0x0000012d	403760126
iwl3945: 0000000000	0x00000161	403760128
iwl3945: 0000228325	0x00000160	403760204
iwl3945: 0000000000	0x0000006a	403760213
iwl3945: 0000000217	0x0000012d	403760220
iwl3945: 0000000000	0x00000161	403760222
iwl3945: 0000228326	0x00000160	403760293
iwl3945: 0000000000	0x0000006a	403760302
iwl3945: 0000000217	0x0000012d	403760309
iwl3945: 0000000000	0x00000161	403760311
iwl3945: 0000228327	0x00000160	403760384
iwl3945: 0000000000	0x0000006a	403760392
iwl3945: 0000000217	0x0000012d	403760399
iwl3945: 0000000000	0x00000161	403760401
iwl3945: 0000228328	0x00000160	403760474
iwl3945: 0000000000	0x0000006a	403760483
iwl3945: 0000000217	0x0000012d	403760490
iwl3945: 0000000000	0x00000161	403760492
iwl3945: 0000228329	0x00000160	403760565
iwl3945: 0000000000	0x0000006a	403760574
iwl3945: 0000000217	0x0000012d	403760581
iwl3945: 0000000000	0x00000161	403760583
iwl3945: 0000228330	0x00000160	403760654
iwl3945: 0000000000	0x0000006a	403760663
iwl3945: 0000000217	0x0000012d	403760670
iwl3945: 0000000000	0x00000161	403760672
iwl3945: 0000228331	0x00000160	403760745
iwl3945: 0000000000	0x0000006a	403760754
iwl3945: 0000000217	0x0000012d	403760761
iwl3945: 0000000000	0x00000161	403760763
iwl3945: 0000228332	0x00000160	403760836
iwl3945: 0000000000	0x0000006a	403760844
iwl3945: 0000000217	0x0000012d	403760851
iwl3945: 0000000000	0x00000161	403760853
iwl3945: 0000228333	0x00000160	403760925
iwl3945: 0000000000	0x0000006a	403760934
iwl3945: 0000000217	0x0000012d	403760941
iwl3945: 0000000000	0x00000161	403760943
iwl3945: 0000228334	0x00000160	403761015
iwl3945: 0000000000	0x0000006a	403761024
iwl3945: 0000000217	0x0000012d	403761031
iwl3945: 0000000000	0x00000161	403761033
iwl3945: 0000228335	0x00000160	403761104
iwl3945: 0000000000	0x0000006a	403761113
iwl3945: 0000000217	0x0000012d	403761120
iwl3945: 0000000000	0x0000007b	403761122
iwl3945: 0000000002	0x0000007d	403761129
iwl3945: I iwl_irq_handle_error Restarting adapter due to uCode error.
iwl3945: Error Reply type 0x00000005 cmd REPLY_TX (0x1C) seq 0x0203 ser 0x0000004B
iwl3945: Can't stop Rx DMA.
wlan0: No ProbeResp from current AP 00:11:2f:0e:95:a0 - assume out of range
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0
wlan0: No STA entry for own AP 00:11:2f:0e:95:a0


-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-06 14:32   ` Pavel Machek
@ 2008-02-06 17:13     ` Chatre, Reinette
  2008-02-06 21:00       ` Pavel Machek
  2008-02-07 22:04       ` iwl3945: not only it periodically dies, it also BUG()s, and oopses Pavel Machek
  0 siblings, 2 replies; 10+ messages in thread
From: Chatre, Reinette @ 2008-02-06 17:13 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

On Wednesday, February 06, 2008 6:32 AM, Pavel Machek wrote:

> On Tue 2008-02-05 18:20:58, Chatre, Reinette wrote:
>> On Tuesday, February 05, 2008 1:45 PM, Pavel Machek  wrote:
>> 
>>> 
>>> ...I've reported this before, with full debugging. Not sure if
>>> anything happened.
>> 
>> Could you please point me to where you have reported it before?
> 
> From pavel@ucw.cz Wed Oct 31 01:52:02 2007
> From: Pavel Machek <pavel@ucw.cz>
> To: linux-wireless@vger.kernel.org,
>        kernel list <linux-kernel@vger.kernel.org>,
>        ipw3945-devel@lists.sourceforge.net, yi.zhu@intel.com
> Subject: iwl3945 in 2.6.24-rc1 dies under load
> X-Warning: Reading this can be dangerous to your mental health.
> 
> ...and thread that resulted.

Could you please create a new bug in our bug tracking system
(www.bughost.org) to enable us to track this problem? Please include the
relevant information from the thread as well as the information you
doscovered recently.

Thank you very much

Reinette


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-06 17:13     ` Chatre, Reinette
@ 2008-02-06 21:00       ` Pavel Machek
  2008-02-06 23:08         ` Chatre, Reinette
  2008-02-15 22:41         ` Chatre, Reinette
  2008-02-07 22:04       ` iwl3945: not only it periodically dies, it also BUG()s, and oopses Pavel Machek
  1 sibling, 2 replies; 10+ messages in thread
From: Pavel Machek @ 2008-02-06 21:00 UTC (permalink / raw)
  To: Chatre, Reinette; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

Hi!

> >>> ...I've reported this before, with full debugging. Not sure if
> >>> anything happened.
> >> 
> >> Could you please point me to where you have reported it before?
> > 
> > From pavel@ucw.cz Wed Oct 31 01:52:02 2007
> > From: Pavel Machek <pavel@ucw.cz>
> > To: linux-wireless@vger.kernel.org,
> >        kernel list <linux-kernel@vger.kernel.org>,
> >        ipw3945-devel@lists.sourceforge.net, yi.zhu@intel.com
> > Subject: iwl3945 in 2.6.24-rc1 dies under load
> > X-Warning: Reading this can be dangerous to your mental health.
> > 
> > ...and thread that resulted.
> 
> Could you please create a new bug in our bug tracking system
> (www.bughost.org) to enable us to track this problem? Please include the
> relevant information from the thread as well as the information you
> doscovered recently.

Hmmm... bugzilla says:

    * Exact steps to reproduce
    * Reproducability of bug (e.g. intermittent or 100% reproducable)
    * Did this problem not exist in previous version of the driver?
    * kernel version
    * AP brand/model
    * dmesg output at debug level 0x43fff
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
		it would be nice to specify how to do this. It is
insmod parameter, right?

    * Type of security (if any) you are using (e.g. WEP64, WEP128, WPA, WPA2, 802.1x, etc)
    * Version of firmware
    * Version of the ieee80211 module
    * Proximity to the AP

    * Before reporting any firmware errors, please be sure to read Ben
Cahill's mailing list post on how to most effectively report such
bugs. 
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
		unfortunately the link here does not work.

BTW, why not use kernel.org bugzilla? Having to create another account
is nasty...
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-06 21:00       ` Pavel Machek
@ 2008-02-06 23:08         ` Chatre, Reinette
  2008-02-15 22:41         ` Chatre, Reinette
  1 sibling, 0 replies; 10+ messages in thread
From: Chatre, Reinette @ 2008-02-06 23:08 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

On Wednesday, February 06, 2008 1:00 PM, Pavel Machek  wrote:

>    * dmesg output at debug level 0x43fff
>      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 		it would be nice to specify how to do this. It is
> insmod parameter, right?

correct. you can do this as follows:
$ insmod iwl3945 debug=0x43fff
or
$ modprobe iwl3945 debug=0x43fff

>    * Before reporting any firmware errors, please be sure to read Ben
> Cahill's mailing list post on how to most effectively report such
>    bugs.
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> unfortunately the link here does not work. 

We'll try to dig out the instructions from another location and update
that link. Thanks for letting us know.

> 
> BTW, why not use kernel.org bugzilla? Having to create another
> account is nasty... 

Users can report iwlwifi bugs in many locations ... their OSV's bug
tracker (which could end up being many) as well as the kernel.org
bugzilla. We focus on bugs in the bughost.org system.

Reinette

^ permalink raw reply	[flat|nested] 10+ messages in thread

* iwl3945: not only it periodically dies, it also BUG()s, and oopses
  2008-02-06 17:13     ` Chatre, Reinette
  2008-02-06 21:00       ` Pavel Machek
@ 2008-02-07 22:04       ` Pavel Machek
  1 sibling, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2008-02-07 22:04 UTC (permalink / raw)
  To: Chatre, Reinette; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

> Could you please create a new bug in our bug tracking system
> (www.bughost.org) to enable us to track this problem? Please include the
> relevant information from the thread as well as the information you
> doscovered recently.

I'm connected over that iwl, so filing web form is not exactly
easy. Another day, another problem, today it oopsed:

I guess I should not have tried to fix iwl3945 by rmmoding, oh
well. Kernel is reasonably recent 2.6.25-rc0.
								Pavel

iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.23ks
iwl3945: Copyright(c) 2003-2007 Intel Corporation
PCI: Setting latency timer of device 0000:03:00.0 to 64
iwl3945: Detected Intel PRO/Wireless 3945ABG Network Connection
iwl3945: Tunable channels: 11 802.11bg, 13 802.11a channels
PM: Adding info for No Bus:phy0
PM: Adding info for No Bus:wmaster0
phy0: Selected rate control algorithm 'iwl-3945-rs'
PM: Adding info for No Bus:wlan0
ACPI: PCI interrupt for device 0000:03:00.0 disabled
PM: Writing back config space on device 0000:03:00.0 at offset 1 (was 100102, writing 100106)
PM: Adding info for No Bus:firmware-0000:03:00
PM: Removing info for No Bus:firmware-0000:03:00
wlan0: Initial auth_alg=0
wlan0: authenticate with AP 00:11:2f:0e:95:a0
wlan0: RX authentication from 00:11:2f:0e:95:a0 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:11:2f:0e:95:a0
wlan0: RX AssocResp from 00:11:2f:0e:95:a0 (capab=0x401 status=0 aid=1)
wlan0: associated
Clocksource tsc unstable (delta = -65126761 ns)
usb 4-1: new full speed USB device using uhci_hcd and address 2
PM: Adding info for usb:4-1
PM: Adding info for No Bus:usbdev4.2_ep00
usb 4-1: configuration #1 chosen from 2 choices
PM: Adding info for usb:4-1:1.0
PM: Adding info for No Bus:usb0
usb0: register 'cdc_ether' at usb-0000:00:1d.2-1, CDC Ethernet Device, 5a:fb:9e:20:17:56
PM: Adding info for No Bus:usbdev4.2_ep83
PM: Adding info for usb:4-1:1.1
PM: Adding info for No Bus:usbdev4.2_ep81
PM: Adding info for No Bus:usbdev4.2_ep02
PM: Adding info for No Bus:usbdev4.2
usb 4-1: New USB device found, idVendor=1457, idProduct=5122
usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 4-1: Product: RNDIS/Ethernet Gadget
usb 4-1: Manufacturer: Linux 2.6.22.5-moko11/s3c2410_udc
acpiphp_glue: cannot get bridge info
usb 4-1: USB disconnect, address 2
PM: Removing info for No Bus:usbdev4.2_ep83
PM: Removing info for usb:4-1:1.0
usb0: unregister 'cdc_ether' usb-0000:00:1d.2-1, CDC Ethernet Device
PM: Removing info for No Bus:usb0
PM: Removing info for No Bus:usbdev4.2_ep81
PM: Removing info for No Bus:usbdev4.2_ep02
PM: Removing info for usb:4-1:1.1
PM: Removing info for usb:4-1
PM: Removing info for No Bus:usbdev4.2
PM: Removing info for No Bus:usbdev4.2_ep00
acpiphp_glue: cannot get bridge info
iwl3945: Microcode SW error detected.  Restarting 0x82000008.
iwl3945: TODO:  Implement Tx ABORT REQUIRED!!!
iwl3945: Can't stop Rx DMA.
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=4)
wlan0: deauthenticated
wlan0: authenticate with AP 00:11:2f:0e:95:a0
wlan0: RX authentication from 00:11:2f:0e:95:a0 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:11:2f:0e:95:a0
wlan0: RX ReassocResp from 00:11:2f:0e:95:a0 (capab=0x401 status=0 aid=1)
wlan0: associated
iwl3945: Microcode SW error detected.  Restarting 0x82000008.
iwl3945: Can't stop Rx DMA.
wlan0: RX deauthentication from 00:11:2f:0e:95:a0 (reason=4)
wlan0: deauthenticated
wlan0: authenticate with AP 00:11:2f:0e:95:a0
wlan0: RX authentication from 00:11:2f:0e:95:a0 (alg=0 transaction=2 status=0)
wlan0: authenticated
wlan0: associate with AP 00:11:2f:0e:95:a0
wlan0: RX ReassocResp from 00:11:2f:0e:95:a0 (capab=0x401 status=0 aid=1)
wlan0: associated
ACPI: PCI interrupt for device 0000:03:00.0 disabled
PM: Removing info for No Bus:wlan0
PM: Removing info for No Bus:wmaster0
PM: Removing info for No Bus:phy0
iwl3945: Intel(R) PRO/Wireless 3945ABG/BG Network Connection driver for Linux, 1.2.23ks
iwl3945: Copyright(c) 2003-2007 Intel Corporation
PCI: Setting latency timer of device 0000:03:00.0 to 64
iwl3945: Detected Intel PRO/Wireless 3945ABG Network Connection
BUG: unable to handle kernel NULL pointer dereference at 00000109
IP: [<c0208063>] dma_alloc_coherent+0x43/0x100
*pde = 00000000 
Oops: 0000 [#1] SMP 
Modules linked in: iwl3945(+) [last unloaded: iwl3945]

Pid: 11189, comm: insmod Not tainted (2.6.24 #109)
EIP: 0060:[<c0208063>] EFLAGS: 00010202 CPU: 0
EIP is at dma_alloc_coherent+0x43/0x100
EAX: 00000000 EBX: 00000000 ECX: f338c70c EDX: 0000002c
ESI: 0000002c EDI: f338c710 EBP: 00000101 ESP: d9debd64
 DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0068
Process insmod (pid: 11189, ti=d9dea000 task=d9d25980 task.ti=d9dea000)
Stack: 00000000 f338c70c f7d5fb24 f3388e60 f3388e60 f338c710 f7d5fad0 f8c4b71b 
       00000020 00000000 00000000 f8c482df f8c501f4 f8c4ee4e f78f9630 c02b13f4 
       c02b10e1 f3351a88 f7d45530 c02b1134 c02b11fd f3351a88 f3351b18 00000000 
Call Trace:
 [<f8c4b71b>] iwl3945_hw_set_hw_setting+0x3b/0xc0 [iwl3945]
 [<f8c482df>] iwl3945_pci_probe+0x24f/0xcb0 [iwl3945]
 [<c02b13f4>] sysfs_addrm_finish+0x34/0x1c0
 [<c02b10e1>] sysfs_find_dirent+0x21/0x30
 [<c02b1134>] sysfs_add_one+0x44/0xa0
 [<c02b11fd>] sysfs_addrm_start+0x6d/0xb0
 [<c02b1f4b>] sysfs_create_link+0x8b/0xf0
 [<c03856c0>] pci_match_device+0x10/0xa0
 [<c0385846>] pci_device_probe+0x56/0x80
 [<c042fa08>] driver_probe_device+0x88/0x170
 [<c0719033>] klist_next+0x53/0xa0
 [<c042fc3a>] __driver_attach+0x7a/0x80
 [<c042edba>] bus_for_each_dev+0x3a/0x60
 [<c03857f0>] pci_device_probe+0x0/0x80
 [<c042f886>] driver_attach+0x16/0x20
 [<c042fbc0>] __driver_attach+0x0/0x80
 [<c042f63d>] bus_add_driver+0xbd/0x220
 [<c0270cc1>] cache_free_debugcheck+0xd1/0x220
 [<c0385790>] pci_device_remove+0x0/0x40
 [<c03857f0>] pci_device_probe+0x0/0x80
 [<c042fdcb>] driver_register+0x3b/0xf0
 [<c0248f21>] sys_init_module+0x1521/0x1a60
 [<c0385a5d>] __pci_register_driver+0x3d/0x80
 [<f8b9e030>] iwl3945_init+0x30/0x49 [iwl3945]
 [<c0247b3e>] sys_init_module+0x13e/0x1a60
 [<c02750a5>] do_sync_read+0xd5/0x120
 [<c07042d0>] ieee80211_rx_irqsafe+0x0/0x80
 [<c0273607>] filp_close+0x47/0x80
 [<c0203e8e>] syscall_call+0x7/0xb
 =======================
Code: 14 89 44 24 08 89 4c 24 04 74 06 8b a8 00 01 00 00 8d 46 ff bb ff ff ff ff c1 e8 0b 89 04 24 83 c3 01 d1 2c 24 75 f8 85 ed 74 5d <8b> 55 08 89 d9 8b 45 10 e8 70 0c 17 00 85 c0 78 44 89 c2 8b 45 
EIP: [<c0208063>] dma_alloc_coherent+0x43/0x100 SS:ESP 0068:d9debd64
---[ end trace 96f01332a9244198 ]---


-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-06 21:00       ` Pavel Machek
  2008-02-06 23:08         ` Chatre, Reinette
@ 2008-02-15 22:41         ` Chatre, Reinette
  2008-02-19 23:48           ` Pavel Machek
  1 sibling, 1 reply; 10+ messages in thread
From: Chatre, Reinette @ 2008-02-15 22:41 UTC (permalink / raw)
  To: Pavel Machek; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

On Wednesday, February 06, 2008 1:00 PM, Pavel Machek  wrote:

> Hmmm... bugzilla says:
> 
>    * Exact steps to reproduce
>    * Reproducability of bug (e.g. intermittent or 100% reproducable)
>    * Did this problem not exist in previous version of the driver?
>    * kernel version
>    * AP brand/model
>    * dmesg output at debug level 0x43fff
>      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 		it would be nice to specify how to do this. It is
> insmod parameter, right?
> 
>    * Type of security (if any) you are using (e.g. WEP64,
> WEP128, WPA, WPA2, 802.1x, etc)
>    * Version of firmware
>    * Version of the ieee80211 module
>    * Proximity to the AP
> 
>    * Before reporting any firmware errors, please be sure to read Ben
> Cahill's mailing list post on how to most effectively report such
>    bugs.
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> unfortunately the link here does not work. 

The instructions on how to report a bug have been updated to address the
above issues. Thank you very much for helping us to make it better.

Reinette

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: ipw3945: not only it periodically dies, it also BUG()s
  2008-02-15 22:41         ` Chatre, Reinette
@ 2008-02-19 23:48           ` Pavel Machek
  0 siblings, 0 replies; 10+ messages in thread
From: Pavel Machek @ 2008-02-19 23:48 UTC (permalink / raw)
  To: Chatre, Reinette; +Cc: ipw3945-devel, linux-wireless, Zhu, Yi, kernel list

Hi!

> > unfortunately the link here does not work. 
> 
> The instructions on how to report a bug have been updated to address the
> above issues. Thank you very much for helping us to make it better.

Thanks.

One more nit:

bugzilla-daemon@bughost.org seems like normal bugzilla, where you can
hit reply button, and control it using email... but that does not
actually work.

It would be nice to fix that. (Or at least make mail appear from
noreply@bughost.org, so that it is plain to see it does not work).

It seems that iwl3945 problem is somehow linked to
GROUP_SCHED... probably iwl can not handle latencies introduced by it?


									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2008-02-19 23:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-05 21:44 ipw3945: not only it periodically dies, it also BUG()s Pavel Machek
2008-02-05 22:59 ` Pavel Machek
2008-02-06  2:20 ` Chatre, Reinette
2008-02-06 14:32   ` Pavel Machek
2008-02-06 17:13     ` Chatre, Reinette
2008-02-06 21:00       ` Pavel Machek
2008-02-06 23:08         ` Chatre, Reinette
2008-02-15 22:41         ` Chatre, Reinette
2008-02-19 23:48           ` Pavel Machek
2008-02-07 22:04       ` iwl3945: not only it periodically dies, it also BUG()s, and oopses Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).