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
6ce37a58
Commit
6ce37a58
authored
Jul 28, 2008
by
Ingo Molnar
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'x86/crashdump' into x86/urgent
parents
d7ba11d0
91467bdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
arch/x86/kernel/setup.c
arch/x86/kernel/setup.c
+9
-4
No files found.
arch/x86/kernel/setup.c
View file @
6ce37a58
...
@@ -788,10 +788,6 @@ void __init setup_arch(char **cmdline_p)
...
@@ -788,10 +788,6 @@ void __init setup_arch(char **cmdline_p)
initmem_init
(
0
,
max_pfn
);
initmem_init
(
0
,
max_pfn
);
#ifdef CONFIG_X86_64
dma32_reserve_bootmem
();
#endif
#ifdef CONFIG_ACPI_SLEEP
#ifdef CONFIG_ACPI_SLEEP
/*
/*
* Reserve low memory region for sleep support.
* Reserve low memory region for sleep support.
...
@@ -806,6 +802,15 @@ void __init setup_arch(char **cmdline_p)
...
@@ -806,6 +802,15 @@ void __init setup_arch(char **cmdline_p)
#endif
#endif
reserve_crashkernel
();
reserve_crashkernel
();
#ifdef CONFIG_X86_64
/*
* dma32_reserve_bootmem() allocates bootmem which may conflict
* with the crashkernel command line, so do that after
* reserve_crashkernel()
*/
dma32_reserve_bootmem
();
#endif
reserve_ibft_region
();
reserve_ibft_region
();
#ifdef CONFIG_KVM_CLOCK
#ifdef CONFIG_KVM_CLOCK
...
...
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