[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-id: <482F1808.4060700@shaw.ca>
Date: Sat, 17 May 2008 11:38:16 -0600
From: Robert Hancock <hancockr@...w.ca>
To: Andrea Arcangeli <andrea@...ranet.com>
Cc: Arjan van de Ven <arjan@...ux.intel.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
NetDev <netdev@...r.kernel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Jeff Garzik <jgarzik@...ox.com>,
Jens Axboe <jens.axboe@...cle.com>, yang.shi@...driver.com
Subject: Re: Top kernel oopses/warnings for the week of May 16th 2008
Andrea Arcangeli wrote:
> On Fri, May 16, 2008 at 07:55:39PM -0600, Robert Hancock wrote:
>> Arjan van de Ven wrote:
>>> Rank 10: __alloc_pages
>>> Reported 16 times (31 total reports)
>>> Sleeping allocation in interrupt context, some in netlink, some in the
>>> nv sata driver
>>> This oops was last seen in version 2.6.25.3, and first seen in
>>> 2.6.18-rc1.
>>> More info:
>>> http://www.kerneloops.org/searchweek.php?search=__alloc_pages
>> In the case of the sata_nv error, it appears this is happening now because
>> blk_queue_bounce_limit is initializing emergency ISA pools which can't be
>> done under spinlock. This is happening because the code in
>> blk_queue_bounce_limit now thinks that a 32-bit DMA mask requires
>> allocating with GFP_DMA. This is only needed for a DMA mask less than
>> 32-bit, which is what the original code did. It looks like this was broken
>> by this commit:
>
> Looks like or you're certain? I ask because I had your exact same
> problem with a regression introduced in 2.6.25-rc, and my patch
> attempted to fix it. It looks like it wasn't enough to fix all of it,
> but at least it looked like to improve things a bit to reduce the
> regression impact without introducing any other problem compared to
> the previous 2.6.25-rc code.
What was the original patch that you were trying to fix? If it's this
one, it does seem to be wrong:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=419c434c35614609fd0c79d335c134bf4b88b30b
author Yang Shi <yang.shi@...driver.com>
Tue, 4 Mar 2008 10:20:51 +0000 (11:20 +0100)
committer Jens Axboe <jens.axboe@...cle.com>
Tue, 4 Mar 2008 10:20:51 +0000 (11:20 +0100)
Fix DMA access of block device in 64-bit kernel on some non-x86 systems
with 4GB or upper 4GB memory
Originally it was using the DMA path only for DMA masks of less than
32-bit. This change made it use that path for 32-bit or less. Looking
more closely it doesn't seem like your patch is really harmful, it just
doesn't completely repair the damage from the first one.
IMO both of these patches should just be reverted. The commit
description doesn't specify what arch the first one was trying to fix
but it seems to break x86_64 anyway..
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists