2009-05-24 19:28:53

by Barkle

[permalink] [raw]
Subject: RTL 8185

Hi,

I have a pci-card with a RTL8185 chip.
[01:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8185
IEEE 802.11a/b/g Wireless LAN Controller (rev 20)]

Base on a Debian Lenny with
kernel 2.6.30-rc5
wpasupplicant v0.6.9
wireless_tools 30

I can change some parameter on the card with iwconfig, for example the
channel, but every time I try to get the card to work, the kernel freeze.

Now I´m not sure, if this mailinglist is the right one, because it may
be a problem of the hardware, the kernel or some userland tools.

If you need any additional information, please ask me an I try to answer
asap.


Thanks.



2009-05-25 20:34:55

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=2
network={
ssid="Test_Dummy"
mode=1
key_mgmt=NONE
}


Attachments:
dmesg_2009-05-25.txt (4.92 kB)
wpa_supplicant.conf_2009-05-25 (135.00 B)
Download all attachments

2009-05-26 23:51:41

by Hin-Tak Leung

[permalink] [raw]
Subject: Re: RTL 8185

On Wed, May 27, 2009 at 12:01 AM, Barkle <[email protected]> wrote:
> Barkle schrieb:
>>
>> Hin-Tak Leung schrieb:
>>>
>>> I am asking to a 2nd time - try compat-wireless.
>>
>> When I compile compat-wireless, I get an error
>>
> After commenting out in the file "config.mk" the line
> #CONFIG_MAC80211_LEDS=y

Hmm, your kernel config did not seem to have LEDS_TRIGGER defined.
That's a problem with non-distro custom-rolled kernel... For that
matter, which bits of the kernel did you build as modules and which
compiled in? I guess I need the output of these two commands:

lsmod
find /lib/modules/`uname -r`/updates

> the code compiles without an error.
> Then "make install", reboot and "wpa_supplicant -Dwext -iwlan0
> -c/etc/wpa_supplicant/wpa_supplicant.conf -W -dd" => kernel freeze.

Hmm, can you *not* run wpa_supplicant? This is about the 3rd time I
asked - if you are not using encryption, you don't need
wpa_supplicant. You should be doing just 'ifconfig wlan0 up', and
'ifconfig wlan0' and 'iwconfig wlan0' and see what they say. And do
*not* do it in X - if there is any last minute crash message, it would
be in the text console and you should be better doing these in
run-level 3.

> What else can I do?
> Where can I see which version of the driver are used?

There isn't really a 'version' for the driver - it entered the kernel
about a year and half ago, and only a few people had worked on it
since, and not in any major way.

2009-05-27 22:04:04

by Larry Finger

[permalink] [raw]
Subject: Re: RTL 8185

Barkle wrote:
>
> feta:~# iwconfig --version
> iwconfig Wireless-Tools version 30
> Compatible with Wireless Extension v11 to v22.
>
> Kernel Currently compiled with Wireless Extension v22.
>
> wlan0 Recommend Wireless Extension v21 or later,
> Currently compiled with Wireless Extension v22.
>
> feta:~# ifconfig --version
> net-tools 1.60
> ifconfig 1.42 (2001-04-13)

Good - you have recent versions.

Larry

2009-05-27 20:17:13

by Larry Finger

[permalink] [raw]
Subject: Re: RTL 8185

Barkle wrote:
> Hin-Tak Leung schrieb:
>> On Wed, May 27, 2009 at 7:09 AM, Barkle <[email protected]> wrote:
>>
>>
>>> After "ifconfig wlan0 up" the system freeze
>>> It's just every time the interface has to work, it's gonna freeze. It
>>> doesn't matter if I use wpa_supplicant or ifupdown (which invokes at
>>> last
>>> wpa_supplicant, so far as I know, on the debian system)
>>>
>>
>> Hmm, try to disable any devices on the pci bus which you don't use
>> with setpci <id> command=0 before anything els
>
> Have a look at lspci
>
> *********************
> feta:~# lspci
> 00:00.0 Host bridge: Intel Corporation 82815 815 Chipset Host Bridge and
> Memory Controller Hub (rev 02)
> 00:02.0 VGA compatible controller: Intel Corporation 82815 Chipset
> Graphics Controller (CGC) (rev 02)
> 00:1e.0 PCI bridge: Intel Corporation 82801AA PCI Bridge (rev 02)
> 00:1f.0 ISA bridge: Intel Corporation 82801AA ISA Bridge (LPC) (rev 02)
> 00:1f.1 IDE interface: Intel Corporation 82801AA IDE Controller (rev 02)
> 00:1f.2 USB Controller: Intel Corporation 82801AA USB Controller (rev 02)
> 00:1f.3 SMBus: Intel Corporation 82801AA SMBus Controller (rev 02)
> 01:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8185
> IEEE 802.11a/b/g Wireless LAN Controller (rev 20)
> 01:09.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado]
> (rev 74)
> *********************
>
> Wich device do you mean?
>
> I disabled
> feta:~# setpci -d 8086:2413 command=0 [the SMBus]
> feta:~# setpci -d 8086:2412 command=0 [the USB]
> feta:~# setpci -d 8086:2410 command=0 [the ISA bridge]
> feta:~# setpci -d 8086:1132 command=0 [the VGA]
> feta:~# ifconfig wlan0 up
>
> => freeze

Please post the output of the following commands:

iwconfig --version
ifconfig --version


2009-05-26 23:01:28

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

Barkle schrieb:
> Hin-Tak Leung schrieb:
>> I am asking to a 2nd time - try compat-wireless.
>
> When I compile compat-wireless, I get an error
>
After commenting out in the file "config.mk" the line
#CONFIG_MAC80211_LEDS=y
the code compiles without an error.
Then "make install", reboot and "wpa_supplicant -Dwext -iwlan0
-c/etc/wpa_supplicant/wpa_supplicant.conf -W -dd" => kernel freeze.

What else can I do?
Where can I see which version of the driver are used?


Thanks for helping so long.


2009-05-27 08:21:32

by Hin-Tak Leung

[permalink] [raw]
Subject: Re: RTL 8185

On Wed, May 27, 2009 at 7:09 AM, Barkle <[email protected]> wrote:

> After "ifconfig wlan0 up" the system freeze
> It's just every time the interface has to work, it's gonna freeze. It
> doesn't matter if I use wpa_supplicant or ifupdown (which invokes at last
> wpa_supplicant, so far as I know, on the debian system)

Hmm, try to disable any devices on the pci bus which you don't use
with setpci <id> command=0 before anything else.

2009-05-27 06:09:15

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

Hin-Tak Leung schrieb:
> On Wed, May 27, 2009 at 12:01 AM, Barkle <[email protected]> wrote:
>
>> Barkle schrieb:
>>
>>> Hin-Tak Leung schrieb:
>>>
>>>> I am asking to a 2nd time - try compat-wireless.
>>>>
>>> When I compile compat-wireless, I get an error
>>>
>>>
>> After commenting out in the file "config.mk" the line
>> #CONFIG_MAC80211_LEDS=y
>>
>
> Hmm, your kernel config did not seem to have LEDS_TRIGGER defined.
> That's a problem with non-distro custom-rolled kernel... For that
> matter, which bits of the kernel did you build as modules and which
> compiled in? I guess I need the output of these two commands:
>
> lsmod
> find /lib/modules/`uname -r`/updates
>
Do you need the kernel config?

feta:~# lsmod
Module Size Used by
af_packet 17180 2
loop 14120 0
ecb 2428 2
rtl8180 28668 0
mac80211 173848 1 rtl8180
eeprom_93cx6 1660 1 rtl8180
psmouse 41292 0
cfg80211 80660 2 rtl8180,mac80211
3c59x 39972 0
mii 4508 1 3c59x
ide_cd_mod 27808 0
cdrom 33984 1 ide_cd_mod
unix 24748 19
feta:~# find /lib/modules/`uname -r`/updates
/lib/modules/2.6.30-rc6-1/updates
/lib/modules/2.6.30-rc6-1/updates/drivers
/lib/modules/2.6.30-rc6-1/updates/drivers/misc
/lib/modules/2.6.30-rc6-1/updates/drivers/misc/eeprom
/lib/modules/2.6.30-rc6-1/updates/drivers/misc/eeprom/eeprom_93cx6.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net
/lib/modules/2.6.30-rc6-1/updates/drivers/net/b44.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/adm8211.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath/ath.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath/ath5k
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath/ath5k/ath5k.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath/ath9k
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ath/ath9k/ath9k.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/b43
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/b43/b43.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/b43legacy
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/b43legacy/b43legacy.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ipw2x00
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ipw2x00/ipw2100.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ipw2x00/ipw2200.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/ipw2x00/libipw.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/iwlwifi
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/iwlwifi/iwl3945.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/iwlwifi/iwlagn.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/iwlwifi/iwlcore.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/mac80211_hwsim.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/mwl8k.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/p54
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/p54/p54common.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/p54/p54pci.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00/rt2400pci.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00/rt2500pci.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00/rt2x00lib.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00/rt2x00pci.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rt2x00/rt61pci.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rtl818x
/lib/modules/2.6.30-rc6-1/updates/drivers/net/wireless/rtl818x/rtl8180.ko
/lib/modules/2.6.30-rc6-1/updates/drivers/ssb
/lib/modules/2.6.30-rc6-1/updates/drivers/ssb/ssb.ko
/lib/modules/2.6.30-rc6-1/updates/net
/lib/modules/2.6.30-rc6-1/updates/net/mac80211
/lib/modules/2.6.30-rc6-1/updates/net/mac80211/mac80211.ko
/lib/modules/2.6.30-rc6-1/updates/net/wireless
/lib/modules/2.6.30-rc6-1/updates/net/wireless/cfg80211.ko
/lib/modules/2.6.30-rc6-1/updates/net/wireless/lib80211_crypt_ccmp.ko
/lib/modules/2.6.30-rc6-1/updates/net/wireless/lib80211_crypt_tkip.ko
/lib/modules/2.6.30-rc6-1/updates/net/wireless/lib80211_crypt_wep.ko


>> the code compiles without an error.
>> Then "make install", reboot and "wpa_supplicant -Dwext -iwlan0
>> -c/etc/wpa_supplicant/wpa_supplicant.conf -W -dd" => kernel freeze.
>>
>
> Hmm, can you *not* run wpa_supplicant? This is about the 3rd time I
> asked - if you are not using encryption, you don't need
> wpa_supplicant. You should be doing just 'ifconfig wlan0 up', and
> 'ifconfig wlan0' and 'iwconfig wlan0' and see what they say. And do
> *not* do it in X - if there is any last minute crash message, it would
> be in the text console and you should be better doing these in
> run-level 3.
>
**************************
from /etc/network/interfaces

iface wlan0 inet static
address 192.168.43.129
netmask 255.255.255.0

**************************

After "ifconfig wlan0 up" the system freeze
It's just every time the interface has to work, it's gonna freeze. It
doesn't matter if I use wpa_supplicant or ifupdown (which invokes at
last wpa_supplicant, so far as I know, on the debian system)

I can use " /etc/modprobe.d/rtl8185" to set the regulatory domain
"options cfg80211 ieee80211_regdom=EU"
I can use "iwconfig wlan0 channel 6", that works (and some ather stuff).



***********************
feta:~# iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point: Not-Associated
Tx-Power=27 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0

feta:~# iwconfig wlan0 channel 6
feta:~# iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:""
Mode:Managed Frequency:2.437 GHz Access Point: Not-Associated
Tx-Power=27 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:off
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0

***********************

feta:~# ifconfig wlan0
wlan0 Link encap:Ethernet Hardware Adresse 00:0e:2e:e9:b5:fd
BROADCAST MULTICAST MTU:1500 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenl?nge:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

***********************


2009-05-25 06:15:36

by Hin-Tak Leung

[permalink] [raw]
Subject: Re: RTL 8185

On Sun, May 24, 2009 at 8:28 PM, Barkle <[email protected]> wrote:
> Hi,
>
> I have a pci-card with a RTL8185 chip.
> [01:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8185 IEEE
> 802.11a/b/g Wireless LAN Controller (rev 20)]
>
> Base on a Debian Lenny with
> kernel 2.6.30-rc5
> wpasupplicant v0.6.9
> wireless_tools 30
>
> I can change some parameter on the card with iwconfig, for example the
> channel, but every time I try to get the card to work, the kernel freeze.
>
> Now I?m not sure, if this mailinglist is the right one, because it may be a
> problem of the hardware, the kernel or some userland tools.
>
> If you need any additional information, please ask me an I try to answer
> asap.

Yes, this is the right list - a few things:
1) dmesg should show a few line of info, including a line like this:

wlan0: hwaddr XX:XX:XX:XX;XX:XX <chip_name> + <rf_type>

we need at least that line, and anything else that's relevant in dmesg.

2) what do you mean by 'kernel freeze'? e.g. if you do it without X,
do you get a pile of
cryptic messages before lock up (if that's the case)? If there is, try
to take a picture of it with a digital camera;
if you computer is still operational, please cut-and-paste that to the reply.

Also, describe what exactly did you try to do, step by step.

3) have you tried compat-wireless? compat-wireless is ahead of
2.6.30-rcX and occasionally have fixes to bugs which creeps into the
rc's...

2009-05-27 19:35:29

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

Hin-Tak Leung schrieb:
> On Wed, May 27, 2009 at 7:09 AM, Barkle <[email protected]> wrote:
>
>
>> After "ifconfig wlan0 up" the system freeze
>> It's just every time the interface has to work, it's gonna freeze. It
>> doesn't matter if I use wpa_supplicant or ifupdown (which invokes at last
>> wpa_supplicant, so far as I know, on the debian system)
>>
>
> Hmm, try to disable any devices on the pci bus which you don't use
> with setpci <id> command=0 before anything els

Have a look at lspci

*********************
feta:~# lspci
00:00.0 Host bridge: Intel Corporation 82815 815 Chipset Host Bridge and
Memory Controller Hub (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82815 Chipset
Graphics Controller (CGC) (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801AA PCI Bridge (rev 02)
00:1f.0 ISA bridge: Intel Corporation 82801AA ISA Bridge (LPC) (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801AA IDE Controller (rev 02)
00:1f.2 USB Controller: Intel Corporation 82801AA USB Controller (rev 02)
00:1f.3 SMBus: Intel Corporation 82801AA SMBus Controller (rev 02)
01:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8185
IEEE 802.11a/b/g Wireless LAN Controller (rev 20)
01:09.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado]
(rev 74)
*********************

Wich device do you mean?

I disabled
feta:~# setpci -d 8086:2413 command=0 [the SMBus]
feta:~# setpci -d 8086:2412 command=0 [the USB]
feta:~# setpci -d 8086:2410 command=0 [the ISA bridge]
feta:~# setpci -d 8086:1132 command=0 [the VGA]
feta:~# ifconfig wlan0 up

=> freeze



2009-05-25 21:14:15

by Hin-Tak Leung

[permalink] [raw]
Subject: Re: RTL 8185

On Mon, May 25, 2009 at 9:34 PM, Barkle <[email protected]> wrote:

> Have a look in the appended file "dmesg_2009-05-25.txt" and it's not wlan0,
> it's phy0.
> I hope, I haven't cut off too much .

You have removed almost everything that might be useful... e.g. it is
not possible to tell even if you have a 32-bit CPU or a 64-bit CPU for
sure (although it *looks* like a 64-bit system), dual core/SMP or
single CPU, and what else is on your PCI bus. Is that really
necessary??? Very few people are telepathic, you know... at least I
don't know of any.

> There is no more reaktion, no change by pressing num-lock, caps-lock or
> scroll-lock. No answer on a ping. What I didn't tested is the "magic SysRq".

And any last minute syslog, etc in your log files after you power-cycle?


> wpa_supplicant -Dwext -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf -W
> -dd

If you are not using any encryption (WEP/WPA, etc), there is no need
to run wpa_supplicant. Also, what's in /var/log/wpa_supplicant.log ?
In fact you should shutdown network manager and wpa_suplicant and
probably dbus as well.


> No entry in the syslog

Again you have edited away your CPU type, and, since you are trying to
see what's wrong with your wireless device, you really should disable
dhcp against your wired networking interface.

> OK, no I didn't tried the compat-wireless so far..
> It will take a while, when I got an result of the change.

Please gIve compat-wireless a go.

You have edited away any useful info in your dmesg and syslog, so
there is nothing to tell. Why did you do that?

2009-05-27 21:04:34

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

Larry Finger schrieb:
> Barkle wrote:
>
>> Hin-Tak Leung schrieb:
>>
>>> On Wed, May 27, 2009 at 7:09 AM, Barkle <[email protected]> wrote:
>>>
>>>
>>>
>>>> After "ifconfig wlan0 up" the system freeze
>>>> It's just every time the interface has to work, it's gonna freeze. It
>>>> doesn't matter if I use wpa_supplicant or ifupdown (which invokes at
>>>> last
>>>> wpa_supplicant, so far as I know, on the debian system)
>>>>
>>>>
>>> Hmm, try to disable any devices on the pci bus which you don't use
>>> with setpci <id> command=0 before anything els
>>>
>> Have a look at lspci
>>
>> *********************
>> feta:~# lspci
>> 00:00.0 Host bridge: Intel Corporation 82815 815 Chipset Host Bridge and
>> Memory Controller Hub (rev 02)
>> 00:02.0 VGA compatible controller: Intel Corporation 82815 Chipset
>> Graphics Controller (CGC) (rev 02)
>> 00:1e.0 PCI bridge: Intel Corporation 82801AA PCI Bridge (rev 02)
>> 00:1f.0 ISA bridge: Intel Corporation 82801AA ISA Bridge (LPC) (rev 02)
>> 00:1f.1 IDE interface: Intel Corporation 82801AA IDE Controller (rev 02)
>> 00:1f.2 USB Controller: Intel Corporation 82801AA USB Controller (rev 02)
>> 00:1f.3 SMBus: Intel Corporation 82801AA SMBus Controller (rev 02)
>> 01:07.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8185
>> IEEE 802.11a/b/g Wireless LAN Controller (rev 20)
>> 01:09.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado]
>> (rev 74)
>> *********************
>>
>> Wich device do you mean?
>>
>> I disabled
>> feta:~# setpci -d 8086:2413 command=0 [the SMBus]
>> feta:~# setpci -d 8086:2412 command=0 [the USB]
>> feta:~# setpci -d 8086:2410 command=0 [the ISA bridge]
>> feta:~# setpci -d 8086:1132 command=0 [the VGA]
>> feta:~# ifconfig wlan0 up
>>
>> => freeze
>>
>
> Please post the output of the following commands:
>
> iwconfig --version
> ifconfig --version
>

feta:~# iwconfig --version
iwconfig Wireless-Tools version 30
Compatible with Wireless Extension v11 to v22.

Kernel Currently compiled with Wireless Extension v22.

wlan0 Recommend Wireless Extension v21 or later,
Currently compiled with Wireless Extension v22.

feta:~# ifconfig --version
net-tools 1.60
ifconfig 1.42 (2001-04-13)


2009-05-26 16:23:08

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

Hin-Tak Leung schrieb:
> I am asking to a 2nd time - try compat-wireless.

When I compile compat-wireless, I get an error

*************************
feta:/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6# uname -r
2.6.30-rc6-1
feta:/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6# make
make -C /lib/modules/2.6.30-rc6-1/build
M=/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6 modules
make[1]: Entering directory `/usr/src/linux-2.6.30-rc6'
CC [M]
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.o
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:
In function 'ieee80211_led_init':
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:58:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:62:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:63:
error: implicit declaration of function 'led_trigger_register'
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:69:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:73:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:80:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:84:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:91:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:95:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:
In function 'ieee80211_led_exit':
/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.c:106:
error: implicit declaration of function 'led_trigger_unregister'
make[3]: ***
[/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211/led.o]
Fehler 1
make[2]: ***
[/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6/net/mac80211]
Fehler 2
make[1]: ***
[_module_/usr/src/tools/compat-wireless/compat-wireless-2.6.30-rc6] Fehler 2
make[1]: Leaving directory `/usr/src/linux-2.6.30-rc6'
make: *** [modules] Fehler 2
*************************

Also with the bleeding edge I get the same error

*************************
feta:/usr/src/tools/compat-wireless/compat-wireless-2009-05-26# uname -r
2.6.30-rc6-1
feta:/usr/src/tools/compat-wireless/compat-wireless-2009-05-26# make
make -C /lib/modules/2.6.30-rc6-1/build
M=/usr/src/tools/compat-wireless/compat-wireless-2009-05-26 modules
make[1]: Entering directory `/usr/src/linux-2.6.30-rc6'
CC [M]
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.o
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:
In function 'ieee80211_led_init':
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:58:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:62:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:63:
error: implicit declaration of function 'led_trigger_register'
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:69:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:73:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:80:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:84:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:91:
error: invalid application of 'sizeof' to incomplete type 'struct
led_trigger'
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:95:
error: dereferencing pointer to incomplete type
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:
In function 'ieee80211_led_exit':
/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.c:106:
error: implicit declaration of function 'led_trigger_unregister'
make[3]: ***
[/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211/led.o]
Fehler 1
make[2]: ***
[/usr/src/tools/compat-wireless/compat-wireless-2009-05-26/net/mac80211]
Fehler 2
make[1]: ***
[_module_/usr/src/tools/compat-wireless/compat-wireless-2009-05-26] Fehler 2
make[1]: Leaving directory `/usr/src/linux-2.6.30-rc6'
make: *** [modules] Fehler 2
*************************


> Since you have a 32-bit intel CPU, if you don't mind downgrade the
> kernel back to about 2.6.26 or 2.6.24,

This would be one of my last favorites.


> you might consider switching to the realtek vendor driver. It is a bit ugly but it works well enough
> with older kernels on 32-bit intel platforms. The code is on realtek's
> web site.
> http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=1&PFid=1&Level=6&Conn=5&DownTypeID=3&GetDown=false&Downloads=true
>
Hmm, later ... may be.

> You also have the choice of using ndiswrapper, on 32-bit intel platforms.
>

No this is no optinion, because the windows-driver is not as stable as I
want.




2009-05-26 05:58:08

by Hin-Tak Leung

[permalink] [raw]
Subject: Re: RTL 8185

On Mon, May 25, 2009 at 11:53 PM, Barkle <[email protected]> wrote:

> I need encryption, but it doesn't matter if I use the right values. The
> result is the same.

Look, your wpa_supplicant config says you are not using encryption, so
there is no need to use it at all (or did you edit that out as
well)??? If you keep editing out info nobody can help you...

>> Please gIve compat-wireless a go.
>>
>
> Please be a little pacient with me. I work on it.
> Do you need any further information?

I am asking to a 2nd time - try compat-wireless. Despite what you
might believe, the latest rc kernel does not give you the latest
wireless driver code; the latest compat-wireless does. It takes only a
few minutes to install (it just replaces the 50 wireless related
kernel modules.

Since you have a 32-bit intel CPU, if you don't mind downgrade the
kernel back to about 2.6.26 or 2.6.24, you might consider switching to
the realtek vendor driver. It is a bit ugly but it works well enough
with older kernels on 32-bit intel platforms. The code is on realtek's
web site.
http://www.realtek.com.tw/downloads/downloadsView.aspx?Langid=1&PNid=1&PFid=1&Level=6&Conn=5&DownTypeID=3&GetDown=false&Downloads=true

You also have the choice of using ndiswrapper, on 32-bit intel platforms.

2009-05-25 22:54:05

by Barkle

[permalink] [raw]
Subject: Re: RTL 8185

May 26 00:27:55 feta shutdown[1559]: shutting down for system reboot
May 26 00:27:55 feta init: Switching to runlevel: 6
May 26 00:27:58 feta rpc.statd[916]: Caught signal 15, un-registering and exiting.
May 26 00:28:35 feta kernel: imklog 3.18.6, log source = /proc/kmsg started.
May 26 00:28:35 feta kernel: Linux version 2.6.30-rc5-1 (root@feta) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 PREEMPT Mon May 11 00:13:36 CEST 2009
May 26 00:28:35 feta kernel: KERNEL supported cpus:
May 26 00:28:35 feta kernel: Intel GenuineIntel
May 26 00:28:35 feta kernel: AMD AuthenticAMD
May 26 00:28:35 feta kernel: NSC Geode by NSC
May 26 00:28:35 feta kernel: Cyrix CyrixInstead
May 26 00:28:35 feta kernel: Centaur CentaurHauls
May 26 00:28:35 feta kernel: Transmeta GenuineTMx86
May 26 00:28:35 feta kernel: Transmeta TransmetaCPU
May 26 00:28:35 feta kernel: UMC UMC UMC UMC
May 26 00:28:35 feta kernel: BIOS-provided physical RAM map:
May 26 00:28:35 feta kernel: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
May 26 00:28:35 feta kernel: BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
May 26 00:28:35 feta kernel: BIOS-e820: 00000000000e4c00 - 0000000000100000 (reserved)
May 26 00:28:35 feta kernel: BIOS-e820: 0000000000100000 - 000000000fef0000 (usable)
May 26 00:28:35 feta kernel: BIOS-e820: 000000000fef0000 - 000000000feffc00 (ACPI data)
May 26 00:28:35 feta kernel: BIOS-e820: 000000000feffc00 - 000000000ff00000 (ACPI NVS)
May 26 00:28:35 feta kernel: BIOS-e820: 000000000ff00000 - 0000000010000000 (reserved)
May 26 00:28:35 feta kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
May 26 00:28:35 feta kernel: DMI present.
May 26 00:28:35 feta kernel: Phoenix BIOS detected: BIOS may corrupt low RAM, working around it.
May 26 00:28:35 feta kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
May 26 00:28:35 feta kernel: last_pfn = 0xfef0 max_arch_pfn = 0x100000
May 26 00:28:35 feta kernel: MTRR default type: uncachable
May 26 00:28:35 feta kernel: MTRR fixed ranges enabled:
May 26 00:28:35 feta kernel: 00000-9FFFF write-back
May 26 00:28:35 feta kernel: A0000-BFFFF uncachable
May 26 00:28:35 feta kernel: C0000-C7FFF write-protect
May 26 00:28:35 feta kernel: C8000-DFFFF uncachable
May 26 00:28:35 feta kernel: E0000-FFFFF write-protect
May 26 00:28:35 feta kernel: MTRR variable ranges enabled:
May 26 00:28:35 feta kernel: 0 base 000000000 mask FF8000000 write-back
May 26 00:28:35 feta kernel: 1 base 008000000 mask FFC000000 write-back
May 26 00:28:35 feta kernel: 2 base 00C000000 mask FFE000000 write-back
May 26 00:28:35 feta kernel: 3 base 00E000000 mask FFF000000 write-back
May 26 00:28:35 feta kernel: 4 base 00F000000 mask FFF800000 write-back
May 26 00:28:35 feta kernel: 5 base 00F800000 mask FFFC00000 write-back
May 26 00:28:35 feta kernel: 6 base 00FC00000 mask FFFE00000 write-back
May 26 00:28:35 feta kernel: 7 base 00FE00000 mask FFFF00000 write-back
May 26 00:28:35 feta kernel: PAT not supported by CPU.
May 26 00:28:35 feta kernel: init_memory_mapping: 0000000000000000-000000000fef0000
May 26 00:28:35 feta kernel: 0000000000 - 0000400000 page 4k
May 26 00:28:35 feta kernel: 0000400000 - 000fc00000 page 2M
May 26 00:28:35 feta kernel: 000fc00000 - 000fef0000 page 4k
May 26 00:28:35 feta kernel: kernel direct mapping tables up to fef0000 @ 10000-15000
May 26 00:28:35 feta kernel: ACPI: RSDP 000f6b70 00014 (v00 PTLTD )
May 26 00:28:35 feta kernel: ACPI: RSDT 0fefd4af 0002C (v01 PTLTD RSDT 06040000 LTP 00000000)
May 26 00:28:35 feta kernel: ACPI: FACP 0fefd4db 00074 (v01 FSC D1183/84 06040000 000F4240)
May 26 00:28:35 feta kernel: ACPI: DSDT 0fefd54f 02689 (v01 FSC D1183/84 06040000 MSFT 0100000C)
May 26 00:28:35 feta kernel: ACPI: FACS 0fefffc0 00040
May 26 00:28:35 feta kernel: ACPI: BOOT 0feffbd8 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
May 26 00:28:35 feta kernel: 254MB LOWMEM available.
May 26 00:28:35 feta kernel: mapped low ram: 0 - 0fef0000
May 26 00:28:35 feta kernel: low ram: 0 - 0fef0000
May 26 00:28:35 feta kernel: node 0 low ram: 00000000 - 0fef0000
May 26 00:28:35 feta kernel: node 0 bootmap 00011000 - 00012fe0
May 26 00:28:35 feta kernel: (6 early reservations) ==> bootmem [0000000000 - 000fef0000]
May 26 00:28:35 feta kernel: #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
May 26 00:28:35 feta kernel: #1 [0000100000 - 000042b29c] TEXT DATA BSS ==> [0000100000 - 000042b29c]
May 26 00:28:35 feta kernel: #2 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
May 26 00:28:35 feta kernel: #3 [000042c000 - 000042e130] BRK ==> [000042c000 - 000042e130]
May 26 00:28:35 feta kernel: #4 [0000010000 - 0000011000] PGTABLE ==> [0000010000 - 0000011000]
May 26 00:28:35 feta kernel: #5 [0000011000 - 0000013000] BOOTMAP ==> [0000011000 - 0000013000]
May 26 00:28:35 feta kernel: Zone PFN ranges:
May 26 00:28:35 feta kernel: DMA 0x00000010 -> 0x00001000
May 26 00:28:35 feta kernel: Normal 0x00001000 -> 0x0000fef0
May 26 00:28:35 feta kernel: Movable zone start PFN for each node
May 26 00:28:35 feta kernel: early_node_map[2] active PFN ranges
May 26 00:28:35 feta kernel: 0: 0x00000010 -> 0x0000009f
May 26 00:28:35 feta kernel: 0: 0x00000100 -> 0x0000fef0
May 26 00:28:35 feta kernel: On node 0 totalpages: 65151
May 26 00:28:35 feta kernel: free_area_init_node: node 0, pgdat c03c15e0, node_mem_map c1000200
May 26 00:28:35 feta kernel: DMA zone: 32 pages used for memmap
May 26 00:28:35 feta kernel: DMA zone: 0 pages reserved
May 26 00:28:35 feta kernel: DMA zone: 3951 pages, LIFO batch:0
May 26 00:28:35 feta kernel: Normal zone: 478 pages used for memmap
May 26 00:28:35 feta kernel: Normal zone: 60690 pages, LIFO batch:15
May 26 00:28:35 feta kernel: Using APIC driver default
May 26 00:28:35 feta kernel: ACPI: PM-Timer IO Port: 0xf008
May 26 00:28:35 feta kernel: Local APIC disabled by BIOS -- you can enable it with "lapic"
May 26 00:28:35 feta kernel: nr_irqs_gsi: 16
May 26 00:28:35 feta kernel: Allocating PCI resources starting at 20000000 (gap: 10000000:eff00000)
May 26 00:28:35 feta kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 64641
May 26 00:28:35 feta kernel: Kernel command line: root=/dev/hda1 ro vga=3845
May 26 00:28:35 feta kernel: Enabling fast FPU save and restore... done.
May 26 00:28:35 feta kernel: Enabling unmasked SIMD FPU exception support... done.
May 26 00:28:35 feta kernel: Initializing CPU#0
May 26 00:28:35 feta kernel: NR_IRQS:288
May 26 00:28:35 feta kernel: PID hash table entries: 1024 (order: 10, 4096 bytes)
May 26 00:28:35 feta kernel: Fast TSC calibration using PIT
May 26 00:28:35 feta kernel: Detected 861.697 MHz processor.
May 26 00:28:35 feta kernel: Console: colour VGA+ 80x30
May 26 00:28:35 feta kernel: console [tty0] enabled
May 26 00:28:35 feta kernel: Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
May 26 00:28:35 feta kernel: Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
May 26 00:28:35 feta kernel: Memory: 254956k/261056k available (2065k kernel code, 5540k reserved, 780k data, 248k init, 0k highmem)
May 26 00:28:35 feta kernel: virtual kernel memory layout:
May 26 00:28:35 feta kernel: fixmap : 0xfffaa000 - 0xfffff000 ( 340 kB)
May 26 00:28:35 feta kernel: vmalloc : 0xd06f0000 - 0xfffa8000 ( 760 MB)
May 26 00:28:35 feta kernel: lowmem : 0xc0000000 - 0xcfef0000 ( 254 MB)
May 26 00:28:35 feta kernel: .init : 0xc03ca000 - 0xc0408000 ( 248 kB)
May 26 00:28:35 feta kernel: .data : 0xc0304607 - 0xc03c7768 ( 780 kB)
May 26 00:28:35 feta kernel: .text : 0xc0100000 - 0xc0304607 (2065 kB)
May 26 00:28:35 feta kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
May 26 00:28:35 feta kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 1723.39 BogoMIPS (lpj=3446788)
May 26 00:28:35 feta kernel: Mount-cache hash table entries: 512
May 26 00:28:35 feta kernel: CPU: L1 I cache: 16K, L1 D cache: 16K
May 26 00:28:35 feta kernel: CPU: L2 cache: 256K
May 26 00:28:35 feta kernel: Intel machine check architecture supported.
May 26 00:28:35 feta kernel: Intel machine check reporting enabled on CPU#0.
May 26 00:28:35 feta kernel: CPU: Intel Pentium III (Coppermine) stepping 06
May 26 00:28:35 feta kernel: Checking 'hlt' instruction... OK.
May 26 00:28:35 feta kernel: ACPI: Core revision 20090320
May 26 00:28:35 feta kernel: ACPI: setting ELCR to 0200 (from 0e80)
May 26 00:28:35 feta kernel: net_namespace: 520 bytes
May 26 00:28:35 feta kernel: NET: Registered protocol family 16
May 26 00:28:35 feta kernel: ACPI: bus type pci registered
May 26 00:28:35 feta kernel: PCI: PCI BIOS revision 2.10 entry at 0xfd96e, last bus=1
May 26 00:28:35 feta kernel: PCI: Using configuration type 1 for base access
May 26 00:28:35 feta kernel: bio: create slab <bio-0> at 0
May 26 00:28:35 feta kernel: ACPI: EC: Look up EC in DSDT
May 26 00:28:35 feta kernel: ACPI: Interpreter enabled
May 26 00:28:35 feta kernel: ACPI: (supports S0 S1 S3 S5)
May 26 00:28:35 feta kernel: ACPI: Using PIC for interrupt routing
May 26 00:28:35 feta kernel: ACPI: PCI Root Bridge [PCI0] (0000:00)
May 26 00:28:35 feta kernel: pci 0000:00:02.0: reg 10 32bit mmio: [0xf8000000-0xfbffffff]
May 26 00:28:35 feta kernel: pci 0000:00:02.0: reg 14 32bit mmio: [0xf4000000-0xf407ffff]
May 26 00:28:35 feta kernel: pci 0000:00:1f.0: quirk: region f000-f07f claimed by ICH4 ACPI/GPIO/TCO
May 26 00:28:35 feta kernel: pci 0000:00:1f.0: quirk: region f180-f1bf claimed by ICH4 GPIO
May 26 00:28:35 feta kernel: pci 0000:00:1f.1: reg 20 io port: [0x1000-0x100f]
May 26 00:28:35 feta kernel: pci 0000:00:1f.2: reg 20 io port: [0x1400-0x141f]
May 26 00:28:35 feta kernel: pci 0000:00:1f.3: reg 20 io port: [0x1800-0x180f]
May 26 00:28:35 feta kernel: pci 0000:01:07.0: reg 10 io port: [0x2000-0x20ff]
May 26 00:28:35 feta kernel: pci 0000:01:07.0: reg 14 32bit mmio: [0xf4100000-0xf41001ff]
May 26 00:28:35 feta kernel: pci 0000:01:07.0: supports D1 D2
May 26 00:28:35 feta kernel: pci 0000:01:07.0: PME# supported from D1 D2 D3hot D3cold
May 26 00:28:35 feta kernel: pci 0000:01:07.0: PME# disabled
May 26 00:28:35 feta kernel: pci 0000:01:09.0: reg 10 io port: [0x2400-0x247f]
May 26 00:28:35 feta kernel: pci 0000:01:09.0: reg 14 32bit mmio: [0xf4100400-0xf410047f]
May 26 00:28:35 feta kernel: pci 0000:01:09.0: reg 30 32bit mmio: [0x000000-0x01ffff]
May 26 00:28:35 feta kernel: pci 0000:01:09.0: supports D1 D2
May 26 00:28:35 feta kernel: pci 0000:01:09.0: PME# supported from D0 D1 D2 D3hot D3cold
May 26 00:28:35 feta kernel: pci 0000:01:09.0: PME# disabled
May 26 00:28:35 feta kernel: pci 0000:01:0b.0: reg 10 32bit mmio: [0xf5000000-0xf5ffffff]
May 26 00:28:35 feta kernel: pci 0000:01:0b.2: reg 10 32bit mmio: [0xf6000000-0xf6ffffff]
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: transparent bridge
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: bridge io port: [0x2000-0x2fff]
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: bridge 32bit mmio: [0xf4100000-0xf6ffffff]
May 26 00:28:35 feta kernel: pci_bus 0000:00: on NUMA node 0
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCIH._PRT]
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
May 26 00:28:35 feta kernel: PCI: Using ACPI for IRQ routing
May 26 00:28:35 feta kernel: pnp: PnP ACPI init
May 26 00:28:35 feta kernel: ACPI: bus type pnp registered
May 26 00:28:35 feta kernel: pnp: PnP ACPI: found 9 devices
May 26 00:28:35 feta kernel: ACPI: ACPI bus type pnp unregistered
May 26 00:28:35 feta kernel: system 00:02: ioport range 0x4d0-0x4d1 has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0xf000-0xf07f has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0xf100-0xf10f has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0xf180-0xf1bf has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0x800-0x87f has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0xf820-0xf82f has been reserved
May 26 00:28:35 feta kernel: system 00:02: ioport range 0xfe00-0xfe00 has been reserved
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: PCI bridge, secondary bus 0000:01
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: IO window: 0x2000-0x2fff
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: MEM window: 0xf4100000-0xf6ffffff
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: PREFETCH window: 0x00000020000000-0x000000200fffff
May 26 00:28:35 feta kernel: pci 0000:00:1e.0: setting latency timer to 64
May 26 00:28:35 feta kernel: pci_bus 0000:00: resource 0 io: [0x00-0xffff]
May 26 00:28:35 feta kernel: pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffff]
May 26 00:28:35 feta kernel: pci_bus 0000:01: resource 0 io: [0x2000-0x2fff]
May 26 00:28:35 feta kernel: pci_bus 0000:01: resource 1 mem: [0xf4100000-0xf6ffffff]
May 26 00:28:35 feta kernel: pci_bus 0000:01: resource 2 pref mem [0x20000000-0x200fffff]
May 26 00:28:35 feta kernel: pci_bus 0000:01: resource 3 io: [0x00-0xffff]
May 26 00:28:35 feta kernel: pci_bus 0000:01: resource 4 mem: [0x000000-0xffffffff]
May 26 00:28:35 feta kernel: NET: Registered protocol family 2
May 26 00:28:35 feta kernel: IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
May 26 00:28:35 feta kernel: TCP established hash table entries: 8192 (order: 4, 65536 bytes)
May 26 00:28:35 feta kernel: TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
May 26 00:28:35 feta kernel: TCP: Hash tables configured (established 8192 bind 8192)
May 26 00:28:35 feta kernel: TCP reno registered
May 26 00:28:35 feta kernel: Simple Boot Flag at 0x69 set to 0x1
May 26 00:28:35 feta kernel: audit: initializing netlink socket (disabled)
May 26 00:28:35 feta kernel: type=2000 audit(1243290500.116:1): initialized
May 26 00:28:35 feta kernel: msgmni has been set to 498
May 26 00:28:35 feta kernel: alg: No test for stdrng (krng)
May 26 00:28:35 feta kernel: io scheduler noop registered (default)
May 26 00:28:35 feta kernel: pci 0000:00:02.0: Boot video device
May 26 00:28:35 feta kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
May 26 00:28:35 feta kernel: ACPI: Power Button [PWRF]
May 26 00:28:35 feta kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
May 26 00:28:35 feta kernel: ACPI: Power Button [PWRB]
May 26 00:28:35 feta kernel: Marking TSC unstable due to TSC halts in idle
May 26 00:28:35 feta kernel: processor ACPI_CPU:00: registered as cooling_device0
May 26 00:28:35 feta kernel: floppy0: no floppy controllers found
May 26 00:28:35 feta kernel: Uniform Multi-Platform E-IDE driver
May 26 00:28:35 feta kernel: piix 0000:00:1f.1: IDE controller (0x8086:0x2411 rev 0x02)
May 26 00:28:35 feta kernel: piix 0000:00:1f.1: not 100% native mode: will probe irqs later
May 26 00:28:35 feta kernel: ide0: BM-DMA at 0x1000-0x1007
May 26 00:28:35 feta kernel: ide1: BM-DMA at 0x1008-0x100f
May 26 00:28:35 feta kernel: Probing IDE interface ide0...
May 26 00:28:35 feta kernel: hda: IC35L020AVER07-0, ATA DISK drive
May 26 00:28:35 feta kernel: hda: host max PIO4 wanted PIO255(auto-tune) selected PIO4
May 26 00:28:35 feta kernel: hda: host side 80-wire cable detection failed, limiting max speed to UDMA33
May 26 00:28:35 feta kernel: hda: UDMA/33 mode selected
May 26 00:28:35 feta kernel: Probing IDE interface ide1...
May 26 00:28:35 feta kernel: hdc: LITE-ON LTR-40125S, ATAPI CD/DVD-ROM drive
May 26 00:28:35 feta kernel: hdc: host max PIO4 wanted PIO255(auto-tune) selected PIO4
May 26 00:28:35 feta kernel: hdc: UDMA/33 mode selected
May 26 00:28:35 feta kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
May 26 00:28:35 feta kernel: ide1 at 0x170-0x177,0x376 on irq 15
May 26 00:28:35 feta kernel: ide-gd driver 1.18
May 26 00:28:35 feta kernel: hda: max request size: 128KiB
May 26 00:28:35 feta kernel: hda: 40188960 sectors (20576 MB) w/1916KiB Cache, CHS=39870/16/63
May 26 00:28:35 feta kernel: hda: cache flushes not supported
May 26 00:28:35 feta kernel: hda: hda1 hda2
May 26 00:28:35 feta kernel: PNP: PS/2 Controller [PNP0303:KEYB,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
May 26 00:28:35 feta kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 26 00:28:35 feta kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
May 26 00:28:35 feta kernel: mice: PS/2 mouse device common for all mice
May 26 00:28:35 feta kernel: cpuidle: using governor ladder
May 26 00:28:35 feta kernel: TCP cubic registered
May 26 00:28:35 feta kernel: lib80211: common routines for IEEE802.11 drivers
May 26 00:28:35 feta kernel: lib80211_crypt: registered algorithm 'NULL'
May 26 00:28:35 feta kernel: Using IPI Shortcut mode
May 26 00:28:35 feta kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
May 26 00:28:35 feta kernel: kjournald starting. Commit interval 5 seconds
May 26 00:28:35 feta kernel: EXT3-fs: mounted filesystem with writeback data mode.
May 26 00:28:35 feta kernel: VFS: Mounted root (ext3 filesystem) readonly on device 3:1.
May 26 00:28:35 feta kernel: Freeing unused kernel memory: 248k freed
May 26 00:28:35 feta kernel: NET: Registered protocol family 1
May 26 00:28:35 feta kernel: cfg80211: Using static regulatory domain info
May 26 00:28:35 feta kernel: cfg80211: Regulatory domain: US
May 26 00:28:35 feta kernel: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
May 26 00:28:35 feta kernel: (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
May 26 00:28:35 feta kernel: (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
May 26 00:28:35 feta kernel: (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
May 26 00:28:35 feta kernel: (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
May 26 00:28:35 feta kernel: (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
May 26 00:28:35 feta kernel: (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
May 26 00:28:35 feta kernel: cfg80211: Calling CRDA for country: US
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 7
May 26 00:28:35 feta kernel: PCI: setting IRQ 7 as level-triggered
May 26 00:28:35 feta kernel: 3c59x 0000:01:09.0: PCI INT A -> Link[LNKC] -> GSI 7 (level, low) -> IRQ 7
May 26 00:28:35 feta kernel: 3c59x: Donald Becker and others.
May 26 00:28:35 feta kernel: 0000:01:09.0: 3Com PCI 3c905C Tornado at d0776400.
May 26 00:28:35 feta kernel: ide-cd driver 5.00
May 26 00:28:35 feta kernel: ide-cd: hdc: ATAPI 48X CD-ROM CD-R/RW drive, 2048kB Cache
May 26 00:28:35 feta kernel: Uniform CD-ROM driver Revision: 3.20
May 26 00:28:35 feta kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
May 26 00:28:35 feta kernel: PCI: setting IRQ 11 as level-triggered
May 26 00:28:35 feta kernel: rtl8180 0000:01:07.0: PCI INT A -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
May 26 00:28:35 feta kernel: phy0: Selected rate control algorithm 'minstrel'
May 26 00:28:35 feta kernel: phy0: hwaddr 00:0e:2e:e9:b5:fd, RTL8185vD + rtl8225z2
May 26 00:28:35 feta kernel: Adding 819304k swap on /dev/hda2. Priority:-1 extents:1 across:819304k
May 26 00:28:35 feta kernel: EXT3 FS on hda1, internal journal
May 26 00:28:35 feta kernel: loop: module loaded
May 26 00:28:35 feta kernel: eth0: setting full-duplex.
May 26 00:28:35 feta rsyslogd: [origin software="rsyslogd" swVersion="3.18.6" x-pid="1091" x-info="http://www.rsyslog.com"] restart
May 26 00:28:38 feta /usr/sbin/cron[1461]: (CRON) INFO (pidfile fd = 3)
May 26 00:28:38 feta /usr/sbin/cron[1462]: (CRON) STARTUP (fork ok)
May 26 00:28:38 feta /usr/sbin/cron[1462]: (CRON) INFO (Running @reboot jobs)
May 26 00:32:58 feta kernel: imklog 3.18.6, log source = /proc/kmsg started.
May 26 00:32:58 feta kernel: Linux version 2.6.30-rc5-1 (root@feta) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 PREEMPT Mon May 11 00:13:36 CEST 2009
May 26 00:32:58 feta kernel: KERNEL supported cpus:
May 26 00:32:58 feta kernel: Intel GenuineIntel
May 26 00:32:58 feta kernel: AMD AuthenticAMD
May 26 00:32:58 feta kernel: NSC Geode by NSC
May 26 00:32:58 feta kernel: Cyrix CyrixInstead
May 26 00:32:58 feta kernel: Centaur CentaurHauls
May 26 00:32:58 feta kernel: Transmeta GenuineTMx86
May 26 00:32:58 feta kernel: Transmeta TransmetaCPU
May 26 00:32:58 feta kernel: UMC UMC UMC UMC


Attachments:
syslog_2009-05-26_001.txt (20.40 kB)