Skip to content

Commit

Permalink
x86/mm: Fix the argument passed to sync_global_pgds()
Browse files Browse the repository at this point in the history
The address range of sync_global_pgds() should be [start, end],
but we pass [start, end) to this function.

Signed-off-by: Wen Congyang <wency@cn.fujitsu.com>
Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Jiang Liu <liuj97@gmail.com>
Cc: Minchan Kim <minchan.kim@gmail.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
  • Loading branch information
Wen Congyang authored and Ingo Molnar committed Jan 24, 2013
1 parent 602e018 commit f73568a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/mm/init_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ kernel_physical_mapping_init(unsigned long start,
}

if (pgd_changed)
sync_global_pgds(addr, end);
sync_global_pgds(addr, end - 1);

__flush_tlb_all();

Expand Down Expand Up @@ -981,7 +981,7 @@ vmemmap_populate(struct page *start_page, unsigned long size, int node)
}

}
sync_global_pgds((unsigned long)start_page, end);
sync_global_pgds((unsigned long)start_page, end - 1);
return 0;
}

Expand Down

0 comments on commit f73568a

Please sign in to comment.