Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3159e7d6
Commit
3159e7d6
authored
Sep 05, 2008
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sh: Add support for memory hot-remove.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
5840263e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
arch/sh/mm/Kconfig
arch/sh/mm/Kconfig
+4
-0
arch/sh/mm/init.c
arch/sh/mm/init.c
+17
-0
No files found.
arch/sh/mm/Kconfig
View file @
3159e7d6
...
@@ -134,6 +134,10 @@ config ARCH_ENABLE_MEMORY_HOTPLUG
...
@@ -134,6 +134,10 @@ config ARCH_ENABLE_MEMORY_HOTPLUG
def_bool y
def_bool y
depends on SPARSEMEM
depends on SPARSEMEM
config ARCH_ENABLE_MEMORY_HOTREMOVE
def_bool y
depends on SPARSEMEM
config ARCH_MEMORY_PROBE
config ARCH_MEMORY_PROBE
def_bool y
def_bool y
depends on MEMORY_HOTPLUG
depends on MEMORY_HOTPLUG
...
...
arch/sh/mm/init.c
View file @
3159e7d6
...
@@ -292,4 +292,21 @@ int memory_add_physaddr_to_nid(u64 addr)
...
@@ -292,4 +292,21 @@ int memory_add_physaddr_to_nid(u64 addr)
}
}
EXPORT_SYMBOL_GPL
(
memory_add_physaddr_to_nid
);
EXPORT_SYMBOL_GPL
(
memory_add_physaddr_to_nid
);
#endif
#endif
#ifdef CONFIG_MEMORY_HOTREMOVE
int
remove_memory
(
u64
start
,
u64
size
)
{
unsigned
long
start_pfn
=
start
>>
PAGE_SHIFT
;
unsigned
long
end_pfn
=
start_pfn
+
(
size
>>
PAGE_SHIFT
);
int
ret
;
ret
=
offline_pages
(
start_pfn
,
end_pfn
,
120
*
HZ
);
if
(
unlikely
(
ret
))
printk
(
"%s: Failed, offline_pages() == %d
\n
"
,
__func__
,
ret
);
return
ret
;
}
EXPORT_SYMBOL_GPL
(
remove_memory
);
#endif
#endif
#endif
/* CONFIG_MEMORY_HOTPLUG */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment