Commit-ID: 64282278989d5b0398dcb3ba7904cb00c621dc35 Gitweb: http://git.kernel.org/tip/64282278989d5b0398dcb3ba7904cb00c621dc35 Author: Attilio Rao <[email protected]> AuthorDate: Tue, 21 Aug 2012 21:22:41 +0100 Committer: Thomas Gleixner <[email protected]> CommitDate: Wed, 12 Sep 2012 15:33:07 +0200
x86: Document x86_init.paging.pagetable_init() Signed-off-by: Attilio Rao <[email protected]> Acked-by: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Cc: <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]> --- arch/x86/include/asm/x86_init.h | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 995ea5c..5769349 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h @@ -81,7 +81,10 @@ struct x86_init_mapping { /** * struct x86_init_paging - platform specific paging functions - * @pagetable_init: platform specific paging initialization call + * @pagetable_init: platform specific paging initialization call to setup + * the kernel pagetables and prepare accessors functions. + * Callback must call paging_init(). Called once after the + * direct mapping for phys memory is available. */ struct x86_init_paging { void (*pagetable_init)(void); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

