x86: move save_mr() into .meminit.text
Impact: cleanup, save memory The function is only being called from boot or memory hotplug paths. Signed-off-by: Jan Beulich <jbeulich@novell.com> LKML-Reference: <49B910B6.76E4.0078.0@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
13c6c53282
commit
dc9dd5cc85
|
@ -94,9 +94,9 @@ struct map_range {
|
||||||
#define NR_RANGE_MR 5
|
#define NR_RANGE_MR 5
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int save_mr(struct map_range *mr, int nr_range,
|
static int __meminit save_mr(struct map_range *mr, int nr_range,
|
||||||
unsigned long start_pfn, unsigned long end_pfn,
|
unsigned long start_pfn, unsigned long end_pfn,
|
||||||
unsigned long page_size_mask)
|
unsigned long page_size_mask)
|
||||||
{
|
{
|
||||||
if (start_pfn < end_pfn) {
|
if (start_pfn < end_pfn) {
|
||||||
if (nr_range >= NR_RANGE_MR)
|
if (nr_range >= NR_RANGE_MR)
|
||||||
|
|
Loading…
Reference in New Issue