Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 101753
b: refs/heads/master
c: 92ecd17
h: refs/heads/master
i:
  101751: 7430bc1
v: v3
  • Loading branch information
Nathan Fontenot authored and Paul Mackerras committed Jul 3, 2008
1 parent e42b1a7 commit e2f62f6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4b6e805e4a327c7231ab6a7739d6344d68d231d0
refs/heads/master: 92ecd1790b10e12015070e33a0f70493d51aca50
36 changes: 17 additions & 19 deletions trunk/arch/powerpc/platforms/pseries/hotplug-memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
static int pseries_remove_memory(struct device_node *np)
{
const char *type;
const unsigned int *my_index;
const unsigned int *regs;
unsigned long base;
unsigned int lmb_size;
u64 start_pfn, start;
struct zone *zone;
int ret = -EINVAL;
Expand All @@ -32,17 +33,16 @@ static int pseries_remove_memory(struct device_node *np)
return 0;

/*
* Find the memory index and size of the removing section
* Find the bae address and size of the lmb
*/
my_index = of_get_property(np, "ibm,my-drc-index", NULL);
if (!my_index)
return ret;

regs = of_get_property(np, "reg", NULL);
if (!regs)
return ret;

start_pfn = section_nr_to_pfn(*my_index & 0xffff);
base = *(unsigned long *)regs;
lmb_size = regs[3];

start_pfn = base >> PFN_SECTION_SHIFT;
zone = page_zone(pfn_to_page(start_pfn));

/*
Expand All @@ -54,28 +54,29 @@ static int pseries_remove_memory(struct device_node *np)
* to sysfs "state" file and we can't remove sysfs entries
* while writing to it. So we have to defer it to here.
*/
ret = __remove_pages(zone, start_pfn, regs[3] >> PAGE_SHIFT);
ret = __remove_pages(zone, start_pfn, lmb_size >> PAGE_SHIFT);
if (ret)
return ret;

/*
* Update memory regions for memory remove
*/
lmb_remove(start_pfn << PAGE_SHIFT, regs[3]);
lmb_remove(base, lmb_size);

/*
* Remove htab bolted mappings for this section of memory
*/
start = (unsigned long)__va(start_pfn << PAGE_SHIFT);
ret = remove_section_mapping(start, start + regs[3]);
start = (unsigned long)__va(base);
ret = remove_section_mapping(start, start + lmb_size);
return ret;
}

static int pseries_add_memory(struct device_node *np)
{
const char *type;
const unsigned int *my_index;
const unsigned int *regs;
unsigned long base;
unsigned int lmb_size;
u64 start_pfn;
int ret = -EINVAL;

Expand All @@ -87,22 +88,19 @@ static int pseries_add_memory(struct device_node *np)
return 0;

/*
* Find the memory index and size of the added section
* Find the base and size of the lmb
*/
my_index = of_get_property(np, "ibm,my-drc-index", NULL);
if (!my_index)
return ret;

regs = of_get_property(np, "reg", NULL);
if (!regs)
return ret;

start_pfn = section_nr_to_pfn(*my_index & 0xffff);
base = *(unsigned long *)regs;
lmb_size = regs[3];

/*
* Update memory region to represent the memory add
*/
lmb_add(start_pfn << PAGE_SHIFT, regs[3]);
lmb_add(base, lmb_size);
return 0;
}

Expand Down

0 comments on commit e2f62f6

Please sign in to comment.