linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: girish <girishvg@gmail.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: Linux-MM@kvack.org
Subject: Re: why inode creation with GFP_HIGHUSER?
Date: Thu, 14 Sep 2006 07:27:47 +0900	[thread overview]
Message-ID: <34a75100609131527x458d7601x5aa885bb56b6bad6@mail.gmail.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0609131030580.17927@schroedinger.engr.sgi.com>

> > i'd like to know why page(s) for inodes are allocated with
> > GFP_HIGHUSER & not with GFP_USER mask? is there any particular need
> > that the address_space be set with GFP_HIGHUSER flag?
>
> GFP_HIGHUSER allows the use of HIGH memory but it does not require it. If
> the system has no HIGHMEM then we will just use regular memory.

i understand the policy of zone fallback. but in my case there is, in
fact bigger chunk, meory marked as high memory. please see below for
further explaination -

> > i intend to allocate highmem pages strictly to user processes. my idea
> > is to completely avoid kernel mapping for these pages. so, as a dirty
> > hack - i changed mapping_set_gfp_mask function not to honor
> > __GFP_HIGHMEM zone selector if __GFP_IO | __GFP_FS are set. in short i
> > replace  GFP_HIGHUSER with GFP_USER mask. with this change the kernel
> > comes to life. but i am still confused about the effect of this change
> > on system, that i am yet to see?
>
> I am not sure what you intend to do. The kernel already avoids mapping
> highmem pages into the kernel as much as possible.

that's the whole confusion. kernel is supposed to *avoid* allocating
from ZONE_HIGHMEM if there is some memory left in ZONE_DMA and/or
ZONE_NORMAL. but as i mentioned the zonelist selection that happens
based  on GFP_* mask (in this case GFP_HIGHUSER), makes __alloc_pages
to allocate from a list which has both HIGHMEM and DMA/NORMAL zones
listed in it. the zonelist looping/fallback is as implemented in
get_page_from_freelist (). to this function, the zonelist that is
passed contains both and in the order - HIGHMEM and DMA/NORMAL zones.
shouldn't it be NORMAl/DMA first and then HIGHMEM in the zonelist?

(ref: http://lxr.free-electrons.com/source/mm/page_alloc.c#883)

thanks.

--
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>

  reply	other threads:[~2006-09-13 22:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <34a75100609130734m68729bdaj30258c10edfa7947@mail.gmail.com>
2006-09-13 14:54 ` girish
2006-09-13 17:32   ` Christoph Lameter
2006-09-13 22:27     ` girish [this message]
2006-09-13 22:30       ` Christoph Lameter

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=34a75100609131527x458d7601x5aa885bb56b6bad6@mail.gmail.com \
    --to=girishvg@gmail.com \
    --cc=Linux-MM@kvack.org \
    --cc=clameter@sgi.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox