mm.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:23k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_MM_H
  2. #define _LINUX_MM_H
  3. #include <linux/sched.h>
  4. #include <linux/errno.h>
  5. #ifdef __KERNEL__
  6. #include <linux/config.h>
  7. #include <linux/string.h>
  8. #include <linux/list.h>
  9. #include <linux/mmzone.h>
  10. #include <linux/swap.h>
  11. #include <linux/rbtree.h>
  12. extern unsigned long max_mapnr;
  13. extern unsigned long num_physpages;
  14. extern void * high_memory;
  15. extern int page_cluster;
  16. /* The inactive_clean lists are per zone. */
  17. extern struct list_head active_list;
  18. extern struct list_head inactive_list;
  19. #include <asm/page.h>
  20. #include <asm/pgtable.h>
  21. #include <asm/atomic.h>
  22. /*
  23.  * Linux kernel virtual memory manager primitives.
  24.  * The idea being to have a "virtual" mm in the same way
  25.  * we have a virtual fs - giving a cleaner interface to the
  26.  * mm details, and allowing different kinds of memory mappings
  27.  * (from shared memory to executable loading to arbitrary
  28.  * mmap() functions).
  29.  */
  30. /*
  31.  * This struct defines a memory VMM memory area. There is one of these
  32.  * per VM-area/task.  A VM area is any part of the process virtual memory
  33.  * space that has a special rule for the page-fault handlers (ie a shared
  34.  * library, the executable area etc).
  35.  */
  36. struct vm_area_struct {
  37. struct mm_struct * vm_mm; /* The address space we belong to. */
  38. unsigned long vm_start; /* Our start address within vm_mm. */
  39. unsigned long vm_end; /* The first byte after our end address
  40.    within vm_mm. */
  41. /* linked list of VM areas per task, sorted by address */
  42. struct vm_area_struct *vm_next;
  43. pgprot_t vm_page_prot; /* Access permissions of this VMA. */
  44. unsigned long vm_flags; /* Flags, listed below. */
  45. rb_node_t vm_rb;
  46. /*
  47.  * For areas with an address space and backing store,
  48.  * one of the address_space->i_mmap{,shared} lists,
  49.  * for shm areas, the list of attaches, otherwise unused.
  50.  */
  51. struct vm_area_struct *vm_next_share;
  52. struct vm_area_struct **vm_pprev_share;
  53. /* Function pointers to deal with this struct. */
  54. struct vm_operations_struct * vm_ops;
  55. /* Information about our backing store: */
  56. unsigned long vm_pgoff; /* Offset (within vm_file) in PAGE_SIZE
  57.    units, *not* PAGE_CACHE_SIZE */
  58. struct file * vm_file; /* File we map to (can be NULL). */
  59. unsigned long vm_raend; /* XXX: put full readahead info here. */
  60. void * vm_private_data; /* was vm_pte (shared mem) */
  61. };
  62. /*
  63.  * vm_flags..
  64.  */
  65. #define VM_READ 0x00000001 /* currently active flags */
  66. #define VM_WRITE 0x00000002
  67. #define VM_EXEC 0x00000004
  68. #define VM_SHARED 0x00000008
  69. #define VM_MAYREAD 0x00000010 /* limits for mprotect() etc */
  70. #define VM_MAYWRITE 0x00000020
  71. #define VM_MAYEXEC 0x00000040
  72. #define VM_MAYSHARE 0x00000080
  73. #define VM_GROWSDOWN 0x00000100 /* general info on the segment */
  74. #define VM_GROWSUP 0x00000200
  75. #define VM_SHM 0x00000400 /* shared memory area, don't swap out */
  76. #define VM_DENYWRITE 0x00000800 /* ETXTBSY on write attempts.. */
  77. #define VM_EXECUTABLE 0x00001000
  78. #define VM_LOCKED 0x00002000
  79. #define VM_IO           0x00004000 /* Memory mapped I/O or similar */
  80. /* Used by sys_madvise() */
  81. #define VM_SEQ_READ 0x00008000 /* App will access data sequentially */
  82. #define VM_RAND_READ 0x00010000 /* App will not benefit from clustered reads */
  83. #define VM_DONTCOPY 0x00020000      /* Do not copy this vma on fork */
  84. #define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */
  85. #define VM_RESERVED 0x00080000 /* Don't unmap it from swap_out */
  86. #define VM_STACK_FLAGS 0x00000177
  87. #define VM_READHINTMASK (VM_SEQ_READ | VM_RAND_READ)
  88. #define VM_ClearReadHint(v) (v)->vm_flags &= ~VM_READHINTMASK
  89. #define VM_NormalReadHint(v) (!((v)->vm_flags & VM_READHINTMASK))
  90. #define VM_SequentialReadHint(v) ((v)->vm_flags & VM_SEQ_READ)
  91. #define VM_RandomReadHint(v) ((v)->vm_flags & VM_RAND_READ)
  92. /* read ahead limits */
  93. extern int vm_min_readahead;
  94. extern int vm_max_readahead;
  95. /*
  96.  * mapping from the currently active vm_flags protection bits (the
  97.  * low four bits) to a page protection mask..
  98.  */
  99. extern pgprot_t protection_map[16];
  100. /*
  101.  * These are the virtual MM functions - opening of an area, closing and
  102.  * unmapping it (needed to keep files on disk up-to-date etc), pointer
  103.  * to the functions called when a no-page or a wp-page exception occurs. 
  104.  */
  105. struct vm_operations_struct {
  106. void (*open)(struct vm_area_struct * area);
  107. void (*close)(struct vm_area_struct * area);
  108. struct page * (*nopage)(struct vm_area_struct * area, unsigned long address, int unused);
  109. };
  110. /*
  111.  * Each physical page in the system has a struct page associated with
  112.  * it to keep track of whatever it is we are using the page for at the
  113.  * moment. Note that we have no way to track which tasks are using
  114.  * a page.
  115.  *
  116.  * Try to keep the most commonly accessed fields in single cache lines
  117.  * here (16 bytes or greater).  This ordering should be particularly
  118.  * beneficial on 32-bit processors.
  119.  *
  120.  * The first line is data used in page cache lookup, the second line
  121.  * is used for linear searches (eg. clock algorithm scans). 
  122.  *
  123.  * TODO: make this structure smaller, it could be as small as 32 bytes.
  124.  */
  125. typedef struct page {
  126. struct list_head list; /* ->mapping has some page lists. */
  127. struct address_space *mapping; /* The inode (or ...) we belong to. */
  128. unsigned long index; /* Our offset within mapping. */
  129. struct page *next_hash; /* Next page sharing our hash bucket in
  130.    the pagecache hash table. */
  131. atomic_t count; /* Usage count, see below. */
  132. unsigned long flags; /* atomic flags, some possibly
  133.    updated asynchronously */
  134. struct list_head lru; /* Pageout list, eg. active_list;
  135.    protected by pagemap_lru_lock !! */
  136. wait_queue_head_t wait; /* Page locked?  Stand in line... */
  137. struct page **pprev_hash; /* Complement to *next_hash. */
  138. struct buffer_head * buffers; /* Buffer maps us to a disk block. */
  139. void *virtual; /* Kernel virtual address (NULL if
  140.    not kmapped, ie. highmem) */
  141. struct zone_struct *zone; /* Memory zone we are in. */
  142. } mem_map_t;
  143. /*
  144.  * Methods to modify the page usage count.
  145.  *
  146.  * What counts for a page usage:
  147.  * - cache mapping   (page->mapping)
  148.  * - disk mapping    (page->buffers)
  149.  * - page mapped in a task's page tables, each mapping
  150.  *   is counted separately
  151.  *
  152.  * Also, many kernel routines increase the page count before a critical
  153.  * routine so they can be sure the page doesn't go away from under them.
  154.  */
  155. #define get_page(p) atomic_inc(&(p)->count)
  156. #define put_page(p) __free_page(p)
  157. #define put_page_testzero(p)  atomic_dec_and_test(&(p)->count)
  158. #define page_count(p) atomic_read(&(p)->count)
  159. #define set_page_count(p,v)  atomic_set(&(p)->count, v)
  160. /*
  161.  * Various page->flags bits:
  162.  *
  163.  * PG_reserved is set for special pages, which can never be swapped
  164.  * out. Some of them might not even exist (eg empty_bad_page)...
  165.  *
  166.  * Multiple processes may "see" the same page. E.g. for untouched
  167.  * mappings of /dev/null, all processes see the same page full of
  168.  * zeroes, and text pages of executables and shared libraries have
  169.  * only one copy in memory, at most, normally.
  170.  *
  171.  * For the non-reserved pages, page->count denotes a reference count.
  172.  *   page->count == 0 means the page is free.
  173.  *   page->count == 1 means the page is used for exactly one purpose
  174.  *   (e.g. a private data page of one process).
  175.  *
  176.  * A page may be used for kmalloc() or anyone else who does a
  177.  * __get_free_page(). In this case the page->count is at least 1, and
  178.  * all other fields are unused but should be 0 or NULL. The
  179.  * management of this page is the responsibility of the one who uses
  180.  * it.
  181.  *
  182.  * The other pages (we may call them "process pages") are completely
  183.  * managed by the Linux memory manager: I/O, buffers, swapping etc.
  184.  * The following discussion applies only to them.
  185.  *
  186.  * A page may belong to an inode's memory mapping. In this case,
  187.  * page->mapping is the pointer to the inode, and page->index is the
  188.  * file offset of the page, in units of PAGE_CACHE_SIZE.
  189.  *
  190.  * A page may have buffers allocated to it. In this case,
  191.  * page->buffers is a circular list of these buffer heads. Else,
  192.  * page->buffers == NULL.
  193.  *
  194.  * For pages belonging to inodes, the page->count is the number of
  195.  * attaches, plus 1 if buffers are allocated to the page, plus one
  196.  * for the page cache itself.
  197.  *
  198.  * All pages belonging to an inode are in these doubly linked lists:
  199.  * mapping->clean_pages, mapping->dirty_pages and mapping->locked_pages;
  200.  * using the page->list list_head. These fields are also used for
  201.  * freelist managemet (when page->count==0).
  202.  *
  203.  * There is also a hash table mapping (mapping,index) to the page
  204.  * in memory if present. The lists for this hash table use the fields
  205.  * page->next_hash and page->pprev_hash.
  206.  *
  207.  * All process pages can do I/O:
  208.  * - inode pages may need to be read from disk,
  209.  * - inode pages which have been modified and are MAP_SHARED may need
  210.  *   to be written to disk,
  211.  * - private pages which have been modified may need to be swapped out
  212.  *   to swap space and (later) to be read back into memory.
  213.  * During disk I/O, PG_locked is used. This bit is set before I/O
  214.  * and reset when I/O completes. page->wait is a wait queue of all
  215.  * tasks waiting for the I/O on this page to complete.
  216.  * PG_uptodate tells whether the page's contents is valid.
  217.  * When a read completes, the page becomes uptodate, unless a disk I/O
  218.  * error happened.
  219.  *
  220.  * For choosing which pages to swap out, inode pages carry a
  221.  * PG_referenced bit, which is set any time the system accesses
  222.  * that page through the (mapping,index) hash table. This referenced
  223.  * bit, together with the referenced bit in the page tables, is used
  224.  * to manipulate page->age and move the page across the active,
  225.  * inactive_dirty and inactive_clean lists.
  226.  *
  227.  * Note that the referenced bit, the page->lru list_head and the
  228.  * active, inactive_dirty and inactive_clean lists are protected by
  229.  * the pagemap_lru_lock, and *NOT* by the usual PG_locked bit!
  230.  *
  231.  * PG_skip is used on sparc/sparc64 architectures to "skip" certain
  232.  * parts of the address space.
  233.  *
  234.  * PG_error is set to indicate that an I/O error occurred on this page.
  235.  *
  236.  * PG_arch_1 is an architecture specific page state bit.  The generic
  237.  * code guarantees that this bit is cleared for a page when it first
  238.  * is entered into the page cache.
  239.  *
  240.  * PG_highmem pages are not permanently mapped into the kernel virtual
  241.  * address space, they need to be kmapped separately for doing IO on
  242.  * the pages. The struct page (these bits with information) are always
  243.  * mapped into kernel address space...
  244.  */
  245. #define PG_locked  0 /* Page is locked. Don't touch. */
  246. #define PG_error  1
  247. #define PG_referenced  2
  248. #define PG_uptodate  3
  249. #define PG_dirty  4
  250. #define PG_unused  5
  251. #define PG_lru  6
  252. #define PG_active  7
  253. #define PG_slab  8
  254. #define PG_skip 10
  255. #define PG_highmem 11
  256. #define PG_checked 12 /* kill me in 2.5.<early>. */
  257. #define PG_arch_1 13
  258. #define PG_reserved 14
  259. #define PG_launder 15 /* written out by VM pressure.. */
  260. /* Make it prettier to test the above... */
  261. #define UnlockPage(page) unlock_page(page)
  262. #define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags)
  263. #define SetPageUptodate(page) set_bit(PG_uptodate, &(page)->flags)
  264. #define ClearPageUptodate(page) clear_bit(PG_uptodate, &(page)->flags)
  265. #define PageDirty(page) test_bit(PG_dirty, &(page)->flags)
  266. #define SetPageDirty(page) set_bit(PG_dirty, &(page)->flags)
  267. #define ClearPageDirty(page) clear_bit(PG_dirty, &(page)->flags)
  268. #define PageLocked(page) test_bit(PG_locked, &(page)->flags)
  269. #define LockPage(page) set_bit(PG_locked, &(page)->flags)
  270. #define TryLockPage(page) test_and_set_bit(PG_locked, &(page)->flags)
  271. #define PageChecked(page) test_bit(PG_checked, &(page)->flags)
  272. #define SetPageChecked(page) set_bit(PG_checked, &(page)->flags)
  273. #define PageLaunder(page) test_bit(PG_launder, &(page)->flags)
  274. #define SetPageLaunder(page) set_bit(PG_launder, &(page)->flags)
  275. extern void FASTCALL(set_page_dirty(struct page *));
  276. /*
  277.  * The first mb is necessary to safely close the critical section opened by the
  278.  * TryLockPage(), the second mb is necessary to enforce ordering between
  279.  * the clear_bit and the read of the waitqueue (to avoid SMP races with a
  280.  * parallel wait_on_page).
  281.  */
  282. #define PageError(page) test_bit(PG_error, &(page)->flags)
  283. #define SetPageError(page) set_bit(PG_error, &(page)->flags)
  284. #define ClearPageError(page) clear_bit(PG_error, &(page)->flags)
  285. #define PageReferenced(page) test_bit(PG_referenced, &(page)->flags)
  286. #define SetPageReferenced(page) set_bit(PG_referenced, &(page)->flags)
  287. #define ClearPageReferenced(page) clear_bit(PG_referenced, &(page)->flags)
  288. #define PageTestandClearReferenced(page) test_and_clear_bit(PG_referenced, &(page)->flags)
  289. #define PageSlab(page) test_bit(PG_slab, &(page)->flags)
  290. #define PageSetSlab(page) set_bit(PG_slab, &(page)->flags)
  291. #define PageClearSlab(page) clear_bit(PG_slab, &(page)->flags)
  292. #define PageReserved(page) test_bit(PG_reserved, &(page)->flags)
  293. #define PageActive(page) test_bit(PG_active, &(page)->flags)
  294. #define SetPageActive(page) set_bit(PG_active, &(page)->flags)
  295. #define ClearPageActive(page) clear_bit(PG_active, &(page)->flags)
  296. #define PageLRU(page) test_bit(PG_lru, &(page)->flags)
  297. #define TestSetPageLRU(page) test_and_set_bit(PG_lru, &(page)->flags)
  298. #define TestClearPageLRU(page) test_and_clear_bit(PG_lru, &(page)->flags)
  299. #ifdef CONFIG_HIGHMEM
  300. #define PageHighMem(page) test_bit(PG_highmem, &(page)->flags)
  301. #else
  302. #define PageHighMem(page) 0 /* needed to optimize away at compile time */
  303. #endif
  304. #define SetPageReserved(page) set_bit(PG_reserved, &(page)->flags)
  305. #define ClearPageReserved(page) clear_bit(PG_reserved, &(page)->flags)
  306. /*
  307.  * Error return values for the *_nopage functions
  308.  */
  309. #define NOPAGE_SIGBUS (NULL)
  310. #define NOPAGE_OOM ((struct page *) (-1))
  311. /* The array of struct pages */
  312. extern mem_map_t * mem_map;
  313. /*
  314.  * There is only one page-allocator function, and two main namespaces to
  315.  * it. The alloc_page*() variants return 'struct page *' and as such
  316.  * can allocate highmem pages, the *get*page*() variants return
  317.  * virtual kernel addresses to the allocated page(s).
  318.  */
  319. extern struct page * FASTCALL(_alloc_pages(unsigned int gfp_mask, unsigned int order));
  320. extern struct page * FASTCALL(__alloc_pages(unsigned int gfp_mask, unsigned int order, zonelist_t *zonelist));
  321. extern struct page * alloc_pages_node(int nid, unsigned int gfp_mask, unsigned int order);
  322. static inline struct page * alloc_pages(unsigned int gfp_mask, unsigned int order)
  323. {
  324. /*
  325.  * Gets optimized away by the compiler.
  326.  */
  327. if (order >= MAX_ORDER)
  328. return NULL;
  329. return _alloc_pages(gfp_mask, order);
  330. }
  331. #define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0)
  332. extern unsigned long FASTCALL(__get_free_pages(unsigned int gfp_mask, unsigned int order));
  333. extern unsigned long FASTCALL(get_zeroed_page(unsigned int gfp_mask));
  334. #define __get_free_page(gfp_mask) 
  335. __get_free_pages((gfp_mask),0)
  336. #define __get_dma_pages(gfp_mask, order) 
  337. __get_free_pages((gfp_mask) | GFP_DMA,(order))
  338. /*
  339.  * The old interface name will be removed in 2.5:
  340.  */
  341. #define get_free_page get_zeroed_page
  342. /*
  343.  * There is only one 'core' page-freeing function.
  344.  */
  345. extern void FASTCALL(__free_pages(struct page *page, unsigned int order));
  346. extern void FASTCALL(free_pages(unsigned long addr, unsigned int order));
  347. #define __free_page(page) __free_pages((page), 0)
  348. #define free_page(addr) free_pages((addr),0)
  349. extern void show_free_areas(void);
  350. extern void show_free_areas_node(pg_data_t *pgdat);
  351. extern void clear_page_tables(struct mm_struct *, unsigned long, int);
  352. extern int fail_writepage(struct page *);
  353. struct page * shmem_nopage(struct vm_area_struct * vma, unsigned long address, int unused);
  354. struct file *shmem_file_setup(char * name, loff_t size);
  355. extern void shmem_lock(struct file * file, int lock);
  356. extern int shmem_zero_setup(struct vm_area_struct *);
  357. extern void zap_page_range(struct mm_struct *mm, unsigned long address, unsigned long size);
  358. extern int copy_page_range(struct mm_struct *dst, struct mm_struct *src, struct vm_area_struct *vma);
  359. extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, pgprot_t prot);
  360. extern int zeromap_page_range(unsigned long from, unsigned long size, pgprot_t prot);
  361. extern int vmtruncate(struct inode * inode, loff_t offset);
  362. extern pmd_t *FASTCALL(__pmd_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address));
  363. extern pte_t *FASTCALL(pte_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long address));
  364. extern int handle_mm_fault(struct mm_struct *mm,struct vm_area_struct *vma, unsigned long address, int write_access);
  365. extern int make_pages_present(unsigned long addr, unsigned long end);
  366. extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write);
  367. extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char *dst, int len);
  368. extern int ptrace_writedata(struct task_struct *tsk, char * src, unsigned long dst, int len);
  369. extern int ptrace_attach(struct task_struct *tsk);
  370. extern int ptrace_detach(struct task_struct *, unsigned int);
  371. extern void ptrace_disable(struct task_struct *);
  372. extern int ptrace_check_attach(struct task_struct *task, int kill);
  373. int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start,
  374. int len, int write, int force, struct page **pages, struct vm_area_struct **vmas);
  375. /*
  376.  * On a two-level page table, this ends up being trivial. Thus the
  377.  * inlining and the symmetry break with pte_alloc() that does all
  378.  * of this out-of-line.
  379.  */
  380. static inline pmd_t *pmd_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  381. {
  382. if (pgd_none(*pgd))
  383. return __pmd_alloc(mm, pgd, address);
  384. return pmd_offset(pgd, address);
  385. }
  386. extern int pgt_cache_water[2];
  387. extern int check_pgt_cache(void);
  388. extern void free_area_init(unsigned long * zones_size);
  389. extern void free_area_init_node(int nid, pg_data_t *pgdat, struct page *pmap,
  390. unsigned long * zones_size, unsigned long zone_start_paddr, 
  391. unsigned long *zholes_size);
  392. extern void mem_init(void);
  393. extern void show_mem(void);
  394. extern void si_meminfo(struct sysinfo * val);
  395. extern void swapin_readahead(swp_entry_t);
  396. extern struct address_space swapper_space;
  397. #define PageSwapCache(page) ((page)->mapping == &swapper_space)
  398. static inline int is_page_cache_freeable(struct page * page)
  399. {
  400. return page_count(page) - !!page->buffers == 1;
  401. }
  402. extern int can_share_swap_page(struct page *);
  403. extern int remove_exclusive_swap_page(struct page *);
  404. extern void __free_pte(pte_t);
  405. /* mmap.c */
  406. extern void lock_vma_mappings(struct vm_area_struct *);
  407. extern void unlock_vma_mappings(struct vm_area_struct *);
  408. extern void insert_vm_struct(struct mm_struct *, struct vm_area_struct *);
  409. extern void __insert_vm_struct(struct mm_struct *, struct vm_area_struct *);
  410. extern void build_mmap_rb(struct mm_struct *);
  411. extern void exit_mmap(struct mm_struct *);
  412. extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  413. extern unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  414. unsigned long len, unsigned long prot,
  415. unsigned long flag, unsigned long pgoff);
  416. static inline unsigned long do_mmap(struct file *file, unsigned long addr,
  417. unsigned long len, unsigned long prot,
  418. unsigned long flag, unsigned long offset)
  419. {
  420. unsigned long ret = -EINVAL;
  421. if ((offset + PAGE_ALIGN(len)) < offset)
  422. goto out;
  423. if (!(offset & ~PAGE_MASK))
  424. ret = do_mmap_pgoff(file, addr, len, prot, flag, offset >> PAGE_SHIFT);
  425. out:
  426. return ret;
  427. }
  428. extern int do_munmap(struct mm_struct *, unsigned long, size_t);
  429. extern unsigned long do_brk(unsigned long, unsigned long);
  430. static inline void __vma_unlink(struct mm_struct * mm, struct vm_area_struct * vma, struct vm_area_struct * prev)
  431. {
  432. prev->vm_next = vma->vm_next;
  433. rb_erase(&vma->vm_rb, &mm->mm_rb);
  434. if (mm->mmap_cache == vma)
  435. mm->mmap_cache = prev;
  436. }
  437. static inline int can_vma_merge(struct vm_area_struct * vma, unsigned long vm_flags)
  438. {
  439. if (!vma->vm_file && vma->vm_flags == vm_flags)
  440. return 1;
  441. else
  442. return 0;
  443. }
  444. struct zone_t;
  445. /* filemap.c */
  446. extern void remove_inode_page(struct page *);
  447. extern unsigned long page_unuse(struct page *);
  448. extern void truncate_inode_pages(struct address_space *, loff_t);
  449. /* generic vm_area_ops exported for stackable file systems */
  450. extern int filemap_sync(struct vm_area_struct *, unsigned long, size_t, unsigned int);
  451. extern struct page *filemap_nopage(struct vm_area_struct *, unsigned long, int);
  452. /*
  453.  * GFP bitmasks..
  454.  */
  455. /* Zone modifiers in GFP_ZONEMASK (see linux/mmzone.h - low four bits) */
  456. #define __GFP_DMA 0x01
  457. #define __GFP_HIGHMEM 0x02
  458. /* Action modifiers - doesn't change the zoning */
  459. #define __GFP_WAIT 0x10 /* Can wait and reschedule? */
  460. #define __GFP_HIGH 0x20 /* Should access emergency pools? */
  461. #define __GFP_IO 0x40 /* Can start low memory physical IO? */
  462. #define __GFP_HIGHIO 0x80 /* Can start high mem physical IO? */
  463. #define __GFP_FS 0x100 /* Can call down to low-level FS? */
  464. #define GFP_NOHIGHIO (__GFP_HIGH | __GFP_WAIT | __GFP_IO)
  465. #define GFP_NOIO (__GFP_HIGH | __GFP_WAIT)
  466. #define GFP_NOFS (__GFP_HIGH | __GFP_WAIT | __GFP_IO | __GFP_HIGHIO)
  467. #define GFP_ATOMIC (__GFP_HIGH)
  468. #define GFP_USER (             __GFP_WAIT | __GFP_IO | __GFP_HIGHIO | __GFP_FS)
  469. #define GFP_HIGHUSER (             __GFP_WAIT | __GFP_IO | __GFP_HIGHIO | __GFP_FS | __GFP_HIGHMEM)
  470. #define GFP_KERNEL (__GFP_HIGH | __GFP_WAIT | __GFP_IO | __GFP_HIGHIO | __GFP_FS)
  471. #define GFP_NFS (__GFP_HIGH | __GFP_WAIT | __GFP_IO | __GFP_HIGHIO | __GFP_FS)
  472. #define GFP_KSWAPD (             __GFP_WAIT | __GFP_IO | __GFP_HIGHIO | __GFP_FS)
  473. /* Flag - indicates that the buffer will be suitable for DMA.  Ignored on some
  474.    platforms, used as appropriate on others */
  475. #define GFP_DMA __GFP_DMA
  476. static inline unsigned int pf_gfp_mask(unsigned int gfp_mask)
  477. {
  478. /* avoid all memory balancing I/O methods if this task cannot block on I/O */
  479. if (current->flags & PF_NOIO)
  480. gfp_mask &= ~(__GFP_IO | __GFP_HIGHIO | __GFP_FS);
  481. return gfp_mask;
  482. }
  483. /* vma is the first one with  address < vma->vm_end,
  484.  * and even  address < vma->vm_start. Have to extend vma. */
  485. static inline int expand_stack(struct vm_area_struct * vma, unsigned long address)
  486. {
  487. unsigned long grow;
  488. /*
  489.  * vma->vm_start/vm_end cannot change under us because the caller is required
  490.  * to hold the mmap_sem in write mode. We need to get the spinlock only
  491.  * before relocating the vma range ourself.
  492.  */
  493. address &= PAGE_MASK;
  494.   spin_lock(&vma->vm_mm->page_table_lock);
  495. grow = (vma->vm_start - address) >> PAGE_SHIFT;
  496. if (vma->vm_end - address > current->rlim[RLIMIT_STACK].rlim_cur ||
  497.     ((vma->vm_mm->total_vm + grow) << PAGE_SHIFT) > current->rlim[RLIMIT_AS].rlim_cur) {
  498. spin_unlock(&vma->vm_mm->page_table_lock);
  499. return -ENOMEM;
  500. }
  501. vma->vm_start = address;
  502. vma->vm_pgoff -= grow;
  503. vma->vm_mm->total_vm += grow;
  504. if (vma->vm_flags & VM_LOCKED)
  505. vma->vm_mm->locked_vm += grow;
  506. spin_unlock(&vma->vm_mm->page_table_lock);
  507. return 0;
  508. }
  509. /* Look up the first VMA which satisfies  addr < vm_end,  NULL if none. */
  510. extern struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long addr);
  511. extern struct vm_area_struct * find_vma_prev(struct mm_struct * mm, unsigned long addr,
  512.      struct vm_area_struct **pprev);
  513. /* Look up the first VMA which intersects the interval start_addr..end_addr-1,
  514.    NULL if none.  Assume start_addr < end_addr. */
  515. static inline struct vm_area_struct * find_vma_intersection(struct mm_struct * mm, unsigned long start_addr, unsigned long end_addr)
  516. {
  517. struct vm_area_struct * vma = find_vma(mm,start_addr);
  518. if (vma && end_addr <= vma->vm_start)
  519. vma = NULL;
  520. return vma;
  521. }
  522. extern struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr);
  523. #ifndef __arm__
  524. #define memc_update_addr(x,y,z)
  525. #define memc_update_mm(x)
  526. #define memc_clear(x,y)
  527. #endif
  528. #endif /* __KERNEL__ */
  529. #endif