LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>,
linux-usb-devel@lists.sourceforge.net,
Pete Zaitcev <zaitcev@redhat.com>
Cc: Kumar Gala <galak@kernel.crashing.org>,
Linux Kernel list <linux-kernel@vger.kernel.org>,
Greg KH <gregkh@suse.de>
Subject: Re: 2.6.20 kernel hang with USB drive and vfat doing ftruncate
Date: Wed, 21 Feb 2007 12:57:36 -0800 [thread overview]
Message-ID: <20070221125736.e5ff4206.akpm@linux-foundation.org> (raw)
In-Reply-To: <87ejoj5knu.fsf@duaron.myhome.or.jp>
On Thu, 22 Feb 2007 05:18:45 +0900
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> wrote:
> Kumar Gala <galak@kernel.crashing.org> writes:
>
> >>> I usually run the following twice to get the hang state:
> >>>
> >>> time ./trunc_test bar 100000000 &
> >>> time ./trunc_test baz 100000000 &
> >>>
> >>> I was wondering if anyone had any suggestions on what to poke at next
> >>> to try and figure out what is going on.
> >
> > So I realized I could use sysrq to provide some more debug
> > information. When the system locks up I get the following output
> > from 't'
> >
> > [ 497.499249] usb-storage D 00000000 0 671 5
> > 773 670 (L-TLB)
> > [ 497.506930] Call Trace:
> > [ 497.509372] [C3F35A60] [C00083AC] __switch_to+0x28/0x40
> > [ 497.514608] [C3F35A80] [C01F4B78] schedule+0x324/0x6bc
> > [ 497.519756] [C3F35AC0] [C01F5D6C] schedule_timeout+0x6c/0xd0
> > [ 497.525426] [C3F35B00] [C01F5C9C] io_schedule_timeout+0x30/0x54
> > [ 497.531356] [C3F35B20] [C0050DE4] congestion_wait+0x64/0x8c
> > [ 497.536941] [C3F35B70] [C004A9F0] throttle_vm_writeout+0x1c/0x84
> > [ 497.542958] [C3F35B90] [C004F33C] shrink_zone+0xbb0/0xfe4
> > [ 497.548367] [C3F35D40] [C004F8F4] try_to_free_pages+0x184/0x2cc
> > [ 497.554298] [C3F35DB0] [C0049AA8] __alloc_pages+0x110/0x2c0
> > [ 497.559878] [C3F35E00] [C0060F84] cache_alloc_refill+0x394/0x694
> > [ 497.565900] [C3F35E30] [C00614A0] __kmalloc+0xc4/0xcc
> > [ 497.570961] [C3F35E40] [C01544D0] usb_alloc_urb+0x1c/0x5c
> > [ 497.576371] [C3F35E50] [C015520C] usb_sg_init+0x1a0/0x2f8
> > [ 497.581779] [C3F35EA0] [C0167318] usb_stor_bulk_transfer_sg+0x8c/
> > 0x138
> > [ 497.588317] [C3F35ED0] [C0167960] usb_stor_Bulk_transport+0x140/0x310
> > [ 497.594767] [C3F35F00] [C0167DCC] usb_stor_invoke_transport+0x2c/
> > 0x344
> > [ 497.601303] [C3F35F50] [C0166B2C] usb_stor_transparent_scsi_command
> > +0x10/0x20
> > [ 497.608449] [C3F35F60] [C0168498] usb_stor_control_thread+0x1f8/0x290
> > [ 497.614900] [C3F35FC0] [C0033E48] kthread+0xf4/0x130
> > [ 497.619876] [C3F35FF0] [C001093C] kernel_thread+0x44/0x60
> > [ 497.625285] sh D 3009C7EC 0 718 1
>
> [...]
>
> > and from 'm'
> >
> > [ 731.834529] Show Memory
> > [ 731.836968] Mem-info:
> > [ 731.839234] DMA per-cpu:
> > [ 731.841768] CPU 0: Hot: hi: 18, btch: 3 usd: 3 Cold:
> > hi: 6, btch: 1 usd: 2
> > [ 731.850206] Active:1510 inactive:11309 dirty:7188 writeback:3330
> > unstable:0 free:1009 slab:1671 mapped:110 pagetables:19
> > [ 731.861075] DMA free:4036kB min:4096kB low:5120kB high:6144kB
> > active:6040kB inactive:45236kB present:65024kB pages_scanned:292
> > all_unreclaimable? no
> > [ 731.874363] lowmem_reserve[]: 0 0
> > [ 731.877685] DMA: 1*4kB 0*8kB 0*16kB 0*32kB 1*64kB 1*128kB 1*256kB
> > 1*512kB 1*1024kB 1*2048kB 0*4096kB = 4036kB
> > [ 731.887669] Free swap: 0kB
> > [ 731.893913] 16384 pages of RAM
> > [ 731.896963] 798 reserved pages
> > [ 731.900011] 10946 pages shared
> > [ 731.903058] 0 pages swap cached
> >
> > It seems like usb-storage and aio are completely off in the weeds.
> > Ideas?
>
> It seems usb-storage should remove some kmalloc and use mempool() for
> urb... Is someone working on this? And idea?
I think Pete said that we're supposed to be using GFP_NOIO in there.
Not that it'll help much: the VM calls throttle_vm_writeout() for GFP_NOIO
and GFP_NOFS allocations, which is a bug. Because if the caller holds
locks which prevent filesystem or IO progress, we deadlock.
I'll fix the VM if someone else fixes USB ;)
next prev parent reply other threads:[~2007-02-21 20:58 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-16 19:54 Kumar Gala
2007-02-18 16:10 ` OGAWA Hirofumi
2007-02-19 21:58 ` Kumar Gala
2007-02-19 22:19 ` OGAWA Hirofumi
2007-02-19 22:27 ` Kumar Gala
2007-02-20 17:20 ` OGAWA Hirofumi
2007-02-19 22:06 ` Kumar Gala
2007-02-21 20:18 ` OGAWA Hirofumi
2007-02-21 20:57 ` Andrew Morton [this message]
2007-02-21 21:22 ` [linux-usb-devel] " Alan Stern
2007-02-21 21:31 ` Andrew Morton
2007-02-21 21:50 ` Alan Stern
2007-02-21 22:54 ` Andrew Morton
2007-02-22 7:40 ` Kumar Gala
2007-02-22 18:20 ` Kumar Gala
2007-02-22 21:57 ` Andrew Morton
[not found] <fa.bxsB54F+7+006rE+o/VWUj5keQk@ifi.uio.no>
2007-02-16 23:10 ` Robert Hancock
2007-02-17 5:05 ` Kumar Gala
[not found] ` <fa.zK5W70l1vhk1YNxuwxFwZ8t1uIs@ifi.uio.no>
[not found] ` <fa.qFxa41A3LU3cQ19L+5DTEFMtCEY@ifi.uio.no>
2007-02-20 5:28 ` Robert Hancock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070221125736.e5ff4206.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=galak@kernel.crashing.org \
--cc=gregkh@suse.de \
--cc=hirofumi@mail.parknet.co.jp \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb-devel@lists.sourceforge.net \
--cc=zaitcev@redhat.com \
--subject='Re: 2.6.20 kernel hang with USB drive and vfat doing ftruncate' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).