Help - Search - Members - Calendar
Full Version: Attansic L1 Driver Project
InsanelyMac Forum > OSx86 Project > Hardware and Drivers > LAN and Wireless
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
MadInt
QUOTE(NoSTaBoNN @ Apr 12 2008, 06:57 PM) *
.

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
CODE
if(atl1Hw_.media_type == MEDIA_TYPE_AUTO_SENSOR) atl1SetupMacCtrl();

in atl1GetAndUpdageLinkStatus
with
CODE
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:
QUOTE
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
NoSTaBoNN
I understand biggrin.gif
But i never coded a driver.. so this was like hide and seek for me biggrin.gif

But if you want to keep the autoselect there... then you would have to set it to this at here
CODE
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 :/
braveskunk
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...
NoSTaBoNN
This does what you want MadInt
CODE
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.
MadInt
QUOTE(NoSTaBoNN @ Apr 12 2008, 07:40 PM) *
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
CODE
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 ?
QUOTE(NoSTaBoNN @ Apr 12 2008, 07:50 PM) *
This does what you want MadInt
CODE
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)
QUOTE(braveskunk @ Apr 12 2008, 07:45 PM) *
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
NoSTaBoNN
Placing the atl1SetupMacCtrl(); in atl1GetAndUpdateLinkstatus() seems ok.. tested it..
didn't gave me any errors biggrin.gif
MadInt
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.
sama7896
QUOTE(MadInt @ Apr 12 2008, 09:33 PM) *
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.
cyclonefr
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 smile.gif
braveskunk
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?
NoSTaBoNN
Does the card work under windows?
Because this really sound like a broken card to me.. or a broken router/cable.
braveskunk
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?
Jimmy Mallmann
QUOTE(braveskunk @ Apr 13 2008, 05:10 PM) *
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...
braveskunk
QUOTE(MadInt @ Apr 12 2008, 11:33 PM) *
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?
QUOTE(MadInt @ Apr 12 2008, 11:33 PM) *
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?
dpeddi
QUOTE(MadInt @ Apr 12 2008, 10:33 PM) *
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
AleXoiD
the last version still is tooooo sllllow at 100 full dup... about 2-3KB/s... unsure.gif
MadInt
QUOTE(braveskunk @ Apr 13 2008, 08:45 PM) *
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
braveskunk
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?

CODE
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
kiwi89
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.
braveskunk
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.
braveskunk
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:)

NoSTaBoNN
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?

QUOTE(MadInt @ Apr 12 2008, 10:15 PM) *
Yep, theoretically it CAN confuse MAC controller with invalid settings, but I cant imagine how this can lead to incorrect information in ifconfig output


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.
zaishu
How to install,my Motherboards is P5b plus,every is good except lan card,please help me,DaemonES/MadInt .
emulatorb
QUOTE(zaishu @ Apr 16 2008, 05:34 PM) *
How to install,my Motherboards is P5b plus,every is good except lan card,please help me,DaemonES/MadInt .

just install the attacheded file with kext helper, reboot, and you're set.
braveskunk
or if u dont have/dont know what kext helper is.
copy the kext to system/library/extensions,then open terminal,
type sudo -s
enter your password
navigate to system/library/extensions to do that, type

cd /
cd system/library/extensions/

type kextload attansicl1ethernet.kext
open disk utility and click repair permissions
the commands u have to enter are bold

OR

u can download the full version, of the codec, open terminal, navigate where u downloaded it and type: sh installrelease.sh enter ur password when prompted restart after finishing. then u should have it. if u have problems just pm me

thanks to people here, i now have 2 nics in my hackintosh:)
Rotmistr N
I have Asus P5K MB and Kalyway 10.5.2 and my Attansic card works but... I got problems with file sharing through afp. Smb, screen sharing and internet work without any problems.
sama7896
QUOTE(Rotmistr N @ Apr 16 2008, 09:35 PM) *
I have Asus P5K MB and Kalyway 10.5.2 and my Attansic card works but... I got problems with file sharing through afp. Smb, screen sharing and internet work without any problems.

Does the adapter acquire it's ip adress on wake from sleep ? Cose mine doesn't... sad.gif Sleep kernel is useless if attansic don't wake ...

Is there a command i can run in terminal to post a log ?
kiwi89
hrm, I was able to test the drivers last night before I ran into some partition problems. They seemed to work fine for network stuff... easy to set up and everything.
zaishu
Thank you veru much braveskunk,the card is workking.
braveskunk
good:) glad to hear it worked for u, zaishu:)
Rotmistr N
QUOTE(sama7896 @ Apr 16 2008, 09:50 PM) *
Does the adapter acquire it's ip adress on wake from sleep ? Cose mine doesn't... sad.gif Sleep kernel is useless if attansic don't wake ...

I have vanilla kernel

I've tested the sleep mode and yes, the card doesn't wake up after it - I had to reboot my pc to get it to work again.
Wingleader
Thanks emulatorB and ofcourse demoniod, madint and nostabonn it works like a charm one last thing would be adding dhcp support because currently this isn't working on my system
asus p5bse, 4gb ram coreduo 6600, external usb HD

Great work now only sound is left for me to find a working kext.
aroaros
QUOTE(Wingleader @ Apr 19 2008, 03:24 PM) *
Thanks emulatorB and ofcourse demoniod, madint and nostabonn it works like a charm one last thing would be adding dhcp support because currently this isn't working on my system
asus p5bse, 4gb ram coreduo 6600, external usb HD

Great work now only sound is left for me to find a working kext.


Great!

I installed the driver in my asus P5KC, I setup with DHCP and it works.

Thanks for the efforts.
braveskunk
QUOTE(Wingleader @ Apr 19 2008, 03:24 PM) *
Thanks emulatorB and ofcourse demoniod, madint and nostabonn it works like a charm one last thing would be adding dhcp support because currently this isn't working on my system
asus p5bse, 4gb ram coreduo 6600, external usb HD

Great work now only sound is left for me to find a working kext.


dhcp works for me as well.

could u describe whats happening when u select dhcp option? something special or just not obtaining address. grep from system.log would be helpful,maybe?
Wingleader
QUOTE(braveskunk @ Apr 19 2008, 05:04 PM) *
dhcp works for me as well.

could u describe whats happening when u select dhcp option? something special or just not obtaining address. grep from system.log would be helpful,maybe?


Will try this later, first have to reinstall everything because after trying to update to 10.5.2 it crashed. Have tried to remove the acpi.kext and also reinstalled the dsmos.kext but didn't help.
So now i've decided to reinstall and will not upgrade to 10.5.2.
Wingleader
Oke i've reinstalled leopard and only installed the network driver via ktexthelper and rebooted my system. After reboot network is unavailable.

If i go to system preferences => network => configure dhcp is choosen but no addresses are given and network stays red. If i choos dhcp with manual adress and type in a ipaddress it's not working.

Only completely manualy is working. I've had a look at the system.log but can't find anything interesting.

<SNIPPET>
Apr 19 19:38:52 wingies-mac-pro configd[33]: setting hostname to "wingies-mac-pro.local"
Apr 19 19:38:52 wingies-mac-pro kernel[0]: AttansicL1Ethernet: Ethernet address 00:1d:60:1c:0f:09
Apr 19 19:38:52 wingies-mac-pro /usr/sbin/ocspd[75]: starting
Apr 19 19:41:29 wingies-mac-pro mDNSResponder[22]: Note: Frequent transitions for interface en0 (192.168.1.12); network traffic reduction measures in effect
</SNIPPET>

Is there anything specific I should look for?
PacmanMCE
My Attansic works!!! (Posting this with it!)

To the developer(s): while(YES){[developer thx: @"You're the greatest!"];}
braveskunk
to be honest i dont see anything specific with ur log wingleader.
u say when u choose automatic the icon stays red- red mean it has cable unplugged? am i right?dump question: u have dhcp enabled in the router?maybe just doublecheck.
is the 192.168.1.12 configured manually or with dhcp selected, cos if yes it actually gets the ip from router
Wingleader
QUOTE(braveskunk @ Apr 22 2008, 02:48 AM) *
to be honest i dont see anything specific with ur log wingleader.
u say when u choose automatic the icon stays red- red mean it has cable unplugged? am i right?dump question: u have dhcp enabled in the router?maybe just doublecheck.
is the 192.168.1.12 configured manually or with dhcp selected, cos if yes it actually gets the ip from router


I don't know if red means cable unplugged, I think it means that it doesn't know it's settings. Yep my router is dhcp enabled it works without a problem with vista/xp. I know my way around with networking.

the 192.168.1.12 is configured manually all other settings don't work (at this moment) with 10.5.1 version of kalyway.
RubberSoul
now who will be disagree that Russians are the best prorammers and hackers in the world?
DaemonES n MadInt thank you вери вери муч!
Jimmy Mallmann
Hi, here is a .pkg of the last version of the kext posted here...

Hope it helps some one.. rolleyes.gif

Thanks to DaemonES and MadInt (again!)
Attansic L1 Ethernet
andromedar
Thank you DaemonES and MadInt !You guys are great ! wink.gif Thank you DaemonES and MadInt !You guys are great ! wink.gif Thank you DaemonES and MadInt !You guys are great ! wink.gif
braveskunk
i upgraded to 5.2 right after installing 5.1 so i cannot say would it work iwht 5.1 but it should,anyway:)
if u have ur system overclocked u may try to set the speeds to defaults and try to repair permissions(whish i suppose u know it:)).
in my case, lowering the fsb by 2mhz fixed the problem. i had 240, went down to 238(cos setting of pcie speed didnt work), fixed the stability problem. hows the transfers? r they slower then should be? hows with ping?

ellipse1000
It works nicely here! I'm very grateful, thanks a bunch.
markoz
Hello everybody, is there any chance of making Attansic L2 Ethernet driver? I have installed Kalyway 10.5.2 on Asus P5G-MX and everything worked fine except LAN sad.gif . I tried Attansic L1 driver but it doesn't work.
eberts
I tried the debug kext with my L2 some days ago. This is what I got when pinging my router:

Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::selectMedium
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] Selected medium is 100FD
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() autosensing caps mii_autoneg_adv_reg=0xD00 mii_1000t_ctrl_reg=0x00
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() successfull
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::atl1PhyReset with media_type=2
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] Link is active, speed 100, duplex 2
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 342 tp_next_to_use=1
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastMode, 1
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=2

I'm getting 'No route to host' or 'Host is down'
Again, pinging itself works...
markoz
QUOTE(eberts @ May 2 2008, 08:04 AM) *
I tried the debug kext with my L2 some days ago. This is what I got when pinging my router:

Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::selectMedium
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] Selected medium is 100FD
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() autosensing caps mii_autoneg_adv_reg=0xD00 mii_1000t_ctrl_reg=0x00
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] atl1PhySetupAutonegAdv() successfull
Apr 24 22:55:56 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::atl1PhyReset with media_type=2
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] Link is active, speed 100, duplex 2
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 342 tp_next_to_use=1
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastMode, 1
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::setMulticastList
Apr 24 22:55:58 smac kernel[0]: [AttansicL1Ethernet] AttansicL1Ethernet::outputPacket, length 86 tp_next_to_use=2

I'm getting 'No route to host' or 'Host is down'
Again, pinging itself works...


So what do you think, can you do it?
strangewang
hi ...i am work in W 10.5.2 but sometime when i sleep or restart it's not work until i put the cable off and plug againg i have two ethertnet card the other one is realtek series when l1 is not work it effect the normal one


mb:p5kr
memory:4g
shumik
hi!
I had this driver working flawlessly until shortly after I reinstalled my LeoForAll.
Ever since it disconnects from the net shortly after booting up.
Also I am unable to shutdown or reboot properly. It is showing me the following message continously upon rebooting or shutting down.

CODE
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021
[AttansicL1Ethernet] Error: rx exception: status = 0x65300021


Anyone could help me out, Please?
I solve this unloading and reloading the driver. But I don't like this dirty solution. I can't confirm if the problem dissapears completely, but what is certain that even after unloading and reloading the driver, I still can't shutdown.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.