]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[SPARC64]: Kill useless __pte_alloc_one_kernel indirection
authorChristoph Hellwig <hch@lst.de>
Thu, 5 May 2005 21:27:56 +0000 (14:27 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 May 2005 21:27:56 +0000 (14:27 -0700)
warning: untested, but it there's not too much chance for screwups

Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc64/kernel/sparc64_ksyms.c
arch/sparc64/mm/init.c
include/asm-sparc64/pgalloc.h

index cad5a11228006abbacd27f321c31166605f49b64..e78cc53594fa5bfbfc480ba874a24047f7f2b508 100644 (file)
@@ -278,7 +278,7 @@ EXPORT_SYMBOL(verify_compat_iovec);
 
 EXPORT_SYMBOL(dump_thread);
 EXPORT_SYMBOL(dump_fpu);
-EXPORT_SYMBOL(__pte_alloc_one_kernel);
+EXPORT_SYMBOL(pte_alloc_one_kernel);
 #ifndef CONFIG_SMP
 EXPORT_SYMBOL(pgt_quicklists);
 #endif
index db6fa77b4dab67463c14c43da29fd5ee3284abf2..9c5222075da93ac61018cb996f32008178dffcbd 100644 (file)
@@ -1114,7 +1114,7 @@ struct pgtable_cache_struct pgt_quicklists;
 #else
 #define DC_ALIAS_SHIFT 0
 #endif
-pte_t *__pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
+pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
 {
        struct page *page;
        unsigned long color;
index 2c28e1f605b76504eb7df4e4bc77f5e836399de1..b9b1914aae6331e8fe3e493ee317e19b11ec63c6 100644 (file)
@@ -122,17 +122,12 @@ static __inline__ void free_pmd_slow(pmd_t *pmd)
 #define pmd_populate(MM,PMD,PTE_PAGE)          \
        pmd_populate_kernel(MM,PMD,page_address(PTE_PAGE))
 
-extern pte_t *__pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address);
-
-static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
-{
-       return __pte_alloc_one_kernel(mm, address);
-}
+extern pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address);
 
 static inline struct page *
 pte_alloc_one(struct mm_struct *mm, unsigned long addr)
 {
-       pte_t *pte = __pte_alloc_one_kernel(mm, addr);
+       pte_t *pte = pte_alloc_one_kernel(mm, addr);
 
        if (pte)
                return virt_to_page(pte);