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
nexedi
linux
Commits
9060c05b
Commit
9060c05b
authored
Oct 28, 2011
by
Paul Mundt
Browse files
Options
Browse Files
Download
Plain Diff
Merge branches 'sh/core' and 'sh/kexec' into sh-latest
parents
d4d9781d
6988d647
41309b7a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
arch/sh/kernel/setup.c
arch/sh/kernel/setup.c
+6
-3
arch/sh/kernel/topology.c
arch/sh/kernel/topology.c
+1
-0
No files found.
arch/sh/kernel/setup.c
View file @
9060c05b
...
...
@@ -211,13 +211,16 @@ void __init __add_active_range(unsigned int nid, unsigned long start_pfn,
}
/*
*
We don't know which RAM region contains kernel data,
*
so we try it repeatedly and let the resource manager
* test it.
*
We don't know which RAM region contains kernel data or
*
the reserved crashkernel region, so try it repeatedly
*
and let the resource manager
test it.
*/
request_resource
(
res
,
&
code_resource
);
request_resource
(
res
,
&
data_resource
);
request_resource
(
res
,
&
bss_resource
);
#ifdef CONFIG_KEXEC
request_resource
(
res
,
&
crashk_res
);
#endif
/*
* Also make sure that there is a PMB mapping that covers this
...
...
arch/sh/kernel/topology.c
View file @
9060c05b
...
...
@@ -11,6 +11,7 @@
#include <linux/cpumask.h>
#include <linux/init.h>
#include <linux/percpu.h>
#include <linux/topology.h>
#include <linux/node.h>
#include <linux/nodemask.h>
...
...
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