mmzone.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. #ifndef _LINUX_MMZONE_H
  2. #define _LINUX_MMZONE_H
  3. #ifdef __KERNEL__
  4. #ifndef __ASSEMBLY__
  5. #include <linux/config.h>
  6. #include <linux/spinlock.h>
  7. #include <linux/list.h>
  8. #include <linux/wait.h>
  9. #include <linux/cache.h>
  10. #include <linux/threads.h>
  11. #include <linux/numa.h>
  12. #include <linux/init.h>
  13. #include <linux/seqlock.h>
  14. #include <asm/atomic.h>
  15. /* Free memory management - zoned buddy allocator. */
  16. #ifndef CONFIG_FORCE_MAX_ZONEORDER
  17. #define MAX_ORDER 11
  18. #else
  19. #define MAX_ORDER CONFIG_FORCE_MAX_ZONEORDER
  20. #endif
  21. struct free_area {
  22. struct list_head free_list;
  23. unsigned long nr_free;
  24. };
  25. struct pglist_data;
  26. /*
  27. * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
  28. * So add a wild amount of padding here to ensure that they fall into separate
  29. * cachelines. There are very few zone structures in the machine, so space
  30. * consumption is not a concern here.
  31. */
  32. #if defined(CONFIG_SMP)
  33. struct zone_padding {
  34. char x[0];
  35. } ____cacheline_internodealigned_in_smp;
  36. #define ZONE_PADDING(name) struct zone_padding name;
  37. #else
  38. #define ZONE_PADDING(name)
  39. #endif
  40. struct per_cpu_pages {
  41. int count; /* number of pages in the list */
  42. int high; /* high watermark, emptying needed */
  43. int batch; /* chunk size for buddy add/remove */
  44. struct list_head list; /* the list of pages */
  45. };
  46. struct per_cpu_pageset {
  47. struct per_cpu_pages pcp[2]; /* 0: hot. 1: cold */
  48. #ifdef CONFIG_NUMA
  49. unsigned long numa_hit; /* allocated in intended node */
  50. unsigned long numa_miss; /* allocated in non intended node */
  51. unsigned long numa_foreign; /* was intended here, hit elsewhere */
  52. unsigned long interleave_hit; /* interleaver prefered this zone */
  53. unsigned long local_node; /* allocation from local node */
  54. unsigned long other_node; /* allocation from other node */
  55. #endif
  56. } ____cacheline_aligned_in_smp;
  57. #ifdef CONFIG_NUMA
  58. #define zone_pcp(__z, __cpu) ((__z)->pageset[(__cpu)])
  59. #else
  60. #define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)])
  61. #endif
  62. #define ZONE_DMA 0
  63. #define ZONE_DMA32 1
  64. #define ZONE_NORMAL 2
  65. #define ZONE_HIGHMEM 3
  66. #define MAX_NR_ZONES 4 /* Sync this with ZONES_SHIFT */
  67. #define ZONES_SHIFT 2 /* ceil(log2(MAX_NR_ZONES)) */
  68. /*
  69. * When a memory allocation must conform to specific limitations (such
  70. * as being suitable for DMA) the caller will pass in hints to the
  71. * allocator in the gfp_mask, in the zone modifier bits. These bits
  72. * are used to select a priority ordered list of memory zones which
  73. * match the requested limits. GFP_ZONEMASK defines which bits within
  74. * the gfp_mask should be considered as zone modifiers. Each valid
  75. * combination of the zone modifier bits has a corresponding list
  76. * of zones (in node_zonelists). Thus for two zone modifiers there
  77. * will be a maximum of 4 (2 ** 2) zonelists, for 3 modifiers there will
  78. * be 8 (2 ** 3) zonelists. GFP_ZONETYPES defines the number of possible
  79. * combinations of zone modifiers in "zone modifier space".
  80. *
  81. * As an optimisation any zone modifier bits which are only valid when
  82. * no other zone modifier bits are set (loners) should be placed in
  83. * the highest order bits of this field. This allows us to reduce the
  84. * extent of the zonelists thus saving space. For example in the case
  85. * of three zone modifier bits, we could require up to eight zonelists.
  86. * If the left most zone modifier is a "loner" then the highest valid
  87. * zonelist would be four allowing us to allocate only five zonelists.
  88. * Use the first form for GFP_ZONETYPES when the left most bit is not
  89. * a "loner", otherwise use the second.
  90. *
  91. * NOTE! Make sure this matches the zones in <linux/gfp.h>
  92. */
  93. #define GFP_ZONEMASK 0x07
  94. /* #define GFP_ZONETYPES (GFP_ZONEMASK + 1) */ /* Non-loner */
  95. #define GFP_ZONETYPES ((GFP_ZONEMASK + 1) / 2 + 1) /* Loner */
  96. /*
  97. * On machines where it is needed (eg PCs) we divide physical memory
  98. * into multiple physical zones. On a 32bit PC we have 4 zones:
  99. *
  100. * ZONE_DMA < 16 MB ISA DMA capable memory
  101. * ZONE_DMA32 0 MB Empty
  102. * ZONE_NORMAL 16-896 MB direct mapped by the kernel
  103. * ZONE_HIGHMEM > 896 MB only page cache and user processes
  104. */
  105. struct zone {
  106. /* Fields commonly accessed by the page allocator */
  107. unsigned long free_pages;
  108. unsigned long pages_min, pages_low, pages_high;
  109. /*
  110. * We don't know if the memory that we're going to allocate will be freeable
  111. * or/and it will be released eventually, so to avoid totally wasting several
  112. * GB of ram we must reserve some of the lower zone memory (otherwise we risk
  113. * to run OOM on the lower zones despite there's tons of freeable ram
  114. * on the higher zones). This array is recalculated at runtime if the
  115. * sysctl_lowmem_reserve_ratio sysctl changes.
  116. */
  117. unsigned long lowmem_reserve[MAX_NR_ZONES];
  118. #ifdef CONFIG_NUMA
  119. struct per_cpu_pageset *pageset[NR_CPUS];
  120. #else
  121. struct per_cpu_pageset pageset[NR_CPUS];
  122. #endif
  123. /*
  124. * free areas of different sizes
  125. */
  126. spinlock_t lock;
  127. #ifdef CONFIG_MEMORY_HOTPLUG
  128. /* see spanned/present_pages for more description */
  129. seqlock_t span_seqlock;
  130. #endif
  131. struct free_area free_area[MAX_ORDER];
  132. ZONE_PADDING(_pad1_)
  133. /* Fields commonly accessed by the page reclaim scanner */
  134. spinlock_t lru_lock;
  135. struct list_head active_list;
  136. struct list_head inactive_list;
  137. unsigned long nr_scan_active;
  138. unsigned long nr_scan_inactive;
  139. unsigned long nr_active;
  140. unsigned long nr_inactive;
  141. unsigned long pages_scanned; /* since last reclaim */
  142. int all_unreclaimable; /* All pages pinned */
  143. /* A count of how many reclaimers are scanning this zone */
  144. atomic_t reclaim_in_progress;
  145. /*
  146. * timestamp (in jiffies) of the last zone reclaim that did not
  147. * result in freeing of pages. This is used to avoid repeated scans
  148. * if all memory in the zone is in use.
  149. */
  150. unsigned long last_unsuccessful_zone_reclaim;
  151. /*
  152. * prev_priority holds the scanning priority for this zone. It is
  153. * defined as the scanning priority at which we achieved our reclaim
  154. * target at the previous try_to_free_pages() or balance_pgdat()
  155. * invokation.
  156. *
  157. * We use prev_priority as a measure of how much stress page reclaim is
  158. * under - it drives the swappiness decision: whether to unmap mapped
  159. * pages.
  160. *
  161. * temp_priority is used to remember the scanning priority at which
  162. * this zone was successfully refilled to free_pages == pages_high.
  163. *
  164. * Access to both these fields is quite racy even on uniprocessor. But
  165. * it is expected to average out OK.
  166. */
  167. int temp_priority;
  168. int prev_priority;
  169. ZONE_PADDING(_pad2_)
  170. /* Rarely used or read-mostly fields */
  171. /*
  172. * wait_table -- the array holding the hash table
  173. * wait_table_size -- the size of the hash table array
  174. * wait_table_bits -- wait_table_size == (1 << wait_table_bits)
  175. *
  176. * The purpose of all these is to keep track of the people
  177. * waiting for a page to become available and make them
  178. * runnable again when possible. The trouble is that this
  179. * consumes a lot of space, especially when so few things
  180. * wait on pages at a given time. So instead of using
  181. * per-page waitqueues, we use a waitqueue hash table.
  182. *
  183. * The bucket discipline is to sleep on the same queue when
  184. * colliding and wake all in that wait queue when removing.
  185. * When something wakes, it must check to be sure its page is
  186. * truly available, a la thundering herd. The cost of a
  187. * collision is great, but given the expected load of the
  188. * table, they should be so rare as to be outweighed by the
  189. * benefits from the saved space.
  190. *
  191. * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
  192. * primary users of these fields, and in mm/page_alloc.c
  193. * free_area_init_core() performs the initialization of them.
  194. */
  195. wait_queue_head_t * wait_table;
  196. unsigned long wait_table_size;
  197. unsigned long wait_table_bits;
  198. /*
  199. * Discontig memory support fields.
  200. */
  201. struct pglist_data *zone_pgdat;
  202. struct page *zone_mem_map;
  203. /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
  204. unsigned long zone_start_pfn;
  205. /*
  206. * zone_start_pfn, spanned_pages and present_pages are all
  207. * protected by span_seqlock. It is a seqlock because it has
  208. * to be read outside of zone->lock, and it is done in the main
  209. * allocator path. But, it is written quite infrequently.
  210. *
  211. * The lock is declared along with zone->lock because it is
  212. * frequently read in proximity to zone->lock. It's good to
  213. * give them a chance of being in the same cacheline.
  214. */
  215. unsigned long spanned_pages; /* total size, including holes */
  216. unsigned long present_pages; /* amount of memory (excluding holes) */
  217. /*
  218. * rarely used fields:
  219. */
  220. char *name;
  221. } ____cacheline_internodealigned_in_smp;
  222. /*
  223. * The "priority" of VM scanning is how much of the queues we will scan in one
  224. * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
  225. * queues ("queue_length >> 12") during an aging round.
  226. */
  227. #define DEF_PRIORITY 12
  228. /*
  229. * One allocation request operates on a zonelist. A zonelist
  230. * is a list of zones, the first one is the 'goal' of the
  231. * allocation, the other zones are fallback zones, in decreasing
  232. * priority.
  233. *
  234. * Right now a zonelist takes up less than a cacheline. We never
  235. * modify it apart from boot-up, and only a few indices are used,
  236. * so despite the zonelist table being relatively big, the cache
  237. * footprint of this construct is very small.
  238. */
  239. struct zonelist {
  240. struct zone *zones[MAX_NUMNODES * MAX_NR_ZONES + 1]; // NULL delimited
  241. };
  242. /*
  243. * The pg_data_t structure is used in machines with CONFIG_DISCONTIGMEM
  244. * (mostly NUMA machines?) to denote a higher-level memory zone than the
  245. * zone denotes.
  246. *
  247. * On NUMA machines, each NUMA node would have a pg_data_t to describe
  248. * it's memory layout.
  249. *
  250. * Memory statistics and page replacement data structures are maintained on a
  251. * per-zone basis.
  252. */
  253. struct bootmem_data;
  254. typedef struct pglist_data {
  255. struct zone node_zones[MAX_NR_ZONES];
  256. struct zonelist node_zonelists[GFP_ZONETYPES];
  257. int nr_zones;
  258. #ifdef CONFIG_FLAT_NODE_MEM_MAP
  259. struct page *node_mem_map;
  260. #endif
  261. struct bootmem_data *bdata;
  262. #ifdef CONFIG_MEMORY_HOTPLUG
  263. /*
  264. * Must be held any time you expect node_start_pfn, node_present_pages
  265. * or node_spanned_pages stay constant. Holding this will also
  266. * guarantee that any pfn_valid() stays that way.
  267. *
  268. * Nests above zone->lock and zone->size_seqlock.
  269. */
  270. spinlock_t node_size_lock;
  271. #endif
  272. unsigned long node_start_pfn;
  273. unsigned long node_present_pages; /* total number of physical pages */
  274. unsigned long node_spanned_pages; /* total size of physical page
  275. range, including holes */
  276. int node_id;
  277. struct pglist_data *pgdat_next;
  278. wait_queue_head_t kswapd_wait;
  279. struct task_struct *kswapd;
  280. int kswapd_max_order;
  281. } pg_data_t;
  282. #define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages)
  283. #define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages)
  284. #ifdef CONFIG_FLAT_NODE_MEM_MAP
  285. #define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr))
  286. #else
  287. #define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr))
  288. #endif
  289. #define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr))
  290. #include <linux/memory_hotplug.h>
  291. extern struct pglist_data *pgdat_list;
  292. void __get_zone_counts(unsigned long *active, unsigned long *inactive,
  293. unsigned long *free, struct pglist_data *pgdat);
  294. void get_zone_counts(unsigned long *active, unsigned long *inactive,
  295. unsigned long *free);
  296. void build_all_zonelists(void);
  297. void wakeup_kswapd(struct zone *zone, int order);
  298. int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
  299. int classzone_idx, int alloc_flags);
  300. #ifdef CONFIG_HAVE_MEMORY_PRESENT
  301. void memory_present(int nid, unsigned long start, unsigned long end);
  302. #else
  303. static inline void memory_present(int nid, unsigned long start, unsigned long end) {}
  304. #endif
  305. #ifdef CONFIG_NEED_NODE_MEMMAP_SIZE
  306. unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
  307. #endif
  308. /*
  309. * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc.
  310. */
  311. #define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones)
  312. /**
  313. * for_each_pgdat - helper macro to iterate over all nodes
  314. * @pgdat - pointer to a pg_data_t variable
  315. *
  316. * Meant to help with common loops of the form
  317. * pgdat = pgdat_list;
  318. * while(pgdat) {
  319. * ...
  320. * pgdat = pgdat->pgdat_next;
  321. * }
  322. */
  323. #define for_each_pgdat(pgdat) \
  324. for (pgdat = pgdat_list; pgdat; pgdat = pgdat->pgdat_next)
  325. /*
  326. * next_zone - helper magic for for_each_zone()
  327. * Thanks to William Lee Irwin III for this piece of ingenuity.
  328. */
  329. static inline struct zone *next_zone(struct zone *zone)
  330. {
  331. pg_data_t *pgdat = zone->zone_pgdat;
  332. if (zone < pgdat->node_zones + MAX_NR_ZONES - 1)
  333. zone++;
  334. else if (pgdat->pgdat_next) {
  335. pgdat = pgdat->pgdat_next;
  336. zone = pgdat->node_zones;
  337. } else
  338. zone = NULL;
  339. return zone;
  340. }
  341. /**
  342. * for_each_zone - helper macro to iterate over all memory zones
  343. * @zone - pointer to struct zone variable
  344. *
  345. * The user only needs to declare the zone variable, for_each_zone
  346. * fills it in. This basically means for_each_zone() is an
  347. * easier to read version of this piece of code:
  348. *
  349. * for (pgdat = pgdat_list; pgdat; pgdat = pgdat->node_next)
  350. * for (i = 0; i < MAX_NR_ZONES; ++i) {
  351. * struct zone * z = pgdat->node_zones + i;
  352. * ...
  353. * }
  354. * }
  355. */
  356. #define for_each_zone(zone) \
  357. for (zone = pgdat_list->node_zones; zone; zone = next_zone(zone))
  358. static inline int populated_zone(struct zone *zone)
  359. {
  360. return (!!zone->present_pages);
  361. }
  362. static inline int is_highmem_idx(int idx)
  363. {
  364. return (idx == ZONE_HIGHMEM);
  365. }
  366. static inline int is_normal_idx(int idx)
  367. {
  368. return (idx == ZONE_NORMAL);
  369. }
  370. /**
  371. * is_highmem - helper function to quickly check if a struct zone is a
  372. * highmem zone or not. This is an attempt to keep references
  373. * to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
  374. * @zone - pointer to struct zone variable
  375. */
  376. static inline int is_highmem(struct zone *zone)
  377. {
  378. return zone == zone->zone_pgdat->node_zones + ZONE_HIGHMEM;
  379. }
  380. static inline int is_normal(struct zone *zone)
  381. {
  382. return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
  383. }
  384. static inline int is_dma32(struct zone *zone)
  385. {
  386. return zone == zone->zone_pgdat->node_zones + ZONE_DMA32;
  387. }
  388. static inline int is_dma(struct zone *zone)
  389. {
  390. return zone == zone->zone_pgdat->node_zones + ZONE_DMA;
  391. }
  392. /* These two functions are used to setup the per zone pages min values */
  393. struct ctl_table;
  394. struct file;
  395. int min_free_kbytes_sysctl_handler(struct ctl_table *, int, struct file *,
  396. void __user *, size_t *, loff_t *);
  397. extern int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1];
  398. int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int, struct file *,
  399. void __user *, size_t *, loff_t *);
  400. int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *, int, struct file *,
  401. void __user *, size_t *, loff_t *);
  402. #include <linux/topology.h>
  403. /* Returns the number of the current Node. */
  404. #ifndef numa_node_id
  405. #define numa_node_id() (cpu_to_node(raw_smp_processor_id()))
  406. #endif
  407. #ifndef CONFIG_NEED_MULTIPLE_NODES
  408. extern struct pglist_data contig_page_data;
  409. #define NODE_DATA(nid) (&contig_page_data)
  410. #define NODE_MEM_MAP(nid) mem_map
  411. #define MAX_NODES_SHIFT 1
  412. #else /* CONFIG_NEED_MULTIPLE_NODES */
  413. #include <asm/mmzone.h>
  414. #endif /* !CONFIG_NEED_MULTIPLE_NODES */
  415. #ifdef CONFIG_SPARSEMEM
  416. #include <asm/sparsemem.h>
  417. #endif
  418. #if BITS_PER_LONG == 32
  419. /*
  420. * with 32 bit page->flags field, we reserve 9 bits for node/zone info.
  421. * there are 4 zones (3 bits) and this leaves 9-3=6 bits for nodes.
  422. */
  423. #define FLAGS_RESERVED 9
  424. #elif BITS_PER_LONG == 64
  425. /*
  426. * with 64 bit flags field, there's plenty of room.
  427. */
  428. #define FLAGS_RESERVED 32
  429. #else
  430. #error BITS_PER_LONG not defined
  431. #endif
  432. #ifndef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID
  433. #define early_pfn_to_nid(nid) (0UL)
  434. #endif
  435. #ifdef CONFIG_FLATMEM
  436. #define pfn_to_nid(pfn) (0)
  437. #endif
  438. #define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT)
  439. #define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
  440. #ifdef CONFIG_SPARSEMEM
  441. /*
  442. * SECTION_SHIFT #bits space required to store a section #
  443. *
  444. * PA_SECTION_SHIFT physical address to/from section number
  445. * PFN_SECTION_SHIFT pfn to/from section number
  446. */
  447. #define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS)
  448. #define PA_SECTION_SHIFT (SECTION_SIZE_BITS)
  449. #define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT)
  450. #define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT)
  451. #define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT)
  452. #define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1))
  453. #if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS
  454. #error Allocator MAX_ORDER exceeds SECTION_SIZE
  455. #endif
  456. struct page;
  457. struct mem_section {
  458. /*
  459. * This is, logically, a pointer to an array of struct
  460. * pages. However, it is stored with some other magic.
  461. * (see sparse.c::sparse_init_one_section())
  462. *
  463. * Making it a UL at least makes someone do a cast
  464. * before using it wrong.
  465. */
  466. unsigned long section_mem_map;
  467. };
  468. #ifdef CONFIG_SPARSEMEM_EXTREME
  469. #define SECTIONS_PER_ROOT (PAGE_SIZE / sizeof (struct mem_section))
  470. #else
  471. #define SECTIONS_PER_ROOT 1
  472. #endif
  473. #define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
  474. #define NR_SECTION_ROOTS (NR_MEM_SECTIONS / SECTIONS_PER_ROOT)
  475. #define SECTION_ROOT_MASK (SECTIONS_PER_ROOT - 1)
  476. #ifdef CONFIG_SPARSEMEM_EXTREME
  477. extern struct mem_section *mem_section[NR_SECTION_ROOTS];
  478. #else
  479. extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT];
  480. #endif
  481. static inline struct mem_section *__nr_to_section(unsigned long nr)
  482. {
  483. if (!mem_section[SECTION_NR_TO_ROOT(nr)])
  484. return NULL;
  485. return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK];
  486. }
  487. extern int __section_nr(struct mem_section* ms);
  488. /*
  489. * We use the lower bits of the mem_map pointer to store
  490. * a little bit of information. There should be at least
  491. * 3 bits here due to 32-bit alignment.
  492. */
  493. #define SECTION_MARKED_PRESENT (1UL<<0)
  494. #define SECTION_HAS_MEM_MAP (1UL<<1)
  495. #define SECTION_MAP_LAST_BIT (1UL<<2)
  496. #define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1))
  497. static inline struct page *__section_mem_map_addr(struct mem_section *section)
  498. {
  499. unsigned long map = section->section_mem_map;
  500. map &= SECTION_MAP_MASK;
  501. return (struct page *)map;
  502. }
  503. static inline int valid_section(struct mem_section *section)
  504. {
  505. return (section && (section->section_mem_map & SECTION_MARKED_PRESENT));
  506. }
  507. static inline int section_has_mem_map(struct mem_section *section)
  508. {
  509. return (section && (section->section_mem_map & SECTION_HAS_MEM_MAP));
  510. }
  511. static inline int valid_section_nr(unsigned long nr)
  512. {
  513. return valid_section(__nr_to_section(nr));
  514. }
  515. static inline struct mem_section *__pfn_to_section(unsigned long pfn)
  516. {
  517. return __nr_to_section(pfn_to_section_nr(pfn));
  518. }
  519. #define pfn_to_page(pfn) \
  520. ({ \
  521. unsigned long __pfn = (pfn); \
  522. __section_mem_map_addr(__pfn_to_section(__pfn)) + __pfn; \
  523. })
  524. #define page_to_pfn(page) \
  525. ({ \
  526. page - __section_mem_map_addr(__nr_to_section( \
  527. page_to_section(page))); \
  528. })
  529. static inline int pfn_valid(unsigned long pfn)
  530. {
  531. if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
  532. return 0;
  533. return valid_section(__nr_to_section(pfn_to_section_nr(pfn)));
  534. }
  535. /*
  536. * These are _only_ used during initialisation, therefore they
  537. * can use __initdata ... They could have names to indicate
  538. * this restriction.
  539. */
  540. #ifdef CONFIG_NUMA
  541. #define pfn_to_nid(pfn) \
  542. ({ \
  543. unsigned long __pfn_to_nid_pfn = (pfn); \
  544. page_to_nid(pfn_to_page(__pfn_to_nid_pfn)); \
  545. })
  546. #else
  547. #define pfn_to_nid(pfn) (0)
  548. #endif
  549. #define early_pfn_valid(pfn) pfn_valid(pfn)
  550. void sparse_init(void);
  551. #else
  552. #define sparse_init() do {} while (0)
  553. #define sparse_index_init(_sec, _nid) do {} while (0)
  554. #endif /* CONFIG_SPARSEMEM */
  555. #ifndef early_pfn_valid
  556. #define early_pfn_valid(pfn) (1)
  557. #endif
  558. void memory_present(int nid, unsigned long start, unsigned long end);
  559. unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
  560. #endif /* !__ASSEMBLY__ */
  561. #endif /* __KERNEL__ */
  562. #endif /* _LINUX_MMZONE_H */