* Fix page allocation flags in grow_dev_page()
@ 2007-05-16 4:12 Christoph Lameter
2007-05-16 20:34 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Christoph Lameter @ 2007-05-16 4:12 UTC (permalink / raw)
To: akpm; +Cc: linux-mm, hugh
Grow dev page simply passes GFP_NOFS to find_or_create_page. This means the
allocation of radix tree nodes is done with GFP_NOFS and the allocation
of a new page is done using GFP_NOFS.
The mapping has a flags field that contains the necessary allocation flags for
the page cache allocation. These need to be consulted in order to get DMA
and HIGHMEM allocations etc right. And yes a blockdev could be allowing
Highmem allocations if its a ramdisk.
Cc: Hugh Dickins <hugh@veritas.com>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
---
fs/buffer.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: vps/fs/buffer.c
===================================================================
--- vps.orig/fs/buffer.c 2007-05-15 15:47:32.000000000 -0700
+++ vps/fs/buffer.c 2007-05-15 15:48:36.000000000 -0700
@@ -981,7 +981,8 @@ grow_dev_page(struct block_device *bdev,
struct page *page;
struct buffer_head *bh;
- page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
+ page = find_or_create_page(inode->i_mapping, index,
+ mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
if (!page)
return NULL;
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Fix page allocation flags in grow_dev_page()
2007-05-16 4:12 Fix page allocation flags in grow_dev_page() Christoph Lameter
@ 2007-05-16 20:34 ` Andrew Morton
2007-05-16 20:42 ` Christoph Lameter
2007-05-16 21:48 ` Mel Gorman
0 siblings, 2 replies; 4+ messages in thread
From: Andrew Morton @ 2007-05-16 20:34 UTC (permalink / raw)
To: Christoph Lameter; +Cc: linux-mm, hugh, Mel Gorman
On Tue, 15 May 2007 21:12:41 -0700 (PDT)
Christoph Lameter <clameter@sgi.com> wrote:
> Grow dev page simply passes GFP_NOFS to find_or_create_page. This means the
> allocation of radix tree nodes is done with GFP_NOFS and the allocation
> of a new page is done using GFP_NOFS.
>
> The mapping has a flags field that contains the necessary allocation flags for
> the page cache allocation. These need to be consulted in order to get DMA
> and HIGHMEM allocations etc right. And yes a blockdev could be allowing
> Highmem allocations if its a ramdisk.
>
> Cc: Hugh Dickins <hugh@veritas.com>
> Signed-off-by: Christoph Lameter <clameter@sgi.com>
>
> ---
> fs/buffer.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> Index: vps/fs/buffer.c
> ===================================================================
> --- vps.orig/fs/buffer.c 2007-05-15 15:47:32.000000000 -0700
> +++ vps/fs/buffer.c 2007-05-15 15:48:36.000000000 -0700
> @@ -981,7 +981,8 @@ grow_dev_page(struct block_device *bdev,
> struct page *page;
> struct buffer_head *bh;
>
> - page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
> + page = find_or_create_page(inode->i_mapping, index,
> + mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
> if (!page)
> return NULL;
>
erk. When I fixed this up against Mel's stuff I ended up with:
page = find_or_create_page(inode->i_mapping, index,
(mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS) |
__GFP_RECLAIMABLE);
which led to zillions of these:
static inline int allocflags_to_migratetype(gfp_t gfp_flags)
{
WARN_ON((gfp_flags & GFP_MOVABLE_MASK) == GFP_MOVABLE_MASK);
so I assume that mapping_gfp_mask() already had __GFP_MOVABLE set.
So... which is it to be?
<looks at the comments>
#define __GFP_RECLAIMABLE ((__force gfp_t)0x80000u) /* Page is reclaimable */
#define __GFP_MOVABLE ((__force gfp_t)0x100000u) /* Page is movable */
well these pages are both reclaimable and moveable. Sigh.
I'll just remove the __GFP_RECLAIMABLE from the above, see what that does.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Fix page allocation flags in grow_dev_page()
2007-05-16 20:34 ` Andrew Morton
@ 2007-05-16 20:42 ` Christoph Lameter
2007-05-16 21:48 ` Mel Gorman
1 sibling, 0 replies; 4+ messages in thread
From: Christoph Lameter @ 2007-05-16 20:42 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-mm, hugh, Mel Gorman
On Wed, 16 May 2007, Andrew Morton wrote:
> erk. When I fixed this up against Mel's stuff I ended up with:
>
> page = find_or_create_page(inode->i_mapping, index,
> (mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS) |
> __GFP_RECLAIMABLE);
>
> static inline int allocflags_to_migratetype(gfp_t gfp_flags)
> {
> WARN_ON((gfp_flags & GFP_MOVABLE_MASK) == GFP_MOVABLE_MASK);
>
> so I assume that mapping_gfp_mask() already had __GFP_MOVABLE set.
>
>
> So... which is it to be?
>
Yup. This was already reported during my review to Mel.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Fix page allocation flags in grow_dev_page()
2007-05-16 20:34 ` Andrew Morton
2007-05-16 20:42 ` Christoph Lameter
@ 2007-05-16 21:48 ` Mel Gorman
1 sibling, 0 replies; 4+ messages in thread
From: Mel Gorman @ 2007-05-16 21:48 UTC (permalink / raw)
To: Andrew Morton; +Cc: Christoph Lameter, linux-mm, hugh
On (16/05/07 13:34), Andrew Morton didst pronounce:
> On Tue, 15 May 2007 21:12:41 -0700 (PDT)
> Christoph Lameter <clameter@sgi.com> wrote:
>
> > Grow dev page simply passes GFP_NOFS to find_or_create_page. This means the
> > allocation of radix tree nodes is done with GFP_NOFS and the allocation
> > of a new page is done using GFP_NOFS.
> >
> > The mapping has a flags field that contains the necessary allocation flags for
> > the page cache allocation. These need to be consulted in order to get DMA
> > and HIGHMEM allocations etc right. And yes a blockdev could be allowing
> > Highmem allocations if its a ramdisk.
> >
> > Cc: Hugh Dickins <hugh@veritas.com>
> > Signed-off-by: Christoph Lameter <clameter@sgi.com>
> >
> > ---
> > fs/buffer.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > Index: vps/fs/buffer.c
> > ===================================================================
> > --- vps.orig/fs/buffer.c 2007-05-15 15:47:32.000000000 -0700
> > +++ vps/fs/buffer.c 2007-05-15 15:48:36.000000000 -0700
> > @@ -981,7 +981,8 @@ grow_dev_page(struct block_device *bdev,
> > struct page *page;
> > struct buffer_head *bh;
> >
> > - page = find_or_create_page(inode->i_mapping, index, GFP_NOFS);
> > + page = find_or_create_page(inode->i_mapping, index,
> > + mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS);
> > if (!page)
> > return NULL;
> >
>
> erk. When I fixed this up against Mel's stuff I ended up with:
>
> page = find_or_create_page(inode->i_mapping, index,
> (mapping_gfp_mask(inode->i_mapping) & ~__GFP_FS) |
> __GFP_RECLAIMABLE);
>
> which led to zillions of these:
>
> static inline int allocflags_to_migratetype(gfp_t gfp_flags)
> {
> WARN_ON((gfp_flags & GFP_MOVABLE_MASK) == GFP_MOVABLE_MASK);
>
> so I assume that mapping_gfp_mask() already had __GFP_MOVABLE set.
>
>
> So... which is it to be?
>
> <looks at the comments>
>
> #define __GFP_RECLAIMABLE ((__force gfp_t)0x80000u) /* Page is reclaimable */
> #define __GFP_MOVABLE ((__force gfp_t)0x100000u) /* Page is movable */
>
> well these pages are both reclaimable and moveable. Sigh.
>
> I'll just remove the __GFP_RECLAIMABLE from the above, see what that does.
In the last set of patches I sent to Christoph, the last patch flags pagecache
allocations as GFP_X_PAGECACHE. The grow_dev_page() annotation gets flagged
as GFP_NOFS_PAGECACHE (implemented as __GFP_MOVABLE) so the fix for this
problem is in the pipeline.
--
--
Mel Gorman
Part-time Phd Student Linux Technology Center
University of Limerick IBM Dublin Software Lab
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-05-16 21:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-16 4:12 Fix page allocation flags in grow_dev_page() Christoph Lameter
2007-05-16 20:34 ` Andrew Morton
2007-05-16 20:42 ` Christoph Lameter
2007-05-16 21:48 ` Mel Gorman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox