public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Chris Friesen <chris.friesen@genband.com>
To: "J.Hwan Kim" <frog1120@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: allocation of contiguous memory in kernel mode
Date: Mon, 13 Aug 2012 16:02:50 -0600	[thread overview]
Message-ID: <5029798A.5000605@genband.com> (raw)
In-Reply-To: <5023DB76.1030908@gmail.com>

On 08/09/2012 09:47 AM, J.Hwan Kim wrote:
> Hi, everyone
>
> I wish to alloc physically contiguous memory in kernel mode.
> I used the __get_free_pages(gfp_mask, order) function,
> but it fails occasionary.
> I guess it is caused by memory fragmentation.
> My code is kernel driver module which cannot use
> bootmem allocation and its platform is x86_64.
> My server desktop has 20GB memory.
> I wish to know the method to allocate physically
> contiguous memory not failing by fragmentation.

There is no easy answer.

The most portable option is to change the requirements so that you don't 
need physically contiguous memory.  This is what most network devices 
did to handle jumbo frames.

Can you build a new kernel with your code added instead of using a module?

What about booting with artificially limited physical memory (on the 
kernel commandline) and then have the module explictly map in memory 
from above the usual memory limit?

Chris

      reply	other threads:[~2012-08-13 22:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-09 15:47 allocation of contiguous memory in kernel mode J.Hwan Kim
2012-08-13 22:02 ` Chris Friesen [this message]

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=5029798A.5000605@genband.com \
    --to=chris.friesen@genband.com \
    --cc=frog1120@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    /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