pgtable.c 657 B

12345678910111213141516171819202122232425
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. */
  6. #include <linux/export.h>
  7. #include <linux/mm.h>
  8. #include <linux/string.h>
  9. #include <asm/pgalloc.h>
  10. pgd_t *pgd_alloc(struct mm_struct *mm)
  11. {
  12. pgd_t *ret, *init;
  13. ret = (pgd_t *) __get_free_pages(GFP_KERNEL, PGD_TABLE_ORDER);
  14. if (ret) {
  15. init = pgd_offset(&init_mm, 0UL);
  16. pgd_init((unsigned long)ret);
  17. memcpy(ret + USER_PTRS_PER_PGD, init + USER_PTRS_PER_PGD,
  18. (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
  19. }
  20. return ret;
  21. }
  22. EXPORT_SYMBOL_GPL(pgd_alloc);