Jump to content

Intel Wireless 2100, 2200bg, 2915bg, 3945abg, 4965agn


jalavoui
 Share

3,411 posts in this topic

Recommended Posts

Tried to boot normally but got frozen again, then booted with killswitch off, got kp ater boot with -s

 

Stopped here:

Compatibility line 5283

 

void ieee80211_sta_scan_work(struct work_struct *work)

{

IM_HERE_NOW();

struct ieee80211_local *local = (struct ieee80211_local *)work;//check this

//container_of(work, struct ieee80211_local, scan_work.work);

struct net_device *dev = local->scan_dev;

struct ieee80211_sub_if_data *sdata = (ieee80211_sub_if_data *)IEEE80211_DEV_TO_SUB_IF(dev);

struct ieee80211_hw_mode *mode;

struct ieee80211_channel *chan;

int skip;

unsigned long next_delay = 0;

 

if (!local->sta_scanning)

return;

 

switch (local->scan_state) {

case 0://SCAN_SET_CHANNEL:

mode = local->scan_hw_mode;

if (local->scan_hw_mode->list.next == &local->modes_list &&

local->scan_channel_idx >= mode->num_channels) {

ieee80211_scan_completed(local_to_hw(local));

return;

}

Link to comment
Share on other sites

cxddev,

to use HZ=250 you'll need to change qeue_xx, jiffies and others

are you shure this is the best way?

 

Not necessarily, I just did that as a quick hack to try and get the right timings in the 80211 code. Everything else seemed ok.

 

Just be aware that Linux defines HZ = 1000 but in Mac HZ = 100

 

also I think 1 jiffie = 4ms in Linux but 10ms in Mac.

Link to comment
Share on other sites

Think this is better...

 

	ret = UCODE_READY_TIMEOUT/10;		  
while(!(test_bit(STATUS_READY, &priv->status))) {				  
	IOSleep(100);					
	ret--;							
	if(ret==0)						  
		break;  
}

 

(normally takes about 240ms)

 

6000ms is wayyyy too long, the init won't finish before the mac comes up.

Link to comment
Share on other sites

Cxddev,

i added this to svn

can you check the scan code?

think it will scan all channels

maybe need to change HZ?

check the ieee_open -> might be in the wrong place

if you fix it upload to svn

be back tomorrow

thanks

 

iwi3945 rel 969

iwi4965 rel 970

Link to comment
Share on other sites

May as well use something like this:

	ret = jiffies_to_msecs(UCODE_READY_TIMEOUT);		  
while(!(test_bit(STATUS_READY, &priv->status))) {				  
	IOSleep(1); // 1ms
	ret--;							
	if(ret==0)						  
		break;  
}

or maybe suspending a thread 2000 times is a bit too much...

Link to comment
Share on other sites

iwi2200 problem!!!!

 

 

i've leopard 10.5.1 installed on sony vaio vgna-497xp all is ok except wireless.

dual boot with windows xp.

wireless switch installed on xp side.

Wireless state :

"on" wireless switch xp side

"on" wireless external button

 

i've installed iwi2200 driver as http://forum.insanelymac.com/index.php?showtopic=71779, kernek recognize my wifi card and discovery wifi network but when i try to connect to us the log report this:

 

iwi2200: radio on 0x50000 = 0x10000

May 4 13:21:08 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

May 4 13:21:16 fabio-angelettis-mac-pro kernel[0]: iwi2200: network cap 0x421 flags 0x402

May 4 13:21:16 fabio-angelettis-mac-pro kernel[0]: iwi2200: AUthenticated: 'paperetto' 00:14:a9:6a:cc:30

May 4 13:21:16 fabio-angelettis-mac-pro kernel[0]: iwi2200: associated: 'paperetto' 00:14:a9:6a:cc:30

May 4 13:21:16 fabio-angelettis-mac-pro kernel[0]: iwi2200: E Firmware error detected. Restarting.

May 4 13:21:17 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

May 4 13:21:18 fabio-angelettis-mac-pro kernel[0]: iwi2200: network cap 0x421 flags 0x402

May 4 13:21:18 fabio-angelettis-mac-pro kernel[0]: iwi2200: AUthenticated: 'paperetto' 00:14:a9:6a:cc:30

May 4 13:21:18 fabio-angelettis-mac-pro kernel[0]: iwi2200: associated: 'paperetto' 00:14:a9:6a:cc:30

May 4 13:21:20 fabio-angelettis-mac-pro kernel[0]: iwi2200: E Firmware error detected. Restarting.

May 4 13:21:20 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

May 4 13:21:24 fabio-angelettis-mac-pro kernel[0]: iwi2200: network cap 0x421 flags 0x402

May 4 13:21:24 fabio-angelettis-mac-pro kernel[0]: iwi2200: E Firmware error detected. Restarting.

May 4 13:21:24 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

May 4 13:21:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: network cap 0x421 flags 0x402

May 4 13:21:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: E Firmware error detected. Restarting.

May 4 13:21:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

 

and continue until i disable the wifi card.

 

what's the problem????

i've try 910 and 760 release and all have the same problem!!!!!

 

thx

 

fabio

 

Finally had some time to get back to this today, and I experience the exact same problem with the SVN latest 10.5 iwi2200.dmg (also with the pkg.zip installer devoid compiled and posted in this thread). I tried repairing permissions and manually looking at ownership/permissions as well, and all looks fine. I get a popup window saying the /System/Library/Extenstions/iwi2200.kext was improperly installed or is corrupt and can't be loaded on reboot and a similar log to above. Jalavoui, is there an older version to revert to in your repository at this point? This driver was previously working very well, seems like something has happened in the code to break the functionality...

Link to comment
Share on other sites

iwi2200 problem!

now with full debug!!!

 

after installation my wifi card find network but doesn't want to connect to !!!!!!

this is the full debug log:

 

this is the log after kext installation

 

May 5 10:39:58 fabio-angelettis-mac-pro sudo[889]: fabioangeletti : TTY=ttys001 ; PWD=/ ; USER=root ; COMMAND=/usr/bin/su

May 5 10:40:05 fabio-angelettis-mac-pro kernel[0]: Resetting IOCatalogue.

May 5 10:40:05 fabio-angelettis-mac-pro kextd[10]: 0 cached, 418 uncached personalities to catalog

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: disable 1 led 0 mode 0

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: darwin_iwi2200 iomemory length: 0x1000 @ 0xfe9fe000

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: darwin_iwi2200 virt: 0x216be000 physical: 0xfe9fe000

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: darwin_iwi2200 IRQ: 18, Vendor ID: 8086, Product ID: 4220

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_sw_reset() old_mode 0

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: Radio disabled.

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_sw_reset() Hardware crypto [off]

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: : Detected Intel PRO/Wireless 2200BG Network Connection

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: getHardwareAddress() is called

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: getHardwareAddress() getHardwareAddress 00:13:ce:0a:4c:a6

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: configureInterface() configureInterface

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: setPowerState() power state (1)

May 5 10:40:07 fabio-angelettis-mac-pro kernel[0]: darwin_iwi2200: Ethernet address 00:13:ce:0a:4c:a6

 

 

 

this is the log after reboot and click on Set Power On

 

 

 

 

 

May 5 10:44:16 fabio-angelettis-mac-pro kernel[0]: iwi2200: connect

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: rf_kill_active() rf_kill_active 0x10000

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rf_kill() RF Kill active, rescheduling GPIO check

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_sw_reset() old_mode 0

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_sw_reset() Hardware crypto [off]

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: rf_kill_active() rf_kill_active 0x10000

May 5 10:44:25 fabio-angelettis-mac-pro kernel[0]: iwi2200: radio on 0x50000 = 0x10000

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: rf_kill_active() rf_kill_active 0x10000

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rf_kill() HW RF Kill no longer active, restarting device

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_adapter_restart() ipw_adapter_restart

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_load() boot firmware ok

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_stop_master() stop master 0ms

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: uploadUCode() Microcode OK, rev. 53594 (0xd15a) dev. 3 (0x3) of 11/22/04 20:27

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_load() bss firmware ok

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: cacheEEPROM() Writing EEPROM data into SRAM

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_replenish() ipw_rx_queue_replenish

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_init_ordinals() table 0 offset at 0x00000700, len = 67

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_init_ordinals() table 1 offset at 0x00029600, len = 170

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_init_ordinals() table 2 offset at 0x00029ee0, len = 6

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: geography 2 = ZZD

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: rf_kill_active() rf_kill_active 0x10000

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() TX_POWER command (#35) 76 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() TX_POWER command (#35) 76 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: configu() Setting MAC address to 00:13:ce:0a:4c:a6

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() ADAPTER_ADDRESS command (#11) 6 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: configu() Configuring adapter

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SYSTEM_CONFIG command (#6) 20 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SUPPORTED_RATES command (#22) 16 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: configu() Setting RTS threshold to 305334528

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() RTS_THRESHOLD command (#15) 4 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: configu() Setting IPW_CMD_SEED_NUMBER to 396330113

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SEED_NUMBER command (#34) 4 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: configu() Setting IPW_CMD_HOST_COMPLETE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() HOST_COMPLETE command (#2) 0 bytes: 0x00000003

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_up() Configured device on count 2

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SCAN_REQUEST_EXT command (#26) 96 bytes: 0x00000023

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 135

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=14 flags=A0 size=104

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 20 (104 bytes)

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() TODO: Calibration

May 5 10:44:27 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 10

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2c89554

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 11

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 768

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 12

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:28 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 1 type 13, 13 channels, 1 status

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:29 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:31 fabio-angelettis-mac-pro kernel[0]: pe=03 seq=00 bits=00 size 512

May 5 10:44:31 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:31 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:31 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 9

May 5 10:44:31 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: _GENERIC: 5 bytes

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 24 bytes

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_process_probe_response() Updating 'paperetto' (00:14:a9:6a:cc:30) via PROBE RESPONSE.

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=03 size=6410

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (6410 bytes)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed of wrong size 6410 (should be 4d)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 2 type 13, 13 channels, 1 status

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:32 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: ' len=9.

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_DS_SET: 13

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_ERP_SET: 0

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() Unsupported info element: 550462648

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 6 bytes

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 5 bytes

May 5 10:44:35: --- last message repeated 1 time ---

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 24 bytes

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_process_probe_response() Updating 'paperetto' (00:14:a9:6a:cc:30) via PROBE RESPONSE.

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=03 size=8202

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (8202 bytes)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed of wrong size 8202 (should be 4d)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1410ed

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 256

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_replenish() ipw_rx_queue_replenish

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 3 type 13, 13 channels, 1 status

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:35 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SCAN_REQUEST_EXT command (#26) 96 bytes: 0x00000023

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 1

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 3

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 4

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 5

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 6

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 7

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 256

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 8

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 1024

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 9

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 10

May 5 10:44:38 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 256

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 11

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 12

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=09 seq=03 bits=78 size 149

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Frame: len=149

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() IEEE80211_FTYPE_MGMT

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_rx_mgt() received PROBE RESPONSE (80)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_process_probe_response() 'paperetto' (00:14:a9:6a:cc:30): 0000 0100-0010 0001

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_SSID: 'paperetto' len=9.

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_DS_SET: 13

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_ERP_SET: 0

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() Unsupported info element: 550462648

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 6 bytes

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 5 bytes

May 5 10:44:39: --- last message repeated 1 time ---

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 24 bytes

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_process_probe_response() Updating 'paperetto' (00:14:a9:6a:cc:30) via PROBE RESPONSE.

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=03 size=5642

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (5642 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed of wrong size 5642 (should be 4d)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 768

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 4 type 13, 13 channels, 1 status

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:39 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: ck() ipw_rx_queue_restock

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 5 type 13, 13 channels, 1 status

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() Not attempting association (associate=0)

May 5 10:44:42 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

 

 

 

 

 

This is the log after connect to wlan network

 

 

 

 

 

 

 

 

 

 

 

 

 

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: fIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:47:04 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: rred 0x12333000 0x31bb3c0 0x1 0x1

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 2304

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:47:05 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: 2333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 135

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=14 flags=A0 size=104

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 20 (104 bytes)

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() TODO: Calibration

May 5 10:47:06 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: es

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 5 bytes

May 5 10:47:07: --- last message repeated 1 time ---

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_parse_info_param() MFIE_TYPE_GENERIC: 24 bytes

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ieee80211_process_probe_response() Updating 'paperetto' (00:14:a9:6a:cc:30) via PROBE RESPONSE.

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=03 size=6410

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (6410 bytes)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed of wrong size 6410 (should be 4d)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (2720ms since last assoc attempt).

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (2720ms since last assoc attempt).

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x0

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 1792

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 512

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x0

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 1 type 13, 13 channels, 1 status

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (2740ms since last assoc attempt).

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (2740ms since last assoc attempt).

May 5 10:47:07 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: _restock() ipw_rx_queue_restock

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: lity[1057] flag[1026] scan_age[1500]

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' is a viable match.

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() trying to associate 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() ASSOCIATED | ASSOCIATING 0x00000180

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() Assocation attempt: 'paperetto', channel 13, 802.11g [12], short[:short], enc=off.

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() SSID command.

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SSID command (#8) 9 bytes: 0x00000023

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() IPW_CMD_SUPPORTED_RATES .

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SUPPORTED_RATES command (#22) 16 bytes: 0x00000023

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x2623208

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() sys config command.

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SYSTEM_CONFIG command (#6) 20 bytes: 0x00000023

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() Association sensitivity: -28

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() SENSITIVITY_CALIB command (#42) 4 bytes: 0x00000023

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: __ipw_send_cmd() ASSOCIATE command (#21) 40 bytes: 0x00000023

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x6

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 800

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_TX_CMD_QUEUE

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate_network() associating: 'paperetto' 00:14:a9:6a:cc:30

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: network cap 0x421 flags 0x402

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=19 flags=A0 size=4

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 25 (4 bytes)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() HOST_NOTIFICATION_NOISE_STATS

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 13

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 2 type 13, 13 channels, 1 status

May 5 10:47:10 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: 0x1 0x1368db

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 1

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 3

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 4

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: interruptOccurred() interruptOccurred 0x12333000 0x31bb3c0 0x1 0x1368db

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0C flags=A0 size=46

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 12 (46 bytes)

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan result for channel 5

May 5 10:47:11 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: 1 0x1368db

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() GotInterrupt: 0x 2

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: handleInterrupt() IPW_INTA_BIT_RX_TRANSFER)

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Packet: type=03 seq=00 bits=00 size 0

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx() Notification: subtype=0D flags=A0 size=4

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() type = 13 (4 bytes)

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: notifIntr() Scan completed: 1 type 13, 13 channels, 1 status

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_rx_queue_restock() ipw_rx_queue_restock

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() associate...

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (1350ms since last assoc attempt).

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() ipw_best_network

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() iw_mode[0] capability[1057] flag[1026] scan_age[1500]

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)'

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_best_network() Network 'paperetto (00:14:a9:6a:cc:30)' excluded because of storming (1350ms since last assoc attempt).

May 5 10:47:12 fabio-angelettis-mac-pro kernel[0]: iwi2200: ipw_associate() no network found

 

 

 

 

PLEASE HELP ME...i'm going crazy!!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...