Blame view

kernel/linux-rt-4.4.41/arch/cris/mm/init.c 1.43 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  /*
   *  linux/arch/cris/mm/init.c
   *
   *  Copyright (C) 1995  Linus Torvalds
   *  Copyright (C) 2000,2001  Axis Communications AB
   *
   *  Authors:  Bjorn Wesen (bjornw@axis.com)
   *
   */
  
  #include <linux/gfp.h>
  #include <linux/init.h>
  #include <linux/bootmem.h>
  #include <linux/proc_fs.h>
  #include <linux/kcore.h>
  #include <asm/tlb.h>
  #include <asm/sections.h>
  
  unsigned long empty_zero_page;
  EXPORT_SYMBOL(empty_zero_page);
  
  void __init mem_init(void)
  {
  	BUG_ON(!mem_map);
  
  	/* max/min_low_pfn was set by setup.c
  	 * now we just copy it to some other necessary places...
  	 *
  	 * high_memory was also set in setup.c
  	 */
  	max_mapnr = max_low_pfn - min_low_pfn;
          free_all_bootmem();
  	mem_init_print_info(NULL);
  }
  
  /* Free a range of init pages. Virtual addresses. */
  
  void free_init_pages(const char *what, unsigned long begin, unsigned long end)
  {
  	unsigned long addr;
  
  	for (addr = begin; addr < end; addr += PAGE_SIZE) {
  		ClearPageReserved(virt_to_page(addr));
  		init_page_count(virt_to_page(addr));
  		free_page(addr);
  		totalram_pages++;
  	}
  
  	printk(KERN_INFO "Freeing %s: %ldk freed
  ", what, (end - begin) >> 10);
  }
  
  /* Free the pages occupied by initialization code. */
  
  void free_initmem(void)
  {
  	free_initmem_default(-1);
  }
  
  /* Free the pages occupied by initrd code. */
  
  #ifdef CONFIG_BLK_DEV_INITRD
  void free_initrd_mem(unsigned long start, unsigned long end)
  {
  	free_init_pages("initrd memory",
  	                start,
  	                end);
  }
  #endif