[Bug 1752772] Re: r8169 ethernet card don't work after returning from suspension

2018-09-23 Thread RubbelDieCatc
I can confirm that the fix from DiegoRivera #102 is also functional.
Look here
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1752772/comments/102

The issue with the r8169 driver exists on other distributions ans kernel 
versions also.
I use Debian with kernel 4.16.0-2-amd64

18:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 
PCI Express Gigabit Ethernet Controller (rev 15)
Subsystem: Micro-Star International Co., Ltd. [MSI] RTL8111/8168/8411 
PCI Express Gigabit Ethernet Controller
Flags: bus master, fast devsel, latency 0, IRQ 73
I/O ports at f000 [size=256]
Memory at f7604000 (64-bit, non-prefetchable) [size=4K]
Memory at f760 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 01
Capabilities: [b0] MSI-X: Enable- Count=4 Masked-
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Virtual Channel
Capabilities: [160] Device Serial Number 01-00-00-00-68-4c-e0-00
Capabilities: [170] Latency Tolerance Reporting
Capabilities: [178] L1 PM Substates
Kernel driver in use: r8169
Kernel modules: r8169

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752772

Title:
  r8169 ethernet card don't work after returning from suspension

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1752772/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1752772] Re: r8169 ethernet card don't work after returning from suspension

2018-07-10 Thread RubbelDieCatc
Had the same problem with debian and kernel 4.16.0-2-amd64

Seems to be a irq problem
Jul 10 08:47:34 xxx kernel: do_IRQ: 13.36 No irq handler for vector
Jul 10 08:47:34 xxx kernel: r8169 :18:00.0 enp24s0: link down

Solution is to create a file as root the unloads and reloads the module
vi /lib/systemd/system-sleep/reset-network 

#!/bin/sh
if [ "${1}" == "pre" ]; then
  # Do the thing you want before suspend here, e.g.:
  rmmod r8169
elif [ "${1}" == "post" ]; then
  # Do the thing you want after resume here, e.g.:
  modprobe r8169
fi

Don't forget to chmod 755 your script

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1752772

Title:
  r8169 ethernet card don't work after returning from suspension

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1752772/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 737349] Re: Failed to detect second monitor (no XRandR 1.2 support)

2011-05-24 Thread RubbelDieCatc
I can confirm the problem and the report from esben.

It is a regression because the second screen worked fine in 10.10.

So it is not a MINOR Problem because nearly every users with an nvidia
laptop or more than one screen will have the same issue.

1: Ubuntu does not detect second screen. 
2: ... Compiz and the Window Manager will not be active for this screen
3: ... second Monitor is nearly unsuable because of this

Maybe it is important.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/737349

Title:
  Failed to detect second monitor (no XRandR 1.2 support)

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 508746] Re: rtl819xE:request firmware fail!

2010-10-17 Thread RubbelDieCatc
I can confirm the bug.

I have a Samsung N510 with Ubuntu 10.10 too.
03:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8192E Wireless 
LAN Controller (rev 01)

I made complete new kernel module out of a recent 2.6.35-stable git.

I get the same error
[ 199.325063] rtl819xE:ERR in CPUcheck_firmware_ready()

I guess it is not a download firmware issue.
CPUcheck_firmware_ready is called init_firmware (r819xE_firmware.c) after 
successfully downloading the first 2 files. (boot.img and data.img)

case FW_INIT_STEP2_DATA:
/* download initial data code */
pfirmware-firmware_status = FW_STATUS_4_MOVE_DATA_CODE;
mdelay(1);

rt_status = CPUcheck_firmware_ready(dev);
if (rt_status != TRUE) {
RT_TRACE(COMP_FIRMWARE,
CPUcheck_firmware_ready fail(%d)!\n,
rt_status);
goto download_firmware_fail;
}

-- 
rtl819xE:request firmware fail!
https://bugs.launchpad.net/bugs/508746
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 508746] Re: rtl819xE:request firmware fail!

2010-10-17 Thread RubbelDieCatc
It seems that  RTL8192E at the Samsung N512 only  works as r8192_pci from the 
torvald git.
Not with the 2.6.35 -  8192e_pci module

I took a snapshot from 
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=tree;f=drivers/staging/rtl8192e;hb=aa021baa3295fa6e3f367d80f8955dd5176656eb

you must change the last line in the Makefile to
obj-m += r8192_pci.o 
in order to compile the module.
Dont forget to blacklist the r8192e_pci and  r8192se_pci modules

I made myself a package with a install script.
http://www.dirk-hoeschen.de/temp/rtl819Xe.tar.gz

Unpack it and run install.sh
The driver should now work like a charme,


** Attachment added: Install package
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/508746/+attachment/1698036/+files/rtl819Xe.tar.gz

-- 
rtl819xE:request firmware fail!
https://bugs.launchpad.net/bugs/508746
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 530644] Re: Color artifacts on display after wake up

2010-03-07 Thread RubbelDieCatc
I can verify it on 2 different systems with 3 different nvidia cards running 
lucid alpha.
seems to be a common problem with nvidia on all systems.

-- 
Color artifacts on display after wake up
https://bugs.launchpad.net/bugs/530644
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 354462] Re: sata drive error after resume from sleep

2009-04-26 Thread RubbelDieCatc
Hmm I wonder why nobody else has such a problem.
The behaviour is reproducible with any other debian based distribution.
The driver is unable to re-enable the sata-interface.

Anyway... here is a part of the resume error message:

[  112.105053] ata7.00: configured for UDMA/33
[  112.368240] ata7.01: configured for UDMA/33
[  112.505914] sd 0:0:0:0: [sda] Starting disk
[  117.260254] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  117.988150] ata1: link is slow to respond, please be patient (ready=0)
[  120.228074] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  122.260235] ata3.00: qc timeout (cmd 0xec)
[  122.260239] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  122.260240] ata3.00: revalidation failed (errno=-5)
[  122.744223] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  125.228087] ata1.00: qc timeout (cmd 0xec)
[  125.228090] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  125.228091] ata1.00: revalidation failed (errno=-5)
[  125.712195] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  132.744018] ata3.00: qc timeout (cmd 0xec)
[  132.744021] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  132.744023] ata3.00: revalidation failed (errno=-5)
[  133.228054] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  135.712106] ata1.00: qc timeout (cmd 0xec)
[  135.712109] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  135.712110] ata1.00: revalidation failed (errno=-5)
[  136.196188] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  163.228060] ata3.00: qc timeout (cmd 0xec)
[  163.228063] ata3.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  163.228065] ata3.00: revalidation failed (errno=-5)
[  163.228066] ata3.00: disabled
[  163.228072] ata3: hard resetting link
[  163.712147] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  163.712150] ata3: EH complete
[  166.196204] ata1.00: qc timeout (cmd 0xec)
[  166.196207] ata1.00: failed to IDENTIFY (I/O error, err_mask=0x4)
[  166.196208] ata1.00: revalidation failed (errno=-5)
[  166.196210] ata1.00: disabled
[  166.196213] ata1: hard resetting link
[  166.736163] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  166.736166] ata1: EH complete
[  166.736180] sd 0:0:0:0: [sda] START_STOP FAILED
[  166.736181] sd 0:0:0:0: [sda] Result: hostbyte=DID_BAD_TARGET 
driverbyte=DRIVER_OK,SUGGEST_OK
[  166.736264] PM: Device 0:0:0:0 failed to resume: error 262144
[  166.736658] sd 2:0:0:0: [sdb] Starting disk
[  166.736667] sd 2:0:0:0: [sdb] START_STOP FAILED
[  166.736668] sd 2:0:0:0: [sdb] Result: hostbyte=DID_BAD_TARGET 
driverbyte=DRIVER_OK,SUGGEST_OK
[  166.736749] PM: Device 2:0:0:0 failed to resume: error 262144
[  167.081205] PM: resume devices took 55.908 seconds

-- 
sata drive error after resume from sleep
https://bugs.launchpad.net/bugs/354462
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 354462] Re: sata drive error after resume from sleep

2009-04-26 Thread RubbelDieCatc
** Changed in: acpi-support (Ubuntu)
   Status: New = Confirmed

-- 
sata drive error after resume from sleep
https://bugs.launchpad.net/bugs/354462
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 354462] Re: sata drive error after resume from sleep

2009-04-26 Thread RubbelDieCatc
I solved the problem by adding pci=nomsi to the kernel boot parameters.

Everyone with the same board or chipset should have this problem.
So I wonder why there are not more informations about that issue.

MFG... Rubbel

-- 
sata drive error after resume from sleep
https://bugs.launchpad.net/bugs/354462
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 354462] [NEW] sata drive error after resume from sleep

2009-04-03 Thread RubbelDieCatc
Public bug reported:

Binary package hint: acpi-support

I have a AMD2 computer with a M3N78 Mainboard.
Running Kernel 2.6.17 on UBUNTU 8.10

The IDE Interface is a GeForce 8200 running in SATA mode.
Attached is a 1GIG sata disk

After resuming from S3 sleep the system isn't able to access the drive.
I get I/O errors an have to restart. According to the noise the board 
re-enables the drives correctly.

I tried to disable DMA in /etc/default/acpi-support and I switched into AHCI 
mode  via BIOS-Settings.
btw: S3 sleep and resume on windows works

Lsmod:
--
00:06.0 IDE interface: nVidia Corporation MCP78S [GeForce 8200] IDE (rev a1)

HWinfo --disk
--
32: IDE 00.0: 10600 Disk
  [Created at block.234]
  UDI: 
/org/freedesktop/Hal/devices/storage_serial_1ATA_WDC_WD10EACS_65D6B0_WD_WCAU41771461
  Unique ID: 3OOL.GRWJc_NePi6
  Parent ID: WL76.yE7770eiVn1
  SysFS ID: /class/block/sda
  SysFS BusID: 0:0:0:0
  SysFS Device Link: /devices/pci:00/:00:09.0/host0/target0:0:0/0:0:0:0
  Hardware Class: disk
  Model: WDC WD10EACS-65D
  Vendor: WDC
  Device: WD10EACS-65D
  Revision: 01.0
  Serial ID: WD-WCAU41771461
  Driver: ahci, sd
  Driver Modules: ahci
  Device File: /dev/sda
  Device Files: /dev/sda, 
/dev/disk/by-id/scsi-1ATA_WDC_WD10EACS-65D6B0_WD-WCAU41771461, 
/dev/disk/by-id/ata-WDC_WD10EACS-65D6B0_WD-WCAU41771461, 
/dev/disk/by-path/pci-:00:09.0-scsi-0:0:0:0, /dev/block/8:0
  Device Number: block 8:0-8:15
  BIOS id: 0x81
  Geometry (Logical): CHS 121601/255/63
  Size: 1953525168 sectors a 512 bytes
  Config Status: cfg=new, avail=yes, need=no, active=unknown
  Attached to: #15 (IDE interface)

Any suggestions?

** Affects: acpi-support (Ubuntu)
 Importance: Undecided
 Status: New

-- 
sata drive error after resume from sleep
https://bugs.launchpad.net/bugs/354462
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 269904] Re: Screen refresh problems with nvidia on intrepid

2008-10-19 Thread RubbelDieCatc
have the same problem on my 5200 AMD64/x2 with Geforce 8800gt

Especially with Eclipse (JAVA-IDE)

-- 
Screen refresh problems with nvidia on intrepid
https://bugs.launchpad.net/bugs/269904
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 37382] Re: ata timeout freezes system partly

2008-10-13 Thread RubbelDieCatc
Using  2.6.27-6-generic with a VT8237A SATA 2-Port Controller in
Combination with JMicron 20360/20363 AHCI Controller

The problem is still there.
* SATA Drive SAMSUNG HD400LJ freezes after approx 30 Minutes

The error occurred the first time with Kernel 2.6.24.
In between one of the noapic kernel boot parameters worked. But one kernel 
version later the error returned.
Meanwhile I am really pissed.

-- 
ata timeout freezes system partly
https://bugs.launchpad.net/bugs/37382
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 281735] [NEW] Hardy and 8.10 freeze by powernowd (Cool and Quiet) feature

2008-10-11 Thread RubbelDieCatc
Public bug reported:

I have a AMDX64 5200 wit a AliveSATA2-GLAN Board and Nvidia 8800 GT
Graphics.

Since one week (after a Hardy 8.4 update) my system freezes on startup when 
activating powernow.
I upgraded to 8.10 beta, but the issue is still there.

If I disable the cool and quiet option at the bios or the powernowd on
startup, the system starts normally.

Because I get Non Fatal - PCI-Express Device errors  I first suspected my 
graphic card first.
But it seems independent on the graphics.

Fact 1: Sometimes (after a few reboots and startups in recovery mode) I
am able to boot normally. Then I can use the powernow-applet normally.
The System runs stable and the CPU-Scaling works perfectly.

Fact 2:  With a older 8.4 Installation I have no problems.

Suggestion: Sometimes the CPU-freq-settings are in a condition, which
causes the immediate freeze of the complete system.

Any ideas?

LSPCI-Output
--
00:00.0 Host bridge: VIA Technologies, Inc. K8T890CF Host Bridge
00:00.1 Host bridge: VIA Technologies, Inc. VT3351 Host Bridge
00:00.2 Host bridge: VIA Technologies, Inc. VT3351 Host Bridge
00:00.3 Host bridge: VIA Technologies, Inc. VT3351 Host Bridge
00:00.4 Host bridge: VIA Technologies, Inc. VT3351 Host Bridge
00:00.5 PIC: VIA Technologies, Inc. VT3351 I/O APIC Interrupt Controller
00:00.7 Host bridge: VIA Technologies, Inc. VT3351 Host Bridge
00:01.0 PCI bridge: VIA Technologies, Inc. [K8T890 North / VT8237 South] PCI 
Bridge
00:02.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:03.0 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:03.1 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:03.2 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:03.3 PCI bridge: VIA Technologies, Inc. K8T890 PCI to PCI Bridge Controller
00:0a.0 USB Controller: NEC Corporation USB (rev 43)
00:0a.1 USB Controller: NEC Corporation USB (rev 43)
00:0a.2 USB Controller: NEC Corporation USB 2.0 (rev 04)
00:0b.0 Network controller: AVM Audiovisuelles MKTG  Computer System GmbH A1 
ISDN [Fritz] (rev 02)
00:0f.0 IDE interface: VIA Technologies, Inc. VT8237A SATA 2-Port Controller 
(rev 80)
00:0f.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 07)
00:10.0 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
00:10.1 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
00:10.2 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
00:10.3 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev a0)
00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
00:11.0 ISA bridge: VIA Technologies, Inc. VT8237A PCI to ISA Bridge
00:11.7 Host bridge: VIA Technologies, Inc. VT8251 Ultra VLINK Controller
00:13.0 Host bridge: VIA Technologies, Inc. VT8237A Host Bridge
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address 
Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM 
Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
Miscellaneous Control
02:00.0 SATA controller: JMicron Technologies, Inc. JMicron 20360/20363 AHCI 
Controller (rev 02)
02:00.1 IDE interface: JMicron Technologies, Inc. JMicron 20360/20363 AHCI 
Controller (rev 02)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI 
Express Gigabit Ethernet controller (rev 01)
06:00.0 VGA compatible controller: nVidia Corporation GeForce 8800 GT (rev a2)
80:01.0 Audio device: VIA Technologies, Inc. VT1708/A [Azalia HDAC] (VIA High 
Definition Audio Controller) (rev 10)

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Hardy and 8.10 freeze by powernowd (Cool and Quiet) feature
https://bugs.launchpad.net/bugs/281735
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs