diff options
author | Attilio Rao <attilio.rao@citrix.com> | 2012-08-21 21:22:38 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-09-12 15:33:06 +0200 |
commit | 7737b215ad0f94d20a87d98315da9f6cadaf35c9 (patch) | |
tree | ba7c20bfd9c6e002c7ebac9bec0657258ddedfa6 /arch/x86/mm | |
parent | 73090f8993a40a2f67fed1ab866a928c68cd3765 (diff) | |
download | linux-3.10-7737b215ad0f94d20a87d98315da9f6cadaf35c9.tar.gz linux-3.10-7737b215ad0f94d20a87d98315da9f6cadaf35c9.tar.bz2 linux-3.10-7737b215ad0f94d20a87d98315da9f6cadaf35c9.zip |
x86: Rename pagetable_setup_start() to pagetable_init()
In preparation for unifying the pagetable_setup_start() and
pagetable_setup_done() setup functions, rename appropriately all the
infrastructure related to pagetable_setup_start().
Signed-off-by: Attilio Rao <attilio.rao@citrix.com>
Ackedd-by: <konrad.wilk@oracle.com>
Cc: <Ian.Campbell@citrix.com>
Cc: <Stefano.Stabellini@eu.citrix.com>
Cc: <xen-devel@lists.xensource.com>
Link: http://lkml.kernel.org/r/1345580561-8506-3-git-send-email-attilio.rao@citrix.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/init_32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index c4aa1b25ba3..0e38e0e8804 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c @@ -445,7 +445,7 @@ static inline void permanent_kmaps_init(pgd_t *pgd_base) } #endif /* CONFIG_HIGHMEM */ -void __init native_pagetable_setup_start(void) +void __init native_pagetable_init(void) { unsigned long pfn, va; pgd_t *pgd, *base = swapper_pg_dir; @@ -493,7 +493,7 @@ void __init native_pagetable_setup_done(pgd_t *base) * If we're booting paravirtualized under a hypervisor, then there are * more options: we may already be running PAE, and the pagetable may * or may not be based in swapper_pg_dir. In any case, - * paravirt_pagetable_setup_start() will set up swapper_pg_dir + * paravirt_pagetable_init() will set up swapper_pg_dir * appropriately for the rest of the initialization to work. * * In general, pagetable_init() assumes that the pagetable may already |