On Mon, 19 Jul 2010 22:55:08 -0500 Nathan Fontenot <nfont@xxxxxxxxxxxxxx> wrote: > Update the memory sysfs code that each sysfs memory directory is now > considered a memory block that can contain multiple memory sections per > memory block. The default size of each memory block is SECTION_SIZE_BITS > to maintain the current behavior of having a single memory section per > memory block (i.e. one sysfs directory per memory section). > > For architectures that want to have memory blocks span multiple > memory sections they need only define their own memory_block_size_bytes() > routine. > > Signed-off-by: Nathan Fontenot <nfont@xxxxxxxxxxxxxx> > --- > drivers/base/memory.c | 141 ++++++++++++++++++++++++++++++++++---------------- > 1 file changed, 98 insertions(+), 43 deletions(-) > > Index: linux-2.6/drivers/base/memory.c > =================================================================== > --- linux-2.6.orig/drivers/base/memory.c 2010-07-19 20:44:01.000000000 -0500 > +++ linux-2.6/drivers/base/memory.c 2010-07-19 21:12:22.000000000 -0500 > @@ -28,6 +28,14 @@ > #include <asm/uaccess.h> > > #define MEMORY_CLASS_NAME "memory" > +#define MIN_MEMORY_BLOCK_SIZE (1 << SECTION_SIZE_BITS) > + > +static int sections_per_block; > + > +static inline int base_memory_block_id(int section_nr) > +{ > + return (section_nr / sections_per_block) * sections_per_block; > +} > > static struct sysdev_class memory_sysdev_class = { > .name = MEMORY_CLASS_NAME, > @@ -82,22 +90,21 @@ EXPORT_SYMBOL(unregister_memory_isolate_ > * register_memory - Setup a sysfs device for a memory block > */ > static > -int register_memory(struct memory_block *memory, struct mem_section *section) > +int register_memory(struct memory_block *memory) > { > int error; > > memory->sysdev.cls = &memory_sysdev_class; > - memory->sysdev.id = __section_nr(section); > + memory->sysdev.id = memory->start_phys_index; I'm curious that this memory->start_phys_index can't overflow ? sysdev.id is 32bit. Thanks, -Kame -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>