Code Monkey home page Code Monkey logo

iwidarwin's People

Watchers

 avatar

iwidarwin's Issues

must explain purpose about new jalavoui's code.

jalavoui.

I'm reading your new code about only iwi2200
(http://iwidarwin.googlecode.com/svn/branches/0.6-fucking-broken/)

I seem that jalavoui try to fixed problem of ad-hoc mode and sevaral fixed.

why do you post bugs(which you find )  to project's issues?

if you dont write your purpose to commited log or project's issues, 
i must read all diff ( without information), every time.

plz post all bugs (which you know ) , intention and purpose 
to project's issues at first.

do you remember for us to write dupicated codes ?
  because you dont write intention and purposes .

must share informations  for shared development.

I always post bugs and ( its detail ) issues when i found bugs.
and 
if i fixed the bugs and editted codes, i alaway write the abstraction to 
commited log.

I cannot check its if you dont write the purpose and the intention of your
changing.

Original issue reported on code.google.com by [email protected] on 6 Feb 2007 at 7:16

select and crash....

What steps will reproduce the problem?
1. i've listed the network and select the correct unencrypted network
2. i've pressed the enter key to confirm the selection
3. crash!!! i can only hold down power button and shut down my hakintosh...
sigh

What is the expected output? What do you see instead?


What version of iwi are you using? iwi2200.dmg 
On what verion of IO80211Family or kernel? kernel 8.9.1 - osx 10.4.9
Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 22 May 2007 at 8:50

QoS is enable or disalbe in default?

i think that QoS should be disable in default,now.

the reason is following.

QoS dont work correctly. 
 * tx's packet always is only queued to QUEUE1 in current implementation.
 * we fixed the problem without qos at first in order to avoid enbug.
 * QoS is disable in linux.( in default)







Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 4:30

self mac address is not set.

javavoui's new version(20070127's source ) and Rev.63's trunk. 
self mac address dont is wireless card  but access point mac address 
      after associated network. 

returned macaddress is AP's mac when ifconfig en1. 

so may up interface .



Original issue reported on code.google.com by [email protected] on 29 Jan 2007 at 12:12

iwi3945 driver doesn't work on IBM T60 B12

What steps will reproduce the problem?
1.After installation, it can not connect to the AP. The led is not on and 
no connection can be established.

What version of iwi are you using?
iwi3945

On what verion of IO80211Family or kernel?
8.8.1

Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 4 Jun 2007 at 1:55

Attachments:

next steps

kazu

we should schedule new tasks, now that the driver is more stable

i'm thinking on using the aiport menu as a future suport for a interface

check the kismac project -> AirPortMenu subproject. there's a header for the 

Apple80211.framework - it's not complete but it could help.

but first we must make the driver better. please post you ideas so that we
can start to assign tasks to each other

Original issue reported on code.google.com by [email protected] on 30 Jan 2007 at 5:16

Compatibility list

I posted request of tester environment to forum.
because someone post "I install software update of airport and dont work
iwi2200".

v6-test is compiled in 10.4.8(io80211family 10.4.8).

if we can know status in users environment,
we decide what kind of compilation environment in next release. 
(should we provide new release only in newer io80211family or 
  provide binaries per io80211family ? )

jalavoui,what do you think about this?   

Original issue reported on code.google.com by [email protected] on 6 Feb 2007 at 7:31

Cannot Power enable by hand?

cannot enable power when p_disable = 1 in info.plist.
so dont init iwi2200.

this is problem for my platform?(2945abg)

Original issue reported on code.google.com by [email protected] on 25 Jan 2007 at 8:05

review of http://iwidarwin.googlecode.com/files/iwi2200_test_20070126.zip

this is review of wi2200_test_20070126 before merging it to trunk. 

1. ::ipw_handle_data_packet
{{{
mbuf_setlen(rxb->skb, le16_to_cpu(pkt->u.frame.length));
}}}

skb(mbuff) may be chains. 
if pkt length is set, may be following...
{{{
  mbuf_pkthdr_setlen(rxb->skb, le16_to_cpu(pkt->u.frame.length));
}}}

Original issue reported on code.google.com by [email protected] on 27 Jan 2007 at 1:02

new version test2

i've made a bug in svn - i'm sorry...

please chech the new iwi2200

i've made lots of changes in the code and fix a few bugs

can you check you code against what i've done and build a new release?


thanks


Original issue reported on code.google.com by [email protected] on 4 Feb 2007 at 8:47

cannot treat chains packet in outputPacket and other tx functions

Does all mbuf require to be murged before copying pkt to queue? ( i has
been thinking the methods...) when tx packet is chain.

add checking chains.
{{{
size_t psize=0;
    IWI_DEBUG(" %s check if mbuf is chain\n",__FUNCTION__);
    for (nm = m; nm; nm = mbuf_next(nm)){
        psize+= mbuf_len(nm);
    }
    if(psize != mbuf_len(m) ) {
        IWI_DEBUG("W require to implement for chains %d
%d\n",mbuf_len(m),psize);
    }else {
        IWI_DEBUG("not require to implement for chains \n");
    }
}}}


logs
{{{
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: W require to implement for chains 54 86
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: call ieee80211_xmit
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t1
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2.1
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2.3
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2.4
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2.5
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t2.6
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t3
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: dev->xmit(48 bytes)
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: t4
....
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: Firmware error detected.  Restarting.
Jan 27 01:54:29 Y2 kernel[0]: iwi2200: ipw_adapter_restart
}}}

Original issue reported on code.google.com by [email protected] on 26 Jan 2007 at 8:11

4965 ... not working

 kext load normal at boot, some errors.
 network adapter found en0
 in networkSelector
   adapter enable/disable seems working
   led-switching not working
   mac-address found correct
   network scan not working ("hello world: send network list" message :D )
 if I give a static ip , it is not taken ...


NOTEBOOK ASUS F3Sc  
Kernel            8.9.1    
System            10.4.10
IWL4965           1.0.0d1
IO80211Family     1.6  (is it used?)

------------- System.log -----------------
Jul 13 10:36:13 localhost kernel[0]: -mode; defaulting to full-secure.
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ALM-MB type
Jul 13 10:36:14 localhost kernel[0]: iwi4965: SKU OP mode is basic
Jul 13 10:36:14 localhost kernel[0]: iwi4965: 4965 revision is 0xCC30
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Card M type B version is 0xE8
Jul 13 10:36:14 localhost kernel[0]: iwi4965: HW & HW RF KILL supported in
EEPROM.
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Allocate the RX queue
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_rx_queue_replenish
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_rx_init
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_queue_reset
Jul 13 10:36:14 localhost kernel[0]: iwi4965: stop master
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Unrestricted access from line
2166
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Intialize power 
Jul 13 10:36:14 localhost kernel[0]: iwi4965: adjust power command flags
Jul 13 10:36:14 localhost kernel[0]: iwi4965: initialize rate scale window
to 62
Jul 13 10:36:14 localhost kernel[0]: iwi4965: HW Revision ID = 0x61
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ALM-MB type
Jul 13 10:36:14 localhost kernel[0]: iwi4965: SKU OP mode is basic
Jul 13 10:36:14 localhost kernel[0]: iwi4965: 4965 revision is 0xCC30
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Card M type B version is 0xE8
Jul 13 10:36:14 localhost kernel[0]: iwi4965: HW & HW RF KILL supported in
EEPROM.
Jul 13 10:36:14 localhost kernel[0]: iwi4965: Allocate the RX queue
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_rx_queue_replenish
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_rx_init
Jul 13 10:36:14 localhost kernel[0]: iwi4965: ipw_queue_reset
Jul 13 10:36:14 localhost kernel[0]: iwi4965: stop master
Jul 13 10:36:14 localhost mDNSResponder-108.5 (May  9 2007 17: 14:16)[45]:
starting
Jul 13 10:36:14 localhost memberd[52]: memberd starting up
Jul 13 10:36:17 localhost lookupd[61]: lookupd (version 369.6) starting -
Fri Jul 13 10:36:17 2007
Jul 13 10:36:18 localhost DirectoryService[63]: Launched version 2.1 (v353.6)
Jul 13 10:36:21 localhost
/System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow:
Login Window Application Started
Jul 13 10:36:23 localhost mDNSResponder: Couldn't read user-specified
Computer Name; using default “Macintosh-000000000000� instead
Jul 13 10:36:23 localhost mDNSResponder: Couldn't read user-specified local
hostname; using default “Macintosh-000000000000.local� instead
Jul 13 10:36:24 localhost configd[49]: No AirPort Driver found.
Jul 13 10:36:24 localhost mDNSResponder: Adding browse domain local.
Jul 13 10:36:24 localhost launchd: Server 355b in bootstrap 1103 uid 0:
"/usr/sbin/lookupd"[61]: exited abnormally: Hangup
Jul 13 10:36:26 localhost lookupd[89]: lookupd (version 369.6) starting -
Fri Jul 13 10:36:26 2007
Jul 13 10:36:27 localhost mDNSResponder: Couldn't read user-specified
Computer Name; using default “Macintosh-000000000000� instead
Jul 13 10:36:27 localhost mDNSResponder: Couldn't read user-specified local
hostname; using default “Macintosh-000000000000.local� instead
Jul 13 10:36:34 localhost kernel[0]: iwi4965: Unrestricted access from line
2166
Jul 13 10:36:34 localhost kernel[0]: iwi4965: getHardwareAddress
00:13:e8:12:b8:25
Jul 13 10:36:34 localhost kernel[0]: iwi4965: power state (1)
Jul 13 10:36:34 localhost kernel[0]: iwi4965: configureInterface
Jul 13 10:36:34 localhost kernel[0]: iwi4965: Radio disabled by module
parameter.
Jul 13 10:36:34 localhost kernel[0]: iwi4965: Intialize power 
Jul 13 10:36:34 localhost kernel[0]: iwi4965: adjust power command flags
Jul 13 10:36:34 localhost kernel[0]: iwi4965: initialize rate scale window
to 62
Jul 13 10:36:34 localhost kernel[0]: darwin_iwi4965: Ethernet address
00:13:e8:12:b8:25
Jul 13 10:36:34 localhost kernel[0]: iwi4965: HW Revision ID = 0x61
Jul 13 10:36:34 localhost kernel[0]: iwi4965: ifnet_t en0 = 42b2804
Jul 13 10:36:34 localhost kernel[0]: iwi4965: ifconfig up
Jul 13 10:36:34 localhost kernel[0]: iwi4965: ifconfig going up
Jul 13 10:36:35 localhost loginwindow[65]: Login Window Started Security Agent
Jul 13 10:36:39 localhost kernel[0]: iwi4965: ALM-MB type
Jul 13 10:36:39 localhost kernel[0]: iwi4965: SKU OP mode is basic
Jul 13 10:36:39 localhost kernel[0]: iwi4965: 4965 revision is 0xCC30
Jul 13 10:36:39 localhost kernel[0]: iwi4965: Card M type B version is 0xE8
Jul 13 10:36:39 localhost kernel[0]: iwi4965: HW & HW RF KILL supported in
EEPROM.
Jul 13 10:36:39 localhost kernel[0]: iwi4965: Allocate the RX queue
Jul 13 10:36:39 localhost kernel[0]: iwi4965: ipw_rx_queue_replenish
Jul 13 10:36:39 localhost kernel[0]: iwi4965: ipw_rx_init
Jul 13 10:36:39 localhost kernel[0]: iwi4965: ipw_queue_reset
Jul 13 10:36:39 localhost kernel[0]: iwi4965: invalid image size, too big
32768 40960
Jul 13 10:36:39 localhost kernel[0]: iwi4965: 4965 card ucode download is good 
Jul 13 10:36:39 localhost kernel[0]: iwi4965: 4965 card ucode download is good 
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap data image size is
40960
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x0
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x4
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x8
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0xc
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x10
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x14
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x18
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x1c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x20
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x24
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x28
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x2c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x30
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x34
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x38
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x3c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x40
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x44
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x48
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap DATA section is
invalid at offset 0x4c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap image in DATA
memory is good
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap instruction image
size is 10312
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x0
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x4
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x8
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0xc
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x10
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x14
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x18
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x1c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x20
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x24
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x28
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x2c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x30
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x34
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x38
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x3c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x40
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x44
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x48
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap INST section is
invalid at offset 0x4c
Jul 13 10:36:39 localhost kernel[0]: iwi4965: bootstrap image in
INSTRUCTION memory is good
Jul 13 10:36:39 localhost kernel[0]: iwi4965: 4965 HW Version 12.12.48
Jul 13 10:36:39 localhost kernel[0]: iwi4965: 4965 PBA Number ^A
Jul 13 10:36:39 localhost kernel[0]: iwi4965: EEPROM_ANTENNA_SWITCH_TYPE is
0x12
Jul 13 10:36:39 localhost kernel[0]: iwi4965: MAC address: 00:13:e8:12:b8:25
Jul 13 10:45:14 localhost kernel[0]: iwi4965: connect
Jul 13 10:45:21 localhost kernel[0]: IOBluetoothHCIController::terminateWL
.. done
Jul 13 10:45:28 localhost kernel[0]: IOBluetoothHCIController::start Idle
Timer Stopped
Jul 13 10:45:28 localhost kernel[0]: IOBluetoothHCIController::configurePM
Start Idle Timer
Jul 13 10:45:28 localhost kernel[0]: Registering For 802.11 Events
Jul 13 10:45:28 localhost kernel[0]: [HCIController][setupHardware] AFH Is
Supported
Jul 13 10:45:31 localhost kernel[0]: iwi4965: radio on 0x40000 = 0x0
Jul 13 10:45:31 localhost kernel[0]: iwi4965: Scan request while
uninitialized.  Queuing.
Jul 13 10:48:09 localhost kernel[0]: iwi4965: disconnect
------------------------------------------

Original issue reported on code.google.com by [email protected] on 13 Jul 2007 at 9:02

rx perfomance is lowwer.


jalavoui: 
> rx speed - using inputPackey from the controller helps speed. the mtu is
important
to make cache?

Original issue reported on code.google.com by [email protected] on 11 Feb 2007 at 10:15

Kernel panic - file upload / downloads or time navigation

What steps will reproduce the problem?
1. Downloading file greater than 170mb 
2. Watching youtube videos or others from net about 1 hour or more.
3.

What is the expected output? What do you see instead?
1. working normally

2. Kernel panic


What version of iwi are you using?
On what verion of IO80211Family or kernel?
Please provide any additional information below.
if can , plz attach or paste logs.


http://iwidarwin.googlecode.com/files/iwi2200-v6-test2-xkazu2.dmg

kernel 8.8.1 


Original issue reported on code.google.com by [email protected] on 27 Feb 2007 at 2:39

Hang upon Boot of OSx86 after Installation of iwi3945 (IBM/Lenovo R60)

What steps will reproduce the problem?
1. Installing 3945 on IBM/Lenovo R60 Portable

What is the expected output? What do you see instead?
Hangs upon booting in OSx86.
Recovery through reinstalltion of OSx86

What version of iwi are you using?
iwi3945 (Testing)

On what verion of IO80211Family or kernel?
OSx86 v10.4.8

Original issue reported on code.google.com by [email protected] on 1 May 2007 at 7:47

skb functions

i've made a change in code.

i'm trying to use the skbbuf functions from linux

please check iwi2200.h. if whe can port the linux functions it will help

the mbuf_len is the siize of mbuf data

in linux the skb->len is the size of the entire skb

there's also the skb->data_len wich is the same as mbuf->len

the firmware error will go away if the skb functions work correctly

do you have any idea on how to bring the en1 interface up? this is a problem


Original issue reported on code.google.com by [email protected] on 27 Jan 2007 at 5:57

Attachments:

normail user cannot build dmg package.

no-root user cannot make dmg package.

instation must be root user.
but building package has capability in no-root user.


% xcodebuild
...
chown: build/Debug/iwi2200.kext/Contents/Info.plist: Operation not permitted
chown: build/Debug/iwi2200.kext/Contents/MacOS/iwi2200: Operation not permitted
chown: build/Debug/iwi2200.kext/Contents/MacOS: Operation not permitted
chown:
build/Debug/iwi2200.kext/Contents/Resources/English.lproj/InfoPlist.strings:
Operation not permitted
chown: build/Debug/iwi2200.kext/Contents/Resources/English.lproj: Operation
not permitted
chown: build/Debug/iwi2200.kext/Contents/Resources: Operation not permitted
chown: build/Debug/iwi2200.kext/Contents: Operation not permitted
chown: build/Debug/iwi2200.kext: Operation not permitted
rm: /System/Library/Extensions/iwi2200.kext/Contents/Info.plist: Permission
denied
rm: /System/Library/Extensions/iwi2200.kext/Contents/MacOS/iwi2200:
Permission denied
rm: /System/Library/Extensions/iwi2200.kext/Contents/MacOS: Permission denied
rm:
/System/Library/Extensions/iwi2200.kext/Contents/Resources/English.lproj/InfoPli
st.strings:
Permission denied
rm:
/System/Library/Extensions/iwi2200.kext/Contents/Resources/English.lproj:
Permission denied
rm: /System/Library/Extensions/iwi2200.kext/Contents/Resources: Permission
denied
rm: /System/Library/Extensions/iwi2200.kext/Contents: Permission denied
rm: /System/Library/Extensions/iwi2200.kext: Permission denied
cp: /System/Library/Extensions/iwi2200.kext/Contents/MacOS/iwi2200:
Permission denied
cp:
/System/Library/Extensions/iwi2200.kext/Contents/Resources/English.lproj/InfoPli
st.strings:
Permission denied
cp: /System/Library/Extensions/iwi2200.kext/Contents/Info.plist: Permission
denied

Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 11:49

iwi2200 Issue

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
i installed iwi2200.kext on dell 700 m machine?
i turn on card 
i can see on network selector mode 0 led 0n and card status is ON

i can see my router in list

when i hit the channel no say 1 it keep scrolling and scrolling with no 
results i have stand by for 2 hrs nothing happen

in terminal 
on ifconfig command i can see autoselect and inactive mode on en0 and 
fw0 , even supported media is autoselcet<full duplex>

you guys have any patch for this?
[email protected]

What version of iwi are you using?
On what verion of IO80211Family or kernel?
Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 27 May 2007 at 1:54

Stall in tx on using ssh.

iwi2200: 0.6-test,current trunk..
io80211family: 1.4.0
osx: 10.4.8
kernel: 8.8.1, semthex beta8

tx is stalled when larget file is transfering with scp.

this problem is caused by sending files over 5M with scp.
almost tx packet is stalled after stalled in scp.

I saw the log when stalled.
tx is successed in driver when tx is stalled.
(drvier cat get repoponse as IPW_INTA_BIT_TX_QUEUE_{1-4} interrupt )
....


did someone find  the same problem which tx is stalled  ?


Original issue reported on code.google.com by [email protected] on 15 Feb 2007 at 7:53

3945 not working, MAC address is ffffffffffff, awkward dmesg.

What steps will reproduce the problem?
Dont know, i believe it is an issue with my system.  I have a hp dv8339us
laptop.

What is the expected output? What do you see instead?
I would hope for it to find networks and have the correct MAC address. 
instead neither happens.

I am using iwi3945 on OSX 10.4.8 Semthax kernel 8.8.1
HP dv8339us, any questions about hardware, email me at
[email protected]  thanx

Original issue reported on code.google.com by [email protected] on 5 May 2007 at 8:59

Attachments:

Enter one-line summary

After installing the driver detects the card as PCI Ethernet Slot 
ci8086,4222.  I have a HP DV9030US the card should be 3945.

What is the expected output? What do you see instead?
None of the options work, card doesn't work at all.

What version of iwi are you using?
iwi3945

On what verion of IO80211Family or kernel?
Please provide any additional information below.
if can , plz attach or paste logs.

I'm running OSX 10.4.8

Thanks

Original issue reported on code.google.com by [email protected] on 8 Jul 2007 at 1:14

should send stat's packet to upper layer in ipw_handle_mgmt_packet?

in  ipw_handle_mgmt_packet
following routine exsit.
this dont be called because priv->config is set not CFG_NET_STATS.


    if (priv->config & CFG_NET_STATS) {
        IWI_DEBUG("sending stat packet.\n");

        /* Set the size of the skb to the size of the full
         * ipw header and 802.11 frame */
        skb_put(skb, le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE);
        /* Advance past the ipw packet header to the 802.11 frame */
        skb_pull(skb, IPW_RX_FRAME_SIZE);

        /* Push the ieee80211_rx_stats before the 802.11 frame */
        memcpy(skb_push(skb, sizeof(*stats)), stats, sizeof(*stats));

        //skb->dev = priv->ieee->dev;

        /* Point raw at the ieee80211_stats */
        /*skb->mac.raw = skb->data;

        skb->pkt_type = PACKET_OTHERHOST;
        skb->protocol = __constant_htons(ETH_P_80211_STATS);
        memset(skb->cb, 0, sizeof(rxb->skb->cb));
        netif_rx(skb);*/
        //ifnet_input(fifnet, skb, (const struct ifnet_stat_increment_param*)stats);

fNetif->inputPacket(skb,mbuf_len(skb),IONetworkInterface::kInputOptionQueuePacke
t);
        // fix me: fushInputQueue is called in interruptOccured with check?
        fNetif->flushInputQueue();
        rxb->skb = NULL;

    }

Original issue reported on code.google.com by [email protected] on 13 Feb 2007 at 2:52

169.254.xx ip filter

this is useful when a network as a stronger signal and
refusues to connect to other network with a valid ip


Original issue reported on code.google.com by [email protected] on 11 Feb 2007 at 10:37

3945 networkSelector won't allow choice selection, or list networks

What steps will reproduce the problem?
1. install 3945 package
2. reboot
3. load networkSelector

What is the expected output? What do you see instead?
After loading networkSelector, the only choices that work on the program is 
turning the card on 
and off, and closing the program. (choices 1 and 5) non-working choices are 
2,3. I dont know if 
my card will work, because i cant select a network...it just reloads the main 
choices. It DOES tell 
me my mac id...and it thinks my wifi led is on (even though is int)

What version of iwi are you using? the newest 3945 version...just downloaded
On what verion of IO80211Family or kernel? no idea. 10.4.9 though.
Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 27 Jul 2007 at 6:35

always network association failed

version: trunk
iso80211: 1.4.0

network association always is failed in current trunk.
I receive  always "disassociated: ...."  when attempt to associate.


jalavoui, this problem happen in ur environment?



Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 11:41

dmg installer

place the iwi2200 in /var/root and build the .pkg,.dmg - maybe you
like to add some text to the .pkg


Original issue reported on code.google.com by [email protected] on 11 Feb 2007 at 10:38

iwi break due to Apple's airport Update

What steps will reproduce the problem?
1. Goto Software Update, update Airport Extreme
2. IO80211Controller updated to a new version, 1.5.0
3. kextload iwi2200 will give a error message and refuse to load

What is the expected output? What do you see instead?


What version of iwi are you using? 1.4.8 with Airport update
On what verion of IO80211Family or kernel? 1.5.0. kernel is 8.8.1

It will be nice to have a test on a new build. I am happy to help to test.


Original issue reported on code.google.com by [email protected] on 14 Feb 2007 at 12:11

Network Selector wount run

What steps will reproduce the problem?
1. Exec NetworkSelector
2.
3.

When i execute NetworkSelector Terminal says:

Last login: Fri Jun  8 13:26:27 on ttyp1
/Users/andreasvonbarth/Desktop/networkSelector; exit
Welcome to Darwin!
andreas-von-barths-computer:~ andreasvonbarth$ /Users/andreasvonbarth/Desktop/
networkSelector; exit
Could not get ID for kernel control. 2
logout
[Process completed]


iwi2200 1.0-368
JaS latest release 10.4.8
Travelmate 2355 Intel M360

Also, the latest iwi2200 does not contain a networkselector (reason why i tried 
1.0)
Any help?

cheers!
Andy


Original issue reported on code.google.com by [email protected] on 8 Jun 2007 at 11:32

debug print in interupt service routine.

we dont use IOLog in interrupt service routine.
it is the reason that software interrupt ( handleInterrupt) is not
interruptible and it is not heavy ) and ( this is written in apple's
doccument).

and we must implement buffed debug print routine.
and currently we must use IWI_DEBUG_FULL in isr.







Original issue reported on code.google.com by [email protected] on 13 Feb 2007 at 2:15

Featured Downloads

the download section should include the .dmg installer only

if someone want the source code they can get it from svn

should i build one for v6 and v6 debug?


Original issue reported on code.google.com by [email protected] on 13 Feb 2007 at 10:44

i can't survey the network

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
i canìt survey the network with my wlan card. i've installed a iwi2200 v6


What version of iwi are you using? v6
On what verion of IO80211Family or kernel? 10.4.8 semthex and 10.4.7
Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 6:04

no header packet in rx?

jalavoui:
>the rx does receive packets with and without headers (fragments?). i'm
shure >about this


I dont meet this problem. 
I seem that it is not fragments. 
it is the reason that 2200/2945 is hardware fragmentation.

would you print the log?


Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 5:13

relation with nonets

jalavoui,
what is routine realted with notets ?

@@ -722,7 +709,6 @@ bool darwin_iwi2200::start(IOService *pr

                if (!spin) return false;
                if (!mutex) return false;*/
-               spin=IOSimpleLockAlloc();
                //IW_SCAN_TYPE_ACTIVE

queue_te(0,OSMemberFunctionCast(thread_call_func_t,this,&darwin_iwi2200::ipw_sc
an),NULL,NULL,false);

queue_te(1,OSMemberFunctionCast(thread_call_func_t,this,&darwin_iwi2200::ipw_ad
apter_restart),NULL,NULL,false);
@@ -735,7 +721,11 @@ bool darwin_iwi2200::start(IOService *pr

queue_te(8,OSMemberFunctionCast(thread_call_func_t,this,&darwin_iwi2200::ipw_ad
hoc_check),NULL,NULL,false);

queue_te(9,OSMemberFunctionCast(thread_call_func_t,this,&darwin_iwi2200::ipw_bg
_qos_activate),NULL,NULL,false);

queue_te(10,OSMemberFunctionCast(thread_call_func_t,this,&darwin_iwi2200::ipw_l
ed_activity_off),NULL,NULL,false);
-               
+
+
+               countnonet=0;
+               countb=0;
+               for (int i=0;i<20;i++) memset(&nonets[i],0,sizeof(struct
ieee80211_network));

@@ -1489,6 +1480,9 @@ void darwin_iwi2200::ipw_adapter_restart

        IWI_DEBUG("ipw_adapter_restart\n");
        priv->ieee->scans=0;
+       for (int i=0;i<20;i++) if (nonets[i].bssid)
memset(&nonets[i],0,sizeof(struct ieee80211
_network));
+       //INIT_LIST_HEAD(&nonet);       
+       //INIT_LIST_HEAD(&nonet);


@@ -5726,10 +5643,29 @@ int darwin_iwi2200::ipw_best_network(str
     IWI_DEBUG("Network '%s (%02x:%02x:%02x:%02x:%02x:%02x)' \n",
          escape_essid((const char*)network->ssid, network->ssid_len),
          MAC_ARG(network->bssid));
-
+       
+       //check if the network should be excluded
+       if (priv->ieee->iw_mode == IW_MODE_INFRA)
+       if (network->bssid)
+       {
+               for (int i=0;i<20;i++) 
+               {
+                       if (nonets[i].bssid)
+                       if (!memcmp(nonets[i].bssid, network->bssid,
ETH_ALEN)) 
+                       {
+                               IWI_DEBUG("Network '%s
(%02x:%02x:%02x:%02x:%02x:%02x)' in excl
ude list. "
+                               "restart card to include.\n",
+                               escape_essid((const char*)network->ssid,
network->ssid_len),
+                               MAC_ARG(network->bssid));
+                               return 0;
+                       }
+               }
+       }


etc...

plz explain theses.
theses is not merged now.





Original issue reported on code.google.com by [email protected] on 12 Feb 2007 at 7:26

code cleaning

kazu,

we should clean code that's no good

id like to clean all the code that starts with

#if 0

and 

#if NOT_YET

in future if you find code that's no good just clean it


Original issue reported on code.google.com by [email protected] on 16 Feb 2007 at 3:50

duplicate arp packet sending.

   en1 duplicate IP address 192.168.0.14 sent from address xx:xx:xx:xx:xx:xx

this is the cause of sending duplicated arp request .

I'm searching  fNetif and  fifnet.

Original issue reported on code.google.com by [email protected] on 31 Jan 2007 at 6:17

code fixes for all projects

i've changed svn for all projects

the .dmg build should stay as it is - it is used for all projects

i've made some changes to iwi2200. you should check them

current iwi2200 is broken - try to fix

Original issue reported on code.google.com by [email protected] on 24 Feb 2007 at 6:29

Enter one-line summary

What steps will reproduce the problem?
1. i've listed the network and select the correct unencrypted network
2. i've pressed the enter key to confirm the selection
3. crash!!! i can only hold down power button and shut down my hakintosh...
sigh

What is the expected output? What do you see instead?


What version of iwi are you using? iwi2200.dmg 
On what verion of IO80211Family or kernel? kernel 8.9.1 - osx 10.4.9
Please provide any additional information below.
if can , plz attach or paste logs.


Original issue reported on code.google.com by [email protected] on 22 May 2007 at 8:50

debug print strategy

I prepare 3 level debug print.

1. full level (FULL_DEBUG)
  this is enable with -DIWI_DEBUG_FULL .
  all debug message is outputed ( message in isr. )

2. normal debug level (NORMAL_DEBUG)
  this is enable with -DIWI_DEBUG_FULL .
  exclude isr debug from DEBUG_FULL

3. no debug ( no compile flags)
   this is only error , warning and normal log.




Original issue reported on code.google.com by [email protected] on 30 Jan 2007 at 12:11

we should release new version?

code in current trunk seem stable and dont have the problem about performance.

we should release current trunk as v0.7 ?








Original issue reported on code.google.com by [email protected] on 24 Feb 2007 at 5:37

Wrong kext in preinstall / preupgrade

In the .pkg there is a preinstall and a preupgrade
They have:

#!/bin/sh
rm -rf /System/Library/Extensions/iwi2200.kext
rm -f /System/Library/Extensions.kextcache
rm -f /System/Library/Extensions.mkext

This is iwi3945.kext NOT iwi2200.kext?

Original issue reported on code.google.com by [email protected] on 22 Feb 2007 at 7:28

tx performance.

i seem that tx performace is not good.
it is 3 time allocattion per 1 mbuf chains. 

this should be changed? 
this may be difficult issue .

Original issue reported on code.google.com by [email protected] on 29 Jan 2007 at 8:52

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.