Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jan.koester
Linux
Commits
f2e2013f
Commit
f2e2013f
authored
10 years ago
by
Vineet Gupta
Browse files
Options
Downloads
Patches
Plain Diff
ARC: mem init spring cleaning - No functional changes
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
a44ec8bd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arc/mm/init.c
+5
-4
5 additions, 4 deletions
arch/arc/mm/init.c
with
5 additions
and
4 deletions
arch/arc/mm/init.c
+
5
−
4
View file @
f2e2013f
...
...
@@ -71,7 +71,7 @@ early_param("initrd", early_initrd);
*/
void
__init
setup_arch_memory
(
void
)
{
unsigned
long
zones_size
[
MAX_NR_ZONES
]
=
{
0
,
0
}
;
unsigned
long
zones_size
[
MAX_NR_ZONES
];
unsigned
long
end_mem
=
CONFIG_LINUX_LINK_BASE
+
arc_mem_sz
;
init_mm
.
start_code
=
(
unsigned
long
)
_text
;
...
...
@@ -90,7 +90,7 @@ void __init setup_arch_memory(void)
/*------------- externs in mm need setting up ---------------*/
/* first page of system - kernel .vector starts here */
min_low_pfn
=
PFN_DOWN
(
CONFIG_LINUX_LINK_BA
SE
)
;
min_low_pfn
=
ARCH_PFN_OFF
SE
T
;
/* Last usable page of low mem (no HIGHMEM yet for ARC port) */
max_low_pfn
=
max_pfn
=
PFN_DOWN
(
end_mem
);
...
...
@@ -111,7 +111,7 @@ void __init setup_arch_memory(void)
/*-------------- node setup --------------------------------*/
memset
(
zones_size
,
0
,
sizeof
(
zones_size
));
zones_size
[
ZONE_NORMAL
]
=
max_
low_pfn
-
min_low_pfn
;
zones_size
[
ZONE_NORMAL
]
=
max_
mapnr
;
/*
* We can't use the helper free_area_init(zones[]) because it uses
...
...
@@ -123,6 +123,8 @@ void __init setup_arch_memory(void)
zones_size
,
/* num pages per zone */
min_low_pfn
,
/* first pfn of node */
NULL
);
/* NO holes */
high_memory
=
(
void
*
)
end_mem
;
}
/*
...
...
@@ -133,7 +135,6 @@ void __init setup_arch_memory(void)
*/
void
__init
mem_init
(
void
)
{
high_memory
=
(
void
*
)(
CONFIG_LINUX_LINK_BASE
+
arc_mem_sz
);
free_all_bootmem
();
mem_init_print_info
(
NULL
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment