12

My desktop is usually very responsive, even under heavy load. But when I copy files to a USB drive, it always locks up after some time. By "lock up", I mean:

  • Moving focus from one window to another can take 10-20s
  • Switching desktops can take 10-20s
  • Videos don't update anymore (in YouTube, the audio continues to play, only the video freezes)

The system load isn't exceptionally high when this happens. Sometimes, I see a lot of white on xosview indicating that the kernel is busy somewhere.

At first glance, it looks as if copying files to the USB drive would interfere somehow with compiz but I can't imagine what the connection could be.

Here is the output of htop:

Output of htop shortly after the hang

Here is the output of iostat -c -z -t -x -d 1 during a 2 minute hang:

19.07.2012 20:38:22 avg-cpu: %user %nice %system %iowait %steal %idle 1,27 0,00 0,38 37,52 0,00 60,84 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util sdg 0,00 2,00 0,00 216,00 0,00 109248,00 1011,56 247,75 677,69 0,00 677,69 4,63 100,00 

As you can see, only the external harddisk is active. Here is the complete log: http://pastebin.com/YNWTAkh4

The hang started at 20:38:01 and ended at 20:40:19.

Software information:

  • openSUSE 12.1
  • KDE 4.7.x
  • Filesystems: reiserfs and btrfs on my internal harddisk, btrfs on the USB drive
8
  • 1
    Have you tried mounting the USB drive sync to see what effect (if any) this has? Commented Jul 11, 2012 at 15:00
  • 2
    A disadvantage of USB is the fact that it heavily relies on the CPU for IO. What sort of CPU do does your system have? Append the output of grep name /proc/cpuinfo to your question please. Commented Jul 11, 2012 at 16:15
  • 1
    Do you drag and drop the files using dolphin? If so, try cp from the command line to exclude possible dolphin bugs. Commented Jul 11, 2012 at 23:39
  • @JariLaamanen: I'm using rsync from the command line. Commented Jul 12, 2012 at 7:01
  • 1
    @jippie: Not really because the UI locks up when it happens, so I can't make a screenshot. I'll try to create a log with iostat -c -z -d 1 Commented Jul 17, 2012 at 8:34

4 Answers 4

4

My first guess was btrfs since the I/O processes of this file system sometimes take over. But it wouldn't explain why X locks up.

Looking at the interrupts, I see this:

# cat /proc/interrupts CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7 0: 179 0 0 0 0 0 0 0 IR-IO-APIC-edge timer 1: 6 0 0 0 0 0 0 0 IR-IO-APIC-edge i8042 8: 1 0 0 0 0 0 0 0 IR-IO-APIC-edge rtc0 9: 0 0 0 0 0 0 0 0 IR-IO-APIC-fasteoi acpi 12: 10 0 0 0 0 0 0 0 IR-IO-APIC-edge i8042 16: 3306384 0 0 0 0 0 0 0 IR-IO-APIC-fasteoi ehci_hcd:usb1, nvidia, mei, eth1 

Well, duh. The USB driver uses the same IRQ as the graphics card and it is first in the chain. If it locks up (because the file system does something expensive), the graphics card starves (and the network, too).

2

I had seen similar problems with openSUSE 12.1's linux-3.1 kernel and found that disabling transparent huge pages helped:

echo never > /sys/kernel/mm/transparent_hugepage/enabled 

The underlying problem is that if an application allocates 4MB or more, the kernel will try to give it a huge page, for which it needs a whole contiguous 4MB RAM. Now, if there are many dirty pages around, that still need to be written to a slow USB device, it waits for that IO to finish before continuing with the memory allocation.

1

As mentioned, this probably has to do with the kernel hugepages setup. I know several people with this problem. You can find several documentation about it in the web, e.g.

I have completely fixed the problem on my setup by doing the following. Notice YMMV, not all the fixes below may be necessary, and maybe they'll not be sufficient. I may have forgotten something to be honest. Anyhow that's my setup and it works.

  • Use linux-ck kernel
  • echo madvise > /sys/kernel/mm/transparent_hugepage/enabled
  • echo never > /sys/kernel/mm/transparent_hugepage/defrag
-2

Change the cable. Remove oxid from usb port/cables.

1
  • It needs to be a little more elaborate. Please see the FAQ Commented Sep 28, 2012 at 13:12

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.