mmzone.h 19 KB

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