[Bug 679110] New: USB Ethernet card D-Link DUB-E100 (asix) fails after GNOME or GDM start. OS: OpenSUSE 11.4 final.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c0 Summary: USB Ethernet card D-Link DUB-E100 (asix) fails after GNOME or GDM start. OS: OpenSUSE 11.4 final. Classification: openSUSE Product: openSUSE 11.4 Version: Final Platform: x86-64 OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: GNOME AssignedTo: bnc-team-gnome@forge.provo.novell.com ReportedBy: Warhammer@li.ru QAContact: qa@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; ru; rv:1.9.2.14) Gecko/20110221 SUSE/3.6.14-3.1 Firefox/3.6.14 I'm using external USB network adapter - Dlink Dub E-100 for my internet connection. Network working flawlessly, until i run X11 with GDM or GNOME. After GNOME startup, network adapter looks fine, NetworkManager says that i connected to network - but i cannot send or receive any data from it. If, i choose reconnect in NetworkManager - dhcp fails. If i manually restart network (service network stop; service network start) - dhcp fails. If i manually configure internet connection without dhcp - again it's not working (not sending or receiving data over ethernet). Physically reconnecting USB adapter seems to help - all working fine. I can even restart GNOME or whole X11, sometimes. But after reboot the problem repeats. I tried to do net-install - network works during installation - and stop working when GDM starts at the end of installation. I tried to boot Gnome LIVECD - network works fine, before X11 starts. I tried another login manager - LXDM - with twm, started from it - all forks fine. Also i succeeded to reproduce this problem in VirtualBox 4.0, connecting USB adapter with USB Passthrough (all other network interfaces in VM was disabled). //sorry for my English Reproducible: Always Steps to Reproduce: 1.Start VirtualBox, create VM, and remove all network adapters from it, connect Dlink DUB-E100 to VM with usb-passthrough. 2.Boot GNOME LiveCD image. Wait while network connects, and GNOME starts. 3.Try to test network connection. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c1 --- Comment #1 from Hammer Faceman <Warhammer@li.ru> 2011-03-12 16:14:48 UTC --- To figure out what component of gnome raises this problem, i tried to manually start various gnome components from TWM. I found, that network stops working, after gnome-power-manager starts. I continued to explore further what exactly causes this problem, and found that problem appears when "upowerd" process starts up. (i started upowerd by "upower -m" command). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c2 --- Comment #2 from Hammer Faceman <Warhammer@li.ru> 2011-03-12 23:15:08 UTC --- While exploring more further, I found that upowerd starts "pm-powersave" script that locking up my network card. If i manually enter in console "pm-powersave false" network card stop working. I also tried to boot opensuse 11.4 with my custom kernel from opensuse 11.3 (without recompilation - i only rebuild initrd) - with the same result. So I guess that it may be "pm-utils" package problem. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c3 Vincent Untz <vuntz@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |vuntz@novell.com Component|GNOME |Basesystem AssignedTo|bnc-team-gnome@forge.provo. |mvyskocil@novell.com |novell.com | Summary|USB Ethernet card D-Link |pm-utils: USB Ethernet card |DUB-E100 (asix) fails after |D-Link DUB-E100 (asix) |GNOME or GDM start. OS: |fails after GNOME or GDM |OpenSUSE 11.4 final. |start. OS: OpenSUSE 11.4 | |final. --- Comment #3 from Vincent Untz <vuntz@novell.com> 2011-03-14 08:41:52 UTC --- This is a pm-utils issue. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c4 --- Comment #4 from Hammer Faceman <Warhammer@li.ru> 2011-03-14 11:44:11 UTC --- So, I have found out which component of a package "pm-utils" causes failure of my network card. The script /usr/lib/pm-utils/power.d/disable_wol. A temporary solution - manually modify this script like that: #!/bin/sh "${PM_FUNCTIONS}" command_exists ethtool || exit $NA set_wol_status() { for d in "/sys/class/net/"*; do [ -e "$d/wireless" ] && continue [ -h "$d/device/driver" ] || continue printf "Setting Wake On Lan for %s to %s..." "${d##*/}" "$1" case $1 in disable) ethtool -s "${d##*/}" wol d>/dev/null 2>&1;; enable) ethtool -s "${d##*/}" wol g>/dev/null 2>&1;; esac [ "$?" -eq 0 ] && echo Done. || echo Failed. done } do_nothing() { echo Done. } case $1 in true) do_nothing;; false) do_nothing;; *) exit $NA;; esac exit 0 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c5 Michal Vyskocil <mvyskocil@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO InfoProvider| |coolo@novell.com --- Comment #5 from Michal Vyskocil <mvyskocil@novell.com> 2011-03-14 14:29:56 UTC --- 2Hammer: there's a HOOK_BLACKLIST variable can be used for disabling of hook. Just type as root # echo HOOK_BLACKLIST="disable_wol" >> /etc/config.d/wol and the hook will be disabled. 2coolo: you mentioned fedora people removed all power.d/ hooks - do you think we should follow up as well? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c6 Stephan Kulow <coolo@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW CC| |coolo@novell.com InfoProvider|coolo@novell.com | --- Comment #6 from Stephan Kulow <coolo@novell.com> 2011-03-14 15:36:26 CET --- I can't really judge what we get from them - so far they seem pretty problematic and rather experimental. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c7 Michal Vyskocil <mvyskocil@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mvyskocil@suse.com |vdziewiecki@suse.com --- Comment #7 from Michal Vyskocil <mvyskocil@suse.com> 2012-03-27 08:35:14 UTC --- moved to the new maintainer -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c Vojta Dziewięcki <vdziewiecki@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=679110 https://bugzilla.novell.com/show_bug.cgi?id=679110#c8 Wojtek Dziewięcki <vdziewiecki@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |CLOSED Resolution| |WONTFIX --- Comment #8 from Wojtek Dziewięcki <vdziewiecki@suse.com> 2014-07-18 15:09:48 UTC --- Noone has time to fix pm-utils any more, sorry. This package will not be present in future opensuse versions as it has been replaced by systemd's suspend functionality. Please consider uninstalling pm-utils. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com