mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
[PATCH] register hot-added memory to iomem resource
Register hot-added memory to iomem_resource. With this, /proc/iomem can show hot-added memory. Note: kdump uses /proc/iomem to catch memory range when it is installed. So, kdump should be re-installed after /proc/iomem change. Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Vivek Goyal <vgoyal@in.ibm.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
9af3c2dea3
commit
0a54703904
1 changed files with 25 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
#include <linux/memory_hotplug.h>
|
||||
#include <linux/highmem.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <linux/ioport.h>
|
||||
|
||||
#include <asm/tlbflush.h>
|
||||
|
||||
|
@ -192,6 +193,27 @@ static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
|
|||
return;
|
||||
}
|
||||
|
||||
/* add this memory to iomem resource */
|
||||
static void register_memory_resource(u64 start, u64 size)
|
||||
{
|
||||
struct resource *res;
|
||||
|
||||
res = kzalloc(sizeof(struct resource), GFP_KERNEL);
|
||||
BUG_ON(!res);
|
||||
|
||||
res->name = "System RAM";
|
||||
res->start = start;
|
||||
res->end = start + size - 1;
|
||||
res->flags = IORESOURCE_MEM;
|
||||
if (request_resource(&iomem_resource, res) < 0) {
|
||||
printk("System RAM resource %llx - %llx cannot be added\n",
|
||||
(unsigned long long)res->start, (unsigned long long)res->end);
|
||||
kfree(res);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
int add_memory(int nid, u64 start, u64 size)
|
||||
{
|
||||
pg_data_t *pgdat = NULL;
|
||||
|
@ -217,6 +239,9 @@ int add_memory(int nid, u64 start, u64 size)
|
|||
/* we online node here. we have no error path from here. */
|
||||
node_set_online(nid);
|
||||
|
||||
/* register this memory as resource */
|
||||
register_memory_resource(start, size);
|
||||
|
||||
return ret;
|
||||
error:
|
||||
/* rollback pgdat allocation and others */
|
||||
|
|
Loading…
Reference in a new issue