You are not logged in.

#1 2011-11-10 09:08:36

arunvragh
Member
Registered: 2007-04-17
Posts: 111

Network Manager messed up after recent update

There seems to be some issue with Network Manager after recent kernel/udev update
(LXDE). It boots OK but the minute I click on the icon in the panel to choose the network to connect to it hangs.

It was okay before the update. Once it hangs nothing responds. Only the USB mouse moves but clicking on any icon or window button has no response. It frees up after a few minutes, but if you repeat the action it occurs again.

I uninstalled it and switched to wicd. It works fine now.

Here is the log output from /var/log/errors.log

Nov 10 10:20:36 localhost kernel: [  241.060500] INFO: task NetworkManager:683 blocked for more than 120 seconds.
Nov 10 10:20:36 localhost kernel: [  241.060509] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
Nov 10 10:20:36 localhost kernel: [  241.060632] INFO: task wpa_supplicant:738 blocked for more than 120 seconds.
Nov 10 10:20:36 localhost kernel: [  241.060634] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
Nov 10 10:20:36 localhost kernel: [  241.060782] INFO: task nmbd:743 blocked for more than 120 seconds.
Nov 10 10:20:36 localhost kernel: [  241.060783] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.

Any suggestions. On a HP Pavilion g4.

Offline

#2 2011-11-10 16:08:49

R3DKn16h7
Member
Registered: 2010-12-30
Posts: 15

Re: Network Manager messed up after recent update

I don't now if it's the same problem but since yesterday's update I got my connection throught networkmanager to go down some time (I hat to disconnect and reconnect manually)... here logs:

Deamons.log:
11/10/11 05:01:16 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: completed -> disconnected
11/10/11 05:01:17 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: disconnected -> scanning
11/10/11 05:01:20 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: scanning -> authenticating
11/10/11 05:01:20 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: authenticating -> associating
11/10/11 05:01:20 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: associating -> associated
11/10/11 05:01:21 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: associated -> 4-way handshake
11/10/11 05:01:21 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: 4-way handshake -> group handshake
11/10/11 05:01:21 PM    localhost    NetworkManager[882]    <info> (wlan0): supplicant interface state: group handshake -> completed

/var/log/errors.log
Nov 10 17:02:17 localhost kernel: [ 6381.082770] iwlagn 0000:04:00.0: Error removing station 00:12:17:69:2f:c9
Nov 10 17:02:17 localhost kernel: [ 6381.099399] iwlagn 0000:04:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
Nov 10 17:02:17 localhost kernel: [ 6381.099402] iwlagn 0000:04:00.0: Error clearing ASSOC_MSK on BSS (-5)
Nov 10 17:02:17 localhost kernel: [ 6381.099432] iwlagn 0000:04:00.0: Error sending REPLY_LEDS_CMD: enqueue_hcmd failed: -5
Nov 10 17:02:17 localhost kernel: [ 6381.099438] iwlagn 0000:04:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
Nov 10 17:02:17 localhost kernel: [ 6381.099440] iwlagn 0000:04:00.0: Error clearing ASSOC_MSK on BSS (-5)
Nov 10 17:02:17 localhost kernel: [ 6381.109445] iwlagn 0000:04:00.0: Error sending REPLY_RXON: enqueue_hcmd failed: -5
Nov 10 17:02:17 localhost kernel: [ 6381.109454] iwlagn 0000:04:00.0: Error clearing ASSOC_MSK on BSS (-5)
Nov 10 17:02:57 localhost dhcpcd[7015]: timed out
Nov 10 17:03:50 localhost dhcpcd[7054]: timed out

Offline

#3 2011-11-10 16:10:11

finidine
Member
Registered: 2010-05-24
Posts: 24

Re: Network Manager messed up after recent update

Yes. NetworkManaged has some new issue... eth0 does not go up after resuming from hibernate / suspend. I Fixed it momentarily issuing an "rc.d restart networkmanager" in my /etc/pm/sleep.d/00_local script, in the "thaw" and "resume" hooks.

00_local:

#!/bin/bash

case $1 in
    hibernate)
        ;;
    suspend)
        ;;
    thaw)
        /etc/rc.d/networkmanager restart
        ;;
    resume)
        /etc/rc.d/networkmanager restart
        ;;
    *)  echo "WRONG PM HOOK!!!"
        ;;
esac

Offline

#4 2011-11-10 16:24:42

R3DKn16h7
Member
Registered: 2010-12-30
Posts: 15

Re: Network Manager messed up after recent update

I'm now testing networkmanager 0.9.2.0-1 seems work better...

Offline

#5 2011-11-11 12:34:03

finidine
Member
Registered: 2010-05-24
Posts: 24

Re: Network Manager messed up after recent update

Today I upgraded networkmanager to 0.9.2.0-1, nothing changes. eth0 is down and my wired connection "unmanaged" after suspend. The fix I posted on #3 does not work, I have to issue "rc.d restart networkmanager" by hand after a few seconds from resume, else it doesn't work.

Offline

#6 2011-11-12 19:12:33

finidine
Member
Registered: 2010-05-24
Posts: 24

Re: Network Manager messed up after recent update

I rolled back my system to kernel 3.0.7-1 AND udev 174-1 then network manager 0.9.2.0-1 works perfectly for me. Blame the new kernel and / or udev.

Offline

#7 2011-11-16 09:53:45

arunvragh
Member
Registered: 2007-04-17
Posts: 111

Re: Network Manager messed up after recent update

Did the latest kernel upgrade fix this. I am so comfortable with wicd that am not changing now...

Offline

#8 2011-11-25 11:56:05

finidine
Member
Registered: 2010-05-24
Posts: 24

Re: Network Manager messed up after recent update

Confirmed fix (Linux 3.1.2-1). What we will do without this little Arch Linux breakages...

Offline

#9 2011-11-26 15:16:02

arunvragh
Member
Registered: 2007-04-17
Posts: 111

Re: Network Manager messed up after recent update

Tks, back to NetworkManager

Offline

#10 2011-11-27 13:51:54

finidine
Member
Registered: 2010-05-24
Posts: 24

Re: Network Manager messed up after recent update

I rolled back again to 3.0.7-1, but for another reason... long USB stick transfers make the system unresponsive with the 3.1.2-1 kernel.

Offline

Board footer

Powered by FluxBB