Jump to content

Attansic L1 Driver Project


DaemonES
 Share

597 posts in this topic

Recommended Posts

.

 

atl1Hw_.media_type = currentMediumIndex;

This part is wrong, cause media_type have no direct relation to MEDIUM_INDEX_* enumeration

For example, MEDIA_TYPE_100M_FULL is 2 but MEDIUM_INDEX_100FD is 3, and so on

To simplify, i suggest just replace

if(atl1Hw_.media_type == MEDIA_TYPE_AUTO_SENSOR) atl1SetupMacCtrl();

in atl1GetAndUpdageLinkStatus

with

if(atl1Hw_.media_type == MEDIA_TYPE_AUTO_SENSOR)
{
 atl1SetupMacCtrl(); // setup mac controller with properly detected media
 selectCurrentMedium(mediumTable[currentMediumIndex]); // set current interface medium
}

But, to be honest, i prefer to keep MEDIA_INDEX_AUTO in current selected medium, because ifconfig en0 will show something like that:

en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500

inet 10.37.26.7 netmask 0xffffff00 broadcast 10.37.26.255

ether 00:1d:60:45:31:0f

media: autoselect (100baseTX <full-duplex>) status: active

supported media: autoselect 10baseT/UTP <half-duplex> 10baseT/UTP <full-duplex> 100baseTX <half-duplex> 100baseTX <full-duplex> 1000baseT <half-duplex> 1000baseT <full-duplex>

just to inform us that card is in autoselect state

Link to comment
Share on other sites

I understand :P

But i never coded a driver.. so this was like hide and seek for me :D

 

But if you want to keep the autoselect there... then you would have to set it to this at here

case MEDIUM_INDEX_AUTO:
DbgPrint("Selected medium is autoselect\n");
atl1Adapter_.link_speed = SPEED_1000;
atl1Adapter_.link_duplex = FULL_DUPLEX;
atl1Hw_.media_type = MEDIA_TYPE_AUTO_SENSOR;
break;

 

because this makes it think that it is 1000BaseT Full-Duplex... making the auto selected speed/duplex not being used :/

Link to comment
Share on other sites

ok, just checked the last version available. the speed is just a little bit faster, but still, loading the pages takes a years to load up. the detection of connection type is good, but speed is 5kb/s down and 1/kb up at max...and i noticed that my old rlt8139 has a flow controll in supported modes, but attansic doesnt...

Link to comment
Share on other sites

I understand :DBut i never coded a driver.. so this was like hide and seek for me :DBut if you want to keep the autoselect there... then you would have to set it to this at here
case MEDIUM_INDEX_AUTO:DbgPrint("Selected medium is autoselect\n");atl1Adapter_.link_speed = SPEED_1000;atl1Adapter_.link_duplex = FULL_DUPLEX;atl1Hw_.media_type = MEDIA_TYPE_AUTO_SENSOR;break;

because this makes it think that it is 1000BaseT Full-Duplex... making the auto selected speed/duplex not being used :/

This is pretty confusing... Well, it MUST think that it is autoselect, because just after switch this code doing setCurrentMedium(medium);And according to previous declarations, it MUST be MEDIUM_INDEX_AUTO, just after driver loads.Can you show debug log between [AttansicL1Ethernet] AttansicL1Ethernet::start and first few [AttansicL1Ethernet] link event's ?
This does what you want MadInt
case MEDIUM_INDEX_AUTO:DbgPrint("Selected medium is autoselect\n");atl1Hw_.media_type = MEDIA_TYPE_AUTO_SENSOR;break;

removing the link_speed & link_duplex at auto makes it work as it should.

Yep, theoretically it CAN confuse MAC controller with invalid settings, but I cant imagine how this can lead to incorrect information in ifconfig outputAlso, i think we can safely move atl1SetupMacCtrl(); call from selectMedium() to atl1GetAndUpdateLinkstatus() (remove if(atl1Hw_.media_type == MEDIA_TYPE_AUTO_SENSOR) checking)
ok, just checked the last version available. the speed is just a little bit faster, but still, loading the pages takes a years to load up. the detection of connection type is good, but speed is 5kb/s down and 1/kb up at max...and i noticed that my old rlt8139 has a flow controll in supported modes, but attansic doesnt...
Show us debug log filtered by SMB keyword, i think this will be very interesting
Link to comment
Share on other sites

Finally managed 1Gb link to up (TIP: keep media setting to Automatic in ethernet options)... Was able to tranfer 1.3Gb file to my macbook with ~300Mbit/sec wirespeed. Not bad, i suppose.

So try this version.

Thank you !! This was the last thing not working on my rig ! Thank you MadInt & DaemonES!

The driver is working fine until now

 

Edit: I use a ppoe connection, i noticed that when the pc wakes from sleep the attansic adapter does not aquire itself a ip adress, therefor ppoe is not working, keeps saying it cannot connect. Other than that, on restart it works fine.

Link to comment
Share on other sites

Keep up the good work, I'm sure lots of people will love the work you (DaemonES & MadInt) have done !

 

I have tried your latest build in "Auto" settings and it works beautifully. File transfer seems quite fast too :rolleyes:

Link to comment
Share on other sites

hey, sorry to write this, but the speed problem still exists. it can detect the right connection speed however. maybe im doing something wrong?

the way i install and load is:

sh unloaddebug.sh

sh uninstall.sh <--just to be sure.

navigate to new version

sh installdebug.sh / installrelease.sh

after doing that everything seems to be ok, sh tell me that kext is loaded succesfuly, connection works,but very slow.

on the last build i had 17kb/s down(for a moment) then went down to 2kb/s and up is 1kb/s all the time

when i have uninstalled the driver i can actually see the ethernet port, but cant change anything unless i install the new version.

is it possible that osx has some corrupted version of the driver installed with the os itself which prevents me from getting this to work?

Link to comment
Share on other sites

card worked without any problems on windows, the same cable is used to connect via rtl8139d so i assume the cable is allright. will check other cable tho...no, its not the cable thing... any clues?

 

Hi, did you try to manually configure the network card interface?

 

try downloading the new version of the driver, it work just fine here...

Link to comment
Share on other sites

Finally managed 1Gb link to up (TIP: keep media setting to Automatic in ethernet options)... Was able to tranfer 1.3Gb file to my macbook with ~300Mbit/sec wirespeed. Not bad, i suppose.So try this version.
if this is the newest version it doesnt work any better apart from being able to automatically configure the connection settings:/i think maybe some rx/tx buffers are overloaded or something. is there any way to play with attansic params.h and then compile it to kext?
Finally managed 1Gb link to up (TIP: keep media setting to Automatic in ethernet options)... Was able to tranfer 1.3Gb file to my macbook with ~300Mbit/sec wirespeed. Not bad, i suppose.So try this version.
if this is the newest version it doesnt work any better apart from being able to automatically configure the connection settings:/i think maybe some rx/tx buffers are overloaded or something. is there any way to play with attansic params.h and then compile it to kext?
Link to comment
Share on other sites

Finally managed 1Gb link to up (TIP: keep media setting to Automatic in ethernet options)... Was able to tranfer 1.3Gb file to my macbook with ~300Mbit/sec wirespeed. Not bad, i suppose.

So try this version.

 

P5-KPLVM - Card detected, usual latencies

 

your previous release sometime while ping introduce some lag. This releaase fixed that problem

 

I've added note about the chip and my motherboard into the wiki

 

Eddi

Link to comment
Share on other sites

if this is the newest version it doesnt work any better apart from being able to automatically configure the connection settings:/i think maybe some rx/tx buffers are overloaded or something. is there any way to play with attansic params.h and then compile it to kext?if this is the newest version it doesnt work any better apart from being able to automatically configure the connection settings:/i think maybe some rx/tx buffers are overloaded or something. is there any way to play with attansic params.h and then compile it to kext?

I need more useful information. You have to try debug version and show us entire of driver's log. To get driver's log I suggest grep "AttansicL1Ethernet" /var/log/system.log command

Link to comment
Share on other sites

here it is, hope it will help u guys, cos i just don't know whats wrong. btw. if i ping some www from terminal i got the same ping as on my realtek card, so i think its just pure bandwich problem?

 

Apr 14 09:32:14 milkowo-tylkowy sudo[257]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/bin/rm -rf /System/Library/Extensions.mkext
Apr 14 09:32:14 milkowo-tylkowy sudo[258]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/bin/rm -rf /System/Library/Extensions.kextcache
Apr 14 09:32:14 milkowo-tylkowy sudo[259]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/bin/cp -R AttansicL1Ethernet.kext /System/Library/Extensions
Apr 14 09:32:14 milkowo-tylkowy sudo[260]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/usr/sbin/chown -R root:wheel AttansicL1Ethernet.kext
Apr 14 09:32:14 milkowo-tylkowy sudo[261]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/usr/bin/find /System/Library/Extensions/AttansicL1Ethernet.kext -type d -exec chmod 0755 {};
Apr 14 09:32:15 milkowo-tylkowy sudo[267]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/usr/bin/find /System/Library/Extensions/AttansicL1Ethernet.kext -type f -exec chmod 0644 {};
Apr 14 09:32:15 milkowo-tylkowy sudo[271]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/sbin/kextload -t AttansicL1Ethernet.kext
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::init
Apr 14 09:32:19 milkowo-tylkowy sudo[272]: miloszengel : TTY=ttys000; PWD=/Users/miloszengel/Downloads/AttansicL1Ethernet/build/Debug; USER=root; COMMAND=/usr/sbin/kextcache -k /System/Library/Extensions
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::start
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::createOutputQueue
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::getPacketBufferConstraints
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Vendor ID 1969, device ID 1048
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] MMR0 address dffc0004
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Memory mapped at bus address dffc0000, virtual address 34ef5000, length 262144
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] REG_VPD_CAP = 3
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] REG_PCIE_CAP_LIST = 16c10
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] REG_MASTER_CTRL = 90060000
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] REG_PHY_STATUS = 7949
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() autosensing caps mii_autoneg_adv_reg=0xDE0 mii_1000t_ctrl_reg=0x200
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() successfull
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::atl1PhyReset with media_type=0
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] MSI interrupt index 1
Apr 14 09:32:19 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::getHardwareAddress
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 242/256 address 36D8A000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 243/256 address 3732C000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 244/256 address 3784E000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 245/256 address 37850000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 246/256 address 37392000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 247/256 address 37D94000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 248/256 address 37676000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 249/256 address 37A18000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 250/256 address 3821A000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 251/256 address 380FC000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 252/256 address 37D7E000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 253/256 address 37940000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 254/256 address 37C22000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated rx free buffer 255/256 address 36F24000 size 1700
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Total allocated space for rx descriptors 435200
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Allocated memory for buffers 389120
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: AttansicL1Ethernet: Ethernet address 00:18:f3:74:4f:14
Apr 14 09:32:20 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::enable
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Selected medium is NULL, forcing to autonegotiation
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::atl1Configure()
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Writing ring dma registers tpd=346D000 rfd=346E000 rrd=346EC00 cmb=3470C00 smb=3470C10
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::selectMedium
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Selected medium is autoselect
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() autosensing caps mii_autoneg_adv_reg=0xDE0 mii_1000t_ctrl_reg=0x200
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() successfull
Apr 14 09:32:21 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::atl1PhyReset with media_type=0
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Link is active, speed 100, duplex 2
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastMode, 1
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastMode, 0
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] link event (phy_data=0x7402 status=0x45301000)!
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] Link is active, speed 100, duplex 2
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 342 tp_next_to_use=0
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastMode, 1
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=1
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=2
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=3
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=1 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:24 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=4 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=3 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 342 tp_next_to_use=4
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=5
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=6
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=1 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=3 tx_exc_defer=0 tx_defer=0 tx_bcast=2 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:25 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=7
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=8
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=9
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 258 tp_next_to_use=10
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=11
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=3 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:26 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 191 tp_next_to_use=12
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 191 tp_next_to_use=13
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=14
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=15
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 72 tp_next_to_use=16
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 79 tp_next_to_use=17
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 74 tp_next_to_use=18
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=19
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=20
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 73 tp_next_to_use=21
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=22
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 46 tp_next_to_use=23
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=24
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=25
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=26
Apr 14 09:32:27 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 214 tp_next_to_use=27
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=7 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=15 tx_exc_defer=0 tx_defer=0 tx_bcast=3 tx_mcast=3 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 54 tp_next_to_use=28
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 197 tp_next_to_use=29
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=7 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=30
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=31
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=32
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 103 tp_next_to_use=33
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 254 tp_next_to_use=34
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 274 tp_next_to_use=35
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=5 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=3 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=36
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=37
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=38
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=39
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=40
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=41
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=42
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=43
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=44
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=45
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=46
Apr 14 09:32:28 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=47
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=48
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=49
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=50
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 382 tp_next_to_use=51
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 402 tp_next_to_use=52
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=12 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=17 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=53
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=54
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 193 tp_next_to_use=55
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 213 tp_next_to_use=56
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=5 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=4 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 193 tp_next_to_use=57
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 213 tp_next_to_use=58
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=59
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=3 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=3 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 267 tp_next_to_use=60
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 287 tp_next_to_use=61
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 170 tp_next_to_use=62
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 190 tp_next_to_use=63
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=4 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=4 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=64
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=65
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 100 tp_next_to_use=66
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 317 tp_next_to_use=67
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 337 tp_next_to_use=68
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=2 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=5 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=3 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=69
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:29 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 267 tp_next_to_use=70
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 287 tp_next_to_use=71
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:30 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 499 tp_next_to_use=72
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 519 tp_next_to_use=73
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:31 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 170 tp_next_to_use=74
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 190 tp_next_to_use=75
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 84 tp_next_to_use=76
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 84 tp_next_to_use=77
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=78
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=79
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=80
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=81
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=82
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 244 tp_next_to_use=83
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=2 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=10 tx_exc_defer=0 tx_defer=0 tx_bcast=6 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 99 tp_next_to_use=84
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=2 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:32 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 499 tp_next_to_use=85
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 519 tp_next_to_use=86
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=87
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=88
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=89
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=90
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=91
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=92
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=93
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=94
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=95
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=96
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=97
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=11 tx_exc_defer=0 tx_defer=0 tx_bcast=10 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:34 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 46 tp_next_to_use=98
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=99
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=100
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=101
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=102
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 110 tp_next_to_use=103
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=5 tx_exc_defer=0 tx_defer=0 tx_bcast=5 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 92 tp_next_to_use=104
Apr 14 09:32:35 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 42 tp_next_to_use=105
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=2 rx_bcast=1 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=1 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=106
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=107
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 138 tp_next_to_use=108
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=109
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=110
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=111
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=112
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 138 tp_next_to_use=113
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=114
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=115
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 78 tp_next_to_use=116
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=117
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 138 tp_next_to_use=118
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=119
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 260 tp_next_to_use=120
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=121
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 158 tp_next_to_use=122
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=10 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=17 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 158 tp_next_to_use=123
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:36 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:37 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:37 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=124
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 158 tp_next_to_use=125
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=126
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 170 tp_next_to_use=127
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=128
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 179 tp_next_to_use=129
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=130
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 200 tp_next_to_use=131
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=132
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 200 tp_next_to_use=133
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=134
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 105 tp_next_to_use=135
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=136
Apr 14 09:32:38 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=137
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=8 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=14 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 66 tp_next_to_use=138
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:39 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:41 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 170 tp_next_to_use=139
Apr 14 09:32:41 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 190 tp_next_to_use=140
Apr 14 09:32:41 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:41 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:42 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 499 tp_next_to_use=141
Apr 14 09:32:42 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 519 tp_next_to_use=142
Apr 14 09:32:42 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:42 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:42 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=143
Apr 14 09:32:43 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:43 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:44 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:44 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:51 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:51 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:51 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=144
Apr 14 09:32:52 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:52 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:54 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 90 tp_next_to_use=145
Apr 14 09:32:54 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:54 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:58 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 499 tp_next_to_use=146
Apr 14 09:32:58 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 519 tp_next_to_use=147
Apr 14 09:32:58 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:32:58 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=2 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=2 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:32:59 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 70 tp_next_to_use=148
Apr 14 09:33:00 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=0 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:33:00 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=1 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=1 tx_underrun=0 tx_rd_eop=0 tx_trunc=0
Apr 14 09:33:00 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB RX: rx_ok=1 rx_bcast=0 rx_mcast=0 rx_sz_ov=0 rx_rxf_ov=0 rx_rrd_ov=0 rx_align_err=0
Apr 14 09:33:00 milkowo-tylkowy kernel[0]: [AttansicL1Ethernet] SMB TX: tx_ok=0 tx_exc_defer=0 tx_defer=0 tx_bcast=0 tx_mcast=0 tx_underrun=0 tx_rd_eop=0 tx_trunc=0

Link to comment
Share on other sites

woot, this thing is actualy getting somewhere. Keep up the good work guys. Im going to have to do some testing when I finish downloading the latest kalyway.

Link to comment
Share on other sites

just a quick guess bout my l1 card. i have my system overclocked(fsb&cpu,memory --- as in my sig). when i try to set pci express speed to 100mhz i cannot boot. it only works with auto, i assume the speed is higher, when u overclock fsb and since attansic uses pciexpress interface(virtually)maybe that causes instabilty? i'll try to check it later and post results.

Link to comment
Share on other sites

its working:D:D:D yeyeyeyeye:)

i had to play with bios seetings regarding the cpu and memory frequency. restored to defaults and its working ok:)

i just forgot that my mobo isnt very good for overclocking and the attansic doesnt really like much overclocking:P

i know i know. there is a option to manually set the pcie frequency but if i change it to something else than auto i can even boot up and after reset i got this warning screen that overclocking wasn't succesful(during post test).

so!

many many great thanks to all of you guys who were involved in creating the driver. now i know, that everything can be fixed in the osx86... thanks to you!

will post my sig on the wiki page so others will know:)

thanks again:)

Link to comment
Share on other sites

Anybody experiencing Kernel Panics when there is no cable attached?

Mine sometime gives KP when there is no cable attached :S

Maybe because of this?

 

Yep, theoretically it CAN confuse MAC controller with invalid settings, but I cant imagine how this can lead to incorrect information in ifconfig output
Link to comment
Share on other sites

Guest undefined

i just tried to boot and reboot with unplugged cable - no kernel panics, all smooth. maybe that's applehda? it caused me some kps after 10.5.2 installation, even if it doesn't work.

Link to comment
Share on other sites

 Share

×
×
  • Create New...