LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Ethernet card DGE-528T and Kernel 2.6? (https://www.linuxquestions.org/questions/linux-hardware-18/ethernet-card-dge-528t-and-kernel-2-6-a-350564/)

vimico 08-06-2005 10:24 AM

Ethernet card DGE-528T and Kernel 2.6?
 
Today I bought the D-Link DGE-528T ethernet card.

Code:

lspci -n: 1186:4300
This card is not being automatically recognized by Debian Sarge.

The text on the outside promised a linux driver. And indeed, there were Linux drivers included... for kernel 2.2 and 2.4.

As I found out (from the net and from the 2.4 source code), the card is based on the Realtek RTL8169.

And for this chip set, a kernel module is available in 2.6: r8169.ko
The 2.4 source and the r8169 source in 2.6 are very similar.

Can anyone tell me, how to tell Linux to use this driver for the Ethernet card?

What should happen once I loaded the module with modprobe? Is there a "/proc" info that confirms that Linux has recognized the card and is using this driver, and if so, does Linux assign it to the next available ethX device automatically?

Does anyone has successfully installed this card?

ksc 08-06-2005 11:51 AM

cat /proc/ioports
cat /proc/interrupts
lspci

see if anything related to your network card is there.


If it is, get the right module, and do a modprobe "modulename", and to see if your card works, just type dmesg.

vimico 08-06-2005 07:03 PM

The problem has been solved.

I have compared the above mentioned files (the 2.6 driver r8169) and the 2.4 driver provided by D-link. The files are fairly similar.

The show stopper was a table containing the PCI ids (the number produced by lspci -n) for which the driver feels responsible.

I use Debian Sarge. The current kernel (Aug. 2005) in Sarge is 2.6.8. In this kernel, the table does not contain the PCI id of the DGE-528T: "1186:4300".

I then downloaded the current kernel from kernel.org (2.6.12). In this version, this PCI id has been added.

In short: I patched the driver in my current system. When Debian releases a newer kernel, the problem will be gone for good.

aphexd 08-08-2005 07:09 AM

i have the same problem,
how can i install the kernel 2.6.12.4 from a debian

vimico 08-09-2005 05:29 AM

Quote:

Originally posted by aphexd
i have the same problem,
how can i install the kernel 2.6.12.4 from a debian

What distribution and what kernel version are you currently using?

If you don't have experience in compiling and installing kernels, I suggest that you check your distribution if there is a kernel available >= 2.6.10. Using the vanilla kernel from kernel.org is a bit tricky.

The version of your current kernel can be obtained using:
Code:

uname -r
There is an "easy" way to patch the existing driver (without replacing the entire kernel) - but let's try the official way first, if possible.

aphexd 08-09-2005 06:14 AM

my distro : debian sarge
my kernel : 2.6.8-2-686
the dge528.o works fine with kernel 2.4, but after apt-get install kernel-image-2.6.8-2-686
and reboot on 2.6...

lsmod => no dge528 :( and no eth1 at all :((

thanks ;)

nickjohnson 08-09-2005 08:27 AM

I'm running FC4 (2.6.11-1.1369-FC4) with two of these cards. They are detcted but never assigned eth numbers (they appear as devXXXX).

Anyone experienced the same thing?


Nick.

[Edit]
Deleting all the NIC's in the control panel applet (including under the hardware tab) causes these cards to pick up the appropriate ethX number after reboot. If there are any NIC aliases left in /etc/modprobe.conf then these must be deleted too. Mine wanted to pick up the eth aliases already occupied by existing cards.


vimico 08-09-2005 03:29 PM

Quote:

Originally posted by nickjohnson
[B]I'm running FC4 (2.6.11-1.1369-FC4) with two of these cards. They are detcted but never assigned eth numbers (they appear as devXXXX).
As you pointed out, you are running 2.6.11 (i.e. >= 2.6.10). So, the recognition is not the problem.

The original poster, aphexd, isn't at that point, yet.

vimico 08-09-2005 03:41 PM

How to patch kernels < 2.6.10
 
Here is a description on how to patch the current driver on 2.6 kernels before 2.6.10.

As mentioned above, the DGE-528T uses the RTL-8169. For the RTL-8169 a driver is available in 2.6 (/usr/src/linux/drivers/net/r8169.c.) but not being used for the DGE-528T.

The reason is, that the driver expects a card with the PCI ID 10EC:8169, but the PCI ID of the DGE-528T is 1186:4300.

You can display the PCI IDs of all your PCI cards using lspci -n. Make sure that your DGE-528T has the ID 1186:4300 before proceeding.

A devices driver uses the PCI ID to determine, if it can handle the device in question. For this reason a table exists within the device driver, listing the IDs of all cards it feels responsible for.

This is the table in r8169.c before kernel 2.6.10:

Code:

static struct pci_device_id rtl8169_pci_tbl[] = {
        {0x10ec, 0x8169, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        {0,},
};

and this is the table since 2.6.10:

Code:

static struct pci_device_id rtl8169_pci_tbl[] = {
        {0x10ec, 0x8169, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        {0x1186, 0x4300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
        {0,},
};

As you can see, our ID has been added to the table and since then, the driver recognizes the DGE-528T automatically.

In order to add this feature, the official way would be to get a newer kernel from your distribution, or, if this is not available, to get the source for the current one and modify it accordingly. You would also need to download and install all the necessary utilities for compiling a kernel. Then you have to modify the source in the way mentioned above, recompile the kernel and install the module. This all is very time consuming and other problems may occur along the way.

And all this for only 8 "wrong" bytes.

A faster way would be, to find the "wrong" ID in the module binary and replace it with "our" ID.

In order to do this, you only need the utility hexedit, which might not be installed by default. Get it from your distribution.

No warranties on the following procedure. Tested on Debian 2.6.8 on an Intel based machine.

Find out what kernel version you use:
Code:

uname -r
The module should be located at:

/lib/modules/2.6.x/kernel/drivers/net/r8169.ko

(replace 2.6.x with the version number of your kernel - all of it (the entire output of the last command)).

Become root and change to this subdirectory. Create a backup copy of the driver (one never knows) and start hexedit:

Code:

cd /lib/modules/2.6.x/kernel/drivers/net
cp r8169.ko r8169.ko.old
hexedit r8169.ko

You now see the file in hex format.
In order to find the "wrong" ID "10EC 8169", you have to search for: EC 10 00 00 69 81 00 00
(Remember: on Intel architecture)


The search function in hexedit is activated by the key "/". Enter the hex number without spaces: EC10000069810000

Press Enter. The cursor should move and now being placed over the byte containing "EC". FYI: I found that string at position 0x3340.

Overwrite the bytes with: 8611000000430000
(Which is 1186:4300 in the "Intel byte order").

Save the file with "F2" and exit hexedit with Ctrl-X.

Reboot - keep an eye on the boot messages. The card should be recognized now.

aphexd 08-09-2005 03:53 PM

waw !! what a modd ;) you're right about pci id's
i'm going to test the edit of r8169.ko, it's a pretty good idea

otherwise i'll wait for the next realease of kernel-2.6.12.4 for debian

thank you vimico :)

hollymcr 06-29-2006 01:54 PM

Quote:

Originally Posted by vimico
The search function in hexedit is activated by the key "/". Enter the hex number without spaces: EC10000069810000

Press Enter. The cursor should move and now being placed over the byte containing "EC". FYI: I found that string at position 0x3340.

Overwrite the bytes with: 8611000000430000
(Which is 1186:4300 in the "Intel byte order").

Save the file with "F2" and exit hexedit with Ctrl-X.

Reboot - keep an eye on the boot messages. The card should be recognized now.

First: Thanks vimico for this info, its just what I needed.

Second: For the benefit of anyone else who found this in the archives, I found that the following also worked for me:

Code:

mv r8169.ko r8169.ko.orig && xxd -g8 r8169.ko.orig | sed s/ec10000069810000/8611000000430000/ | xxd -r > r8169.ko
In English(-ish!): Rename the original file to a .orig. Then use xxd to convert the binary driver file into an ascii dump, which is piped through sed to do the conversion, then back through xxd to convert back to binary, which is then redirected into a new r9169.ko file.

The resulting file should be (exactly) the same size with just those few bytes changed. YMMV, but I found xxd on the system I needed to do this on, but not hexedit.

lustriker 03-25-2007 07:08 PM

I made those changes on a Clarkconnect machine but when i run kudzu it still not recognize the dge 528 card.
Can you help me?

lustriker 03-26-2007 08:25 AM

Quote:

Originally Posted by lustriker
I made those changes on a Clarkconnect machine but when i run kudzu it still not recognize the dge 528 card.
Can you help me?

Adicional information that can help:
Kernel: 2.6.9-42.cc
Distribution: ClarkConnect 4.0 SP1
Hardware: D-Link DGE-528T

root@xxxx ]# lspci -n
00:00.0 Class 0600: 8086:2570 (rev 02)
00:02.0 Class 0300: 8086:2572 (rev 02)
00:1d.0 Class 0c03: 8086:24d2 (rev 02)
00:1d.1 Class 0c03: 8086:24d4 (rev 02)
00:1d.2 Class 0c03: 8086:24d7 (rev 02)
00:1d.3 Class 0c03: 8086:24de (rev 02)
00:1d.7 Class 0c03: 8086:24dd (rev 02)
00:1e.0 Class 0604: 8086:244e (rev c2)
00:1f.0 Class 0601: 8086:24d0 (rev 02)
00:1f.2 Class 0101: 8086:24d1 (rev 02)
00:1f.3 Class 0c05: 8086:24d3 (rev 02)
00:1f.5 Class 0401: 8086:24d5 (rev 02)
03:08.0 Class 0200: 8086:1050 (rev 02)
03:09.0 Class 0200: 1186:4300 (rev 10)
03:0a.0 Class 0200: 100b:0020

Thanks in advance

vimico 03-26-2007 09:51 AM

Quote:

Originally Posted by lustriker
Adicional information that can help:
Kernel: 2.6.9-42.cc
Distribution: ClarkConnect 4.0 SP1
Hardware: D-Link DGE-528T

root@xxxx ]# lspci -n
...
03:09.0 Class 0200: 1186:4300 (rev 10)
03:0a.0 Class 0200: 100b:0020

Sorry, I don't know that particular distro.

lspci looks good.

If you have patched the module accordingly, and the numbers you have overwritten were the once mentioned above, the driver seems to be the same as well.

I presume you have rebooted the machine?

Use lsmod to check if r8169 has been loaded automatically.

If not use modprobe r8169 to see if it gets loaded without error.

If no errors occurs you might force the computer to load the module during boot time by placing r8169 in /etc/modules.

Reboot. If the ethernet card still does not work, check the boot log (either via the dmesg command or in /var/log/messages) for any further hints.

lustriker 03-26-2007 03:55 PM

lsmod

Module Size Used by
r8169 19913 0
usbserial 26025 0
lp 12333 0
sg 33633 0
sr_mod 17637 0
vmnet 37660 2
parport_pc 24833 0
parport 37513 2 lp,parport_pc
vmmon 106892 0
ipt_REDIRECT 2241 1
ipt_CONNMARK 2241 1
ipt_mark 1729 1
ipt_state 1985 6
sch_htb 21953 2
ipt_ipp2p 6593 0
ip_nat_proto_gre 3137 0
ip_nat_mms 5105 0
ip_conntrack_mms 71985 1 ip_nat_mms
ip_nat_irc 4721 0
ip_nat_ftp 5105 0
ipt_MASQUERADE 3649 1
ip_conntrack_pptp 6465 0
ip_conntrack_proto_gre 5061 1 ip_conntrack_pptp
ppp_mppe 14017 0
ip_conntrack_irc 72241 1 ip_nat_irc
ip_conntrack_ftp 73009 1 ip_nat_ftp
ipt_REJECT 6721 1
ipt_LOG 6593 0
iptable_nat 23933 7 ipt_REDIRECT,ip_nat_proto_gre,ip_nat_mms,ip_nat_irc,ip_nat_ftp,ipt_MASQUERADE
ip_conntrack 41077 11 ipt_state,ip_nat_mms,ip_conntrack_mms,ip_nat_irc,ip_nat_ftp,ipt_MASQUERADE,ip_conntrack_pptp,ip_conn track_proto_gre,ip_conntrack_irc,ip_conntrack_ftp,iptable_nat
iptable_mangle 2881 1
iptable_filter 3009 1
ip_tables 17601 11 ipt_REDIRECT,ipt_CONNMARK,ipt_mark,ipt_state,ipt_ipp2p,ipt_MASQUERADE,ipt_REJECT,ipt_LOG,iptable_nat ,iptable_mangle,iptable_filter
md5 4161 1
ipv6 235777 31
ppp_synctty 11201 0
ppp_async 12353 1
crc_ccitt 2241 1 ppp_async
ppp_generic 35541 7 ppp_mppe,ppp_synctty,ppp_async
slhc 7361 1 ppp_generic
usblp 13761 0
dm_mod 59989 0
button 6737 0
battery 9029 0
ac 4933 0
uhci_hcd 31321 0
ehci_hcd 31301 0
snd_intel8x0 34025 0
snd_ac97_codec 64145 1 snd_intel8x0
snd_pcm_oss 49401 0
snd_mixer_oss 18241 1 snd_pcm_oss
snd_pcm 97225 2 snd_intel8x0,snd_pcm_oss
snd_timer 30149 1 snd_pcm
snd_page_alloc 9929 2 snd_intel8x0,snd_pcm
snd_mpu401_uart 8897 1 snd_intel8x0
snd_rawmidi 26853 1 snd_mpu401_uart
snd_seq_device 8265 1 snd_rawmidi
snd 55973 9 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi, snd_seq_device
soundcore 10017 1 snd
e100 33861 0
mii 5313 1 e100
natsemi 30625 0
ext3 117705 5
jbd 71769 1 ext3
ata_piix 11717 6
libata 66717 1 ata_piix
sd_mod 17345 8
scsi_mod 123213 4 sg,sr_mod,libata,sd_mod

dmesg

Linux version 2.6.9-42.cc (devel@beaker.lan) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-3)) #1 Wed Sep 13 19:47:22 EDT 2006
BIOS-provided physical RAM map:
BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
BIOS-e820: 0000000000100000 - 000000003fb70000 (usable)
BIOS-e820: 000000003fb70000 - 000000003fb7a000 (ACPI data)
BIOS-e820: 000000003fb7a000 - 000000003fb80000 (ACPI NVS)
BIOS-e820: 000000003fb80000 - 0000000040000000 (reserved)
BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
123MB HIGHMEM available.
896MB LOWMEM available.
found SMP MP-table at 000f63f0
Using x86 segment limits to approximate NX protection
zapping low mappings.
On node 0 totalpages: 260976
DMA zone: 4096 pages, LIFO batch:1
Normal zone: 225280 pages, LIFO batch:16
HighMem zone: 31600 pages, LIFO batch:7
DMI present.
ACPI: RSDP (v000 PTLTD ) @ 0x000f64a0
ACPI: RSDT (v001 PTLTD RSDT 0x060400d0 LTP 0x00000000) @ 0x3fb75106
ACPI: FADT (v001 IBM THINKCEN 0x060400d0 PTL 0x00000001) @ 0x3fb79ed8
ACPI: TCPA (v001 IBM THINKCEN 0x060400d0 PTL 0x00000001) @ 0x3fb79f4c
ACPI: MADT (v001 PTLTD APIC 0x060400d0 LTP 0x00000000) @ 0x3fb79f7e
ACPI: BOOT (v001 PTLTD $SBFTBL$ 0x060400d0 LTP 0x00000001) @ 0x3fb79fd8
ACPI: DSDT (v001 IBM THINKCEN 0x060400d0 MSFT 0x0100000e) @ 0x00000000
ACPI: PM-Timer IO Port: 0x1008
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 15:2 APIC version 20
ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Enabling APIC mode: Flat. Using 0 I/O APICs
ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
Allocating PCI resources starting at 50000000 (gap: 40000000:bec00000)
Built 1 zonelists
Kernel command line: ro root=LABEL=/
mapped APIC to ffffd000 (fee00000)
Initializing CPU#0
CPU 0 irqstacks, hard=c040c000 soft=c040b000
PID hash table entries: 4096 (order: 12, 65536 bytes)
Detected 2793.878 MHz processor.
Using pmtmr for high-res timesource
Console: colour VGA+ 80x25
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Memory: 1030320k/1043904k available (2180k kernel code, 12844k reserved, 730k data, 168k init, 126400k highmem)
Calibrating delay using timer specific routine.. 5589.47 BogoMIPS (lpj=2794737)
Security Scaffold v1.0.0 initialized
SELinux: Initializing.
SELinux: Starting in permissive mode
There is already a security framework initialized, register_security failed.
selinux_register_security: Registering secondary module capability
Capability LSM initialized as secondary
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: bfebfbff 00000000 00000000 00000000
CPU: After vendor identify, caps: bfebfbff 00000000 00000000 00000000
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
CPU: After all inits, caps: bfebf3ff 00000000 00000000 00000080
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU0: Intel P4/Xeon Extended MCE MSRs (12) available
CPU0: Thermal monitoring enabled
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz stepping 09
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
ENABLING IO-APIC IRQs
..TIMER: vector=0x31 pin1=2 pin2=-1
checking if image is initramfs... it is
Freeing initrd memory: 220k freed
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfd98d, last bus=3
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
ACPI: Subsystem revision 20040816
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB1._PRW] (Node f7f99400), AE_AML_NO_RETURN_VALUE
ACPI-0158: *** Error: Method execution failed [\_SB_.PCI0.USB1._PRW] (Node f7f99400), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB2._PRW] (Node f7f992e0), AE_AML_NO_RETURN_VALUE
ACPI-0158: *** Error: Method execution failed [\_SB_.PCI0.USB2._PRW] (Node f7f992e0), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB3._PRW] (Node f7f991c0), AE_AML_NO_RETURN_VALUE
ACPI-0158: *** Error: Method execution failed [\_SB_.PCI0.USB3._PRW] (Node f7f991c0), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB4._PRW] (Node f7f99f80), AE_AML_NO_RETURN_VALUE
ACPI-0158: *** Error: Method execution failed [\_SB_.PCI0.USB4._PRW] (Node f7f99f80), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USBE._PRW] (Node f7f99ee0), AE_AML_NO_RETURN_VALUE
ACPI-0158: *** Error: Method execution failed [\_SB_.PCI0.USBE._PRW] (Node f7f99ee0), AE_AML_NO_RETURN_VALUE
ACPI: Interpreter enabled
ACPI: Using IOAPIC for interrupt routing
ACPI: PCI Root Bridge [PCI0] (00:00)
PCI: Probing PCI hardware (bus 00)
PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.2
PCI: Transparent bridge - 0000:00:1e.0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB1._PRW] (Node f7f99400), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB2._PRW] (Node f7f992e0), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB3._PRW] (Node f7f991c0), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USB4._PRW] (Node f7f99f80), AE_AML_NO_RETURN_VALUE
ACPI-1134: *** Error: Method execution failed [\_SB_.PCI0.USBE._PRW] (Node f7f99ee0), AE_AML_NO_RETURN_VALUE
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SLOT._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 11 12 14 *15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12 14 *15)
ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 *7 9 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 7 9 10 11 12 14 15)
Linux Plug and Play Support v0.97 (c) Adam Belay
usbcore: registered new driver usbfs
usbcore: registered new driver hub
PCI: Using ACPI for IRQ routing
ACPI: PCI interrupt 0000:00:02.0[A] -> GSI 16 (level, low) -> IRQ 169
ACPI: PCI interrupt 0000:00:1d.0[A] -> GSI 16 (level, low) -> IRQ 169
ACPI: PCI interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 177
ACPI: PCI interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 185
ACPI: PCI interrupt 0000:00:1d.3[A] -> GSI 16 (level, low) -> IRQ 169
ACPI: PCI interrupt 0000:00:1d.7[D] -> GSI 23 (level, low) -> IRQ 193
ACPI: PCI interrupt 0000:00:1f.2[A] -> GSI 18 (level, low) -> IRQ 185
ACPI: PCI interrupt 0000:00:1f.3[B] -> GSI 17 (level, low) -> IRQ 201
ACPI: PCI interrupt 0000:00:1f.5[B] -> GSI 17 (level, low) -> IRQ 201
ACPI: PCI interrupt 0000:03:08.0[A] -> GSI 20 (level, low) -> IRQ 209
ACPI: PCI interrupt 0000:03:09.0[A] -> GSI 21 (level, low) -> IRQ 217
ACPI: PCI interrupt 0000:03:0a.0[A] -> GSI 22 (level, low) -> IRQ 225
Simple Boot Flag at 0x35 set to 0x1
IBM machine detected. Enabling interrupts during APM calls.
apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
apm: overridden by ACPI.
audit: initializing netlink socket (disabled)
audit(1174611077.122:1): initialized
highmem bounce pool size: 64 pages
Total HugeTLB memory allocated, 0
VFS: Disk quotas dquot_6.5.1
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
SELinux: Registering netfilter hooks
Initializing Cryptographic API
ksign: Installing public key data
Loading keyring
- Added public key 75811F2093D987B5
- User ID: Point Clark Networks (Kernel Module GPG key)
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
ACPI: Processor [CPU0] (supports C1, 8 throttling states)
ACPI: Thermal Zone [THM0] (57 C)
Real Time Clock Driver v1.12
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected an Intel 865 Chipset.
agpgart: Maximum main memory to use for agp memory: 937M
agpgart: Detected 3964K stolen memory.
agpgart: AGP aperture is 128M @ 0xf0000000
serio: i8042 AUX port at 0x60,0x64 irq 12
serio: i8042 KBD port at 0x60,0x64 irq 1
Serial: 8250/16550 driver $Revision: 1.90 $ 8 ports, IRQ sharing enabled
ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
mice: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard on isa0060/serio0
input: ImPS/2 Generic Wheel Mouse on isa0060/serio1
Using cfq io scheduler
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 16384K size 1024 blocksize
divert: not allocating divert_blk for non-ethernet device lo
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
ide0: I/O resource 0x1F0-0x1F7 not free.
ide0: ports already in use, skipping probe
Probing IDE interface ide1...
Probing IDE interface ide2...
Probing IDE interface ide3...
Probing IDE interface ide4...
Probing IDE interface ide5...
ide-floppy driver 0.99.newide
usbcore: registered new driver hiddev
usbcore: registered new driver usbhid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
md: md driver 0.90.0 MAX_MD_DEVS=256, MD_SB_DISKS=27
NET: Registered protocol family 2
IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
TCP bind hash table entries: 131072 (order: 9, 3670016 bytes)
TCP: Hash tables configured (established 131072 bind 131072)
Initializing IPsec netlink socket
NET: Registered protocol family 1
NET: Registered protocol family 17
ACPI: (supports S0 S1 S3 S4 S5)
ACPI wakeup devices:
SLOT KBC COMA COMB
Freeing unused kernel memory: 168k freed
SCSI subsystem initialized
libata version 1.20 loaded.
ata_piix 0000:00:1f.2: version 1.05
ata_piix 0000:00:1f.2: MAP [ P0 P1 IDE IDE ]
ACPI: PCI interrupt 0000:00:1f.2[A] -> GSI 18 (level, low) -> IRQ 185
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata1: SATA max UDMA/133 cmd 0x1F0 ctl 0x3F6 bmdma 0x1810 irq 14
ata1: dev 0 cfg 49:2f00 82:346b 83:7d01 84:4023 85:3469 86:3c01 87:4023 88:207f
ata1: dev 0 ATA-7, max UDMA/133, 625142448 sectors: LBA48
ata1: dev 1 cfg 49:2f00 82:346b 83:7d01 84:4023 85:3469 86:3c01 87:4023 88:207f
ata1: dev 1 ATA-7, max UDMA/133, 625142448 sectors: LBA48
ata1: dev 0 configured for UDMA/133
ata1: dev 1 configured for UDMA/133
scsi0 : ata_piix
Vendor: ATA Model: ST3320620AS Rev: 3.AA
Type: Direct-Access ANSI SCSI revision: 05
SCSI device sda: 625142448 512-byte hdwr sectors (320073 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 625142448 512-byte hdwr sectors (320073 MB)
SCSI device sda: drive cache: write back
sda: sda1 sda2 sda3 sda4
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Vendor: ATA Model: ST3320620AS Rev: 3.AA
Type: Direct-Access ANSI SCSI revision: 05
SCSI device sdb: 625142448 512-byte hdwr sectors (320073 MB)
SCSI device sdb: drive cache: write back
SCSI device sdb: 625142448 512-byte hdwr sectors (320073 MB)
SCSI device sdb: drive cache: write back
sdb: sdb1 sdb2
Attached scsi disk sdb at scsi0, channel 0, id 1, lun 0
ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1818 irq 15
scsi1 : ata_piix
kjournald starting. Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
SELinux: Disabled at runtime.
SELinux: Unregistering netfilter hooks
natsemi dp8381x driver, version 1.07+LK1.0.17, Sep 27, 2002
originally by Donald Becker <becker@scyld.com>
http://www.scyld.com/network/natsemi.html
2.4.x kernel port by Jeff Garzik, Tjeerd Mulder
ACPI: PCI interrupt 0000:03:0a.0[A] -> GSI 22 (level, low) -> IRQ 225
divert: allocating divert_blk for eth0
natsemi eth0: NatSemi DP8381[56] at 0xe8101000 (0000:03:0a.0), 00:c0:26:f0:06:01, IRQ 225, port TP.
e100: Intel(R) PRO/100 Network Driver, 3.5.10-k2-NAPI
e100: Copyright(c) 1999-2005 Intel Corporation
ACPI: PCI interrupt 0000:03:08.0[A] -> GSI 20 (level, low) -> IRQ 209
divert: allocating divert_blk for eth1
e100: eth1: e100_probe: addr 0xe8100000, irq 209, MAC addr 00:0D:60:E6:C1:4E
ACPI: PCI interrupt 0000:00:1f.5[B] -> GSI 17 (level, low) -> IRQ 201
PCI: Setting latency timer of device 0000:00:1f.5 to 64
intel8x0_measure_ac97_clock: measured 50043 usecs
intel8x0: clocking to 48000
hw_random: RNG not detected
ACPI: PCI interrupt 0000:00:1d.7[D] -> GSI 23 (level, low) -> IRQ 193
ehci_hcd 0000:00:1d.7: EHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.7 to 64
ehci_hcd 0000:00:1d.7: irq 193, pci mem f8838000
ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
PCI: cache line size of 128 is not supported by device 0000:00:1d.7
ehci_hcd 0000:00:1d.7: USB 2.0 enabled, EHCI 1.00, driver 2004-May-10
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 8 ports detected
USB Universal Host Controller Interface driver v2.2
ACPI: PCI interrupt 0000:00:1d.0[A] -> GSI 16 (level, low) -> IRQ 169
uhci_hcd 0000:00:1d.0: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.0 to 64
uhci_hcd 0000:00:1d.0: irq 169, io base 00001820
uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 177
uhci_hcd 0000:00:1d.1: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.1 to 64
uhci_hcd 0000:00:1d.1: irq 177, io base 00001840
uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 185
uhci_hcd 0000:00:1d.2: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.2 to 64
uhci_hcd 0000:00:1d.2: irq 185, io base 00001860
uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 2 ports detected
ACPI: PCI interrupt 0000:00:1d.3[A] -> GSI 16 (level, low) -> IRQ 169
uhci_hcd 0000:00:1d.3: UHCI Host Controller
PCI: Setting latency timer of device 0000:00:1d.3 to 64
uhci_hcd 0000:00:1d.3: irq 169, io base 00001880
uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 2 ports detected
md: Autodetecting RAID arrays.
md: autorun ...
md: ... autorun DONE.
usb 4-2: new full speed USB device using address 2
ACPI: Power Button (FF) [PWRF]
EXT3 FS on sda2, internal journal
device-mapper: 4.5.0-ioctl (2005-10-04) initialised: dm-devel@redhat.com
kjournald starting. Commit interval 5 seconds
EXT3 FS on sda1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting. Commit interval 5 seconds
EXT3 FS on sdb1, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting. Commit interval 5 seconds
EXT3 FS on sda4, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
kjournald starting. Commit interval 5 seconds
EXT3 FS on sdb2, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
Adding 2096472k swap on /dev/sda3. Priority:-1 extents:1
usb 4-2: control timeout on ep0in
drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x03F0 pid 0x6004
usbcore: registered new driver usblp
drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver
ip_tables: (C) 2000-2002 Netfilter core team
ip_tables: (C) 2000-2002 Netfilter core team
e100: eth1: e100_watchdog: link up, 100Mbps, full-duplex
eth0: DSPCFG accepted after 0 usec.
eth0: link up.
eth0: Setting full-duplex based on negotiated link capability.
CSLIP: code copyright 1989 Regents of the University of California
PPP generic driver version 2.4.2
NET: Registered protocol family 10
Disabled Privacy Extensions on device c038f980(lo)
IPv6 over IPv4 tunneling driver
divert: not allocating divert_blk for non-ethernet device sit0
divert: not allocating divert_blk for non-ethernet device ppp0
ip_tables: (C) 2000-2002 Netfilter core team
ip_conntrack version 2.1 (8155 buckets, 65240 max) - 372 bytes per conntrack
PPP MPPE Compression module registered
ip_conntrack_pptp version 2.1 loaded
IPP2P v0.8.0 loading
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
vmmon: module license 'unspecified' taints kernel.
/dev/vmmon[1887]: Module vmmon: registered with major=10 minor=165
/dev/vmmon[1887]: Module vmmon: initialized
/dev/vmnet: open called by PID 1919 (vmnet-bridge)
/dev/vmnet: hub 0 does not exist, allocating memory.
/dev/vmnet: port on hub 0 successfully opened
bridge-eth0: enabling the bridge
bridge-eth0: up
bridge-eth0: already up
bridge-eth0: attached
application vmware-serverd uses obsolete OSS audio interface
Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0, type 0
Attached scsi generic sg1 at scsi0, channel 0, id 1, lun 0, type 0
eth1: no IPv6 routers present
eth0: no IPv6 routers present
lp: driver loaded but no devices found
drivers/usb/serial/usb-serial.c: USB Serial support registered for Generic
usbcore: registered new driver usbserial_generic
usbcore: registered new driver usbserial
drivers/usb/serial/usb-serial.c: USB Serial Driver core v2.0
eth0: Promiscuous mode enabled.
device eth0 entered promiscuous mode
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
r8169: Unknown parameter `eth1'
divert: no divert_blk to free, ppp0 not ethernet
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
divert: no divert_blk to free, ppp0 not ethernet
eth0: Promiscuous mode enabled.
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
divert: no divert_blk to free, ppp0 not ethernet
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
e100: eth1: e100_watchdog: link down
e100: eth1: e100_watchdog: link up, 100Mbps, full-duplex
device eth0 left promiscuous mode
eth0: Promiscuous mode enabled.
device eth0 entered promiscuous mode
divert: no divert_blk to free, ppp0 not ethernet
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
eth0: Promiscuous mode enabled.
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
e100: eth1: e100_watchdog: link down
e100: eth1: e100_watchdog: link up, 100Mbps, full-duplex
divert: no divert_blk to free, ppp0 not ethernet
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
divert: no divert_blk to free, ppp0 not ethernet
eth0: Promiscuous mode enabled.
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
divert: no divert_blk to free, ppp0 not ethernet
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
divert: no divert_blk to free, ppp0 not ethernet
eth0: Promiscuous mode enabled.
divert: not allocating divert_blk for non-ethernet device ppp0
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded
ip_nat_pptp version 2.0 loaded
ip_nat_pptp version 2.0 unloaded


All times are GMT -5. The time now is 01:32 PM.