linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* where to get ZONE_MOVABLE pathces?
  2007-10-09  9:56     ` Nick Piggin
@ 2007-10-10  3:36       ` Jacky(GuangXiang  Lee)
  2007-10-10 10:32         ` Mel Gorman
  0 siblings, 1 reply; 4+ messages in thread
From: Jacky(GuangXiang  Lee) @ 2007-10-10  3:36 UTC (permalink / raw)
  To: linux-mm

hi list ,

I am looking for Mel's patch about ZONE_MOVABLE
http://kerneltrap.org/mailarchive/linux-kernel/2007/1/25/48006


Who can tell me where to download those patches?
Thanks a lot.
Jacky




--
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: where to get ZONE_MOVABLE pathces?
  2007-10-10  3:36       ` where to get ZONE_MOVABLE pathces? Jacky(GuangXiang  Lee)
@ 2007-10-10 10:32         ` Mel Gorman
  0 siblings, 0 replies; 4+ messages in thread
From: Mel Gorman @ 2007-10-10 10:32 UTC (permalink / raw)
  To: Jacky(GuangXiang  Lee); +Cc: linux-mm

On (10/10/07 11:36), Jacky(GuangXiang  Lee) didst pronounce:
> hi list ,
> 
> I am looking for Mel's patch about ZONE_MOVABLE
> http://kerneltrap.org/mailarchive/linux-kernel/2007/1/25/48006
> 
> Who can tell me where to download those patches?

They are already in mainline. Check out the latest kernel and look at
Documentation/kernel-parameters.txt for the kernelcore= and movablecore=
parameters.

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

* Re: where to get ZONE_MOVABLE pathces?
       [not found]                   ` <20071016125035.GA4294@skynet.ie>
@ 2007-10-17  7:06                     ` Jacky(GuangXiang  Lee)
  2007-10-17 10:04                       ` Mel Gorman
  0 siblings, 1 reply; 4+ messages in thread
From: Jacky(GuangXiang  Lee) @ 2007-10-17  7:06 UTC (permalink / raw)
  To: Mel Gorman; +Cc: linux-mm

----- Original Message ----- 
From: "Mel Gorman" <mel@skynet.ie>
To: "Jacky(GuangXiang Lee)" <gxli@arca.com.cn>
Sent: Tuesday, October 16, 2007 8:50 PM
Subject: Re: where to get ZONE_MOVABLE pathces?



Can I precisely make the RAM range of a specific DIMM to be a independent
zone?
e.x., I have a machine with 2G RAM(in place of 2 DIMM socket , each socket
is plugged with 1G RAM)
then I divided in kernel startup:
 ZONE_DMA: 0~16M
ZONE_DMA32: 16M~1G
ZONE_READONLY:1G~2G (supposing this is my new created zone)
hence the third zone corresponds to a DIMM hardware.
right?


> On (16/10/07 16:24), Jacky(GuangXiang  Lee) didst pronounce:
> > hi Mel,
> > I feel I need more knowledgement about node/zone than reading your that
> > book.
>
> Very well, but it is reaching the point where you should consider
> mailing linux-mm or kernelnewbies so that others will see the answers.
>
> > I have some stupid questions please:
> > 1)In a typical server machine, what are the maximum sizes of each nodes?
Is
> > there some materials about this exists?
>
> The size of the node is only limited by the size of the physical address
> space supported by a machine.
>
> > 2)Are all nodes in the same physical space? e.x., node 1: 0~2G, node 2:
> > 2G~4G,node 3 :4G~6G...?
>
> Not necessarily. Nodes can be at any part of the physical address space.
> They are not necessarily contiguous and nodes can actually overlap in
> some cases. For example, this can happen
>
> Node 0: 0-2GB
> Node 1: 3-6GB
> Node 0: 8-10GB
>
> > 3)In a specific node, does its zones be divided arbitrarily?
> >
>
> No, zones holes pages that have a particular addressing limitation and
> what they mean varies slightly between architectures. On i386, ZONE_DMA
> is 16MB because there are devices that can only use a 24 bit physical
> address. On x86_64, you have ZONE_DMA32 because there are 32 bit devices
> on 64 bit machines.
>
> > Can you give some detailed materials or explain more minutely?
>
> I'm not aware of recent detailed information on the subject. However, if
> you follow the code path starting from
> mm/page_alloc.c#free_area_init_nodes(), you'll see how the zones get
> initialised at boot-time. This is the arch-independent zone-sizing code
> that is used by a number of architectures. You'll see how the arch is
> responsible for passing in an array of PFNs denoting where zones end and
> how this information is used to size zones.
>
> -- 
> 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

* Re: where to get ZONE_MOVABLE pathces?
  2007-10-17  7:06                     ` where to get ZONE_MOVABLE pathces? Jacky(GuangXiang  Lee)
@ 2007-10-17 10:04                       ` Mel Gorman
  0 siblings, 0 replies; 4+ messages in thread
From: Mel Gorman @ 2007-10-17 10:04 UTC (permalink / raw)
  To: Jacky(GuangXiang  Lee); +Cc: linux-mm

On Wed, 2007-10-17 at 15:06 +0800, Jacky(GuangXiang Lee) wrote:

> Can I precisely make the RAM range of a specific DIMM to be a independent
> zone?

Technically, yes as nothing stops you. Again, look at what
mm/page_alloc.c#free_area_init_nodes() does to setup each of the zones
as they currently exist.

Also, to reiterate, using a zone is easiest for a prototype but it's
unlikely to be the final solution. You probably want to use page
migration and a page-allocation callback from your driver to move pages
you detect are read-only to flash.

> e.x., I have a machine with 2G RAM(in place of 2 DIMM socket , each socket
> is plugged with 1G RAM)
> then I divided in kernel startup:
>  ZONE_DMA: 0~16M
> ZONE_DMA32: 16M~1G
> ZONE_READONLY:1G~2G (supposing this is my new created zone)
> hence the third zone corresponds to a DIMM hardware.
> right?
> 

You cannot assume that PFN ranges correspond to DIMMs in the normal
case. However, in your specific case where you have a piece of flash
that you want to use as a DIMM, you know exactly what the PFN ranges
are.

-- 
Mel Gorman

--
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-10-17 10:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20071011075743.GA4654@skynet.ie>
     [not found] ` <01f601c80be8$39537c70$3708a8c0@arcapub.arca.com>
     [not found]   ` <20071011095622.GB4654@skynet.ie>
     [not found]     ` <040c01c80cab$02e6a4f0$3708a8c0@arcapub.arca.com>
     [not found]       ` <20071012101955.GA27254@skynet.ie>
     [not found]         ` <003601c80ee8$c6487ce0$3708a8c0@arcapub.arca.com>
     [not found]           ` <20071015092426.GA31490@skynet.ie>
     [not found]             ` <016401c80f21$bf0e6c30$3708a8c0@arcapub.arca.com>
     [not found]               ` <20071015130744.GA26741@skynet.ie>
     [not found]                 ` <024a01c80fcd$ff785e50$3708a8c0@arcapub.arca.com>
     [not found]                   ` <20071016125035.GA4294@skynet.ie>
2007-10-17  7:06                     ` where to get ZONE_MOVABLE pathces? Jacky(GuangXiang  Lee)
2007-10-17 10:04                       ` Mel Gorman
2007-10-04  3:59 [00/18] Virtual Compound Page Support V2 Christoph Lameter
2007-10-09  8:46 ` [13/18] x86_64: Allow fallback for the stack Nick Piggin
2007-10-10  1:26   ` Christoph Lameter
2007-10-09  9:56     ` Nick Piggin
2007-10-10  3:36       ` where to get ZONE_MOVABLE pathces? Jacky(GuangXiang  Lee)
2007-10-10 10:32         ` Mel Gorman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).