| To: | Fengguang Wu <fengguang.wu@xxxxxxxxx> |
|---|---|
| Subject: | Re: [PATCH] mm: add gfp_mask parameter to vm_map_ram() |
| From: | Dave Chinner <david@xxxxxxxxxxxxx> |
| Date: | Thu, 14 Jun 2012 12:15:47 +1000 |
| Cc: | Dave Chinner <dchinner@xxxxxxxxxx>, Christoph Hellwig <hch@xxxxxxxxxxxxx>, linux-fsdevel@xxxxxxxxxxxxxxx, LKML <linux-kernel@xxxxxxxxxxxxxxx>, Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>, Tejun Heo <tj@xxxxxxxxxx>, Linux Memory Management List <linux-mm@xxxxxxxxx>, xfs@xxxxxxxxxxx |
| In-reply-to: | <20120614014902.GB7289@localhost> |
| References: | <20120612012134.GA7706@localhost> <20120613123932.GA1445@localhost> <20120614012026.GL3019@xxxxxxxxxxxxxxxx> <20120614014902.GB7289@localhost> |
| User-agent: | Mutt/1.5.21 (2010-09-15) |
On Thu, Jun 14, 2012 at 09:49:02AM +0800, Fengguang Wu wrote:
> On Thu, Jun 14, 2012 at 11:20:26AM +1000, Dave Chinner wrote:
> >
> > Bug in vm_map_ram - it does an unconditional GFP_KERNEL allocation
> > here, and we are in a GFP_NOFS context. We can't pass a gfp_mask to
> > vm_map_ram(), so until vm_map_ram() grows that we can't fix it...
>
> This trivial patch should fix it.
>
> The only behavior change is the XFS part:
>
> @@ -406,7 +406,7 @@ _xfs_buf_map_pages(
>
> do {
> bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
> - -1, PAGE_KERNEL);
> + -1, GFP_NOFS, PAGE_KERNEL);
This function isn't always called in GFP_NOFS context - readahead
uses different memory allocation semantics (no retry, no warn), so
there are flags that tell it what to do. i.e.
- -1, PAGE_KERNEL);
+ -1, xb_to_gfp(flags),
PAGE_KERNEL);
Otherwise looks fine to me...
Cheers,
Dave.
--
Dave Chinner
david@xxxxxxxxxxxxx
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] mm: add gfp_mask parameter to vm_map_ram(), Minchan Kim |
|---|---|
| Next by Date: | Re: [PATCH] mm: add gfp_mask parameter to vm_map_ram(), Tejun Heo |
| Previous by Thread: | Re: [PATCH] mm: add gfp_mask parameter to vm_map_ram(), Andreas Dilger |
| Next by Thread: | [PATCH 0/2 v2] Subject xfs: rename log structure and remove xlog_t typedef., tinguely |
| Indexes: | [Date] [Thread] [Top] [All Lists] |