pagemap.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_PAGEMAP_H
  2. #define _LINUX_PAGEMAP_H
  3. /*
  4.  * Page-mapping primitive inline functions
  5.  *
  6.  * Copyright 1995 Linus Torvalds
  7.  */
  8. #include <linux/mm.h>
  9. #include <linux/fs.h>
  10. #include <linux/list.h>
  11. #include <asm/system.h>
  12. #include <asm/pgtable.h>
  13. #include <linux/highmem.h>
  14. /*
  15.  * The page cache can done in larger chunks than
  16.  * one page, because it allows for more efficient
  17.  * throughput (it can then be mapped into user
  18.  * space in smaller chunks for same flexibility).
  19.  *
  20.  * Or rather, it _will_ be done in larger chunks.
  21.  */
  22. #define PAGE_CACHE_SHIFT PAGE_SHIFT
  23. #define PAGE_CACHE_SIZE PAGE_SIZE
  24. #define PAGE_CACHE_MASK PAGE_MASK
  25. #define PAGE_CACHE_ALIGN(addr) (((addr)+PAGE_CACHE_SIZE-1)&PAGE_CACHE_MASK)
  26. #define page_cache_get(x) get_page(x)
  27. #define page_cache_release(x) __free_page(x)
  28. static inline struct page *page_cache_alloc(struct address_space *x)
  29. {
  30. return alloc_pages(x->gfp_mask, 0);
  31. }
  32. /*
  33.  * From a kernel address, get the "struct page *"
  34.  */
  35. #define page_cache_entry(x) virt_to_page(x)
  36. extern unsigned int page_hash_bits;
  37. #define PAGE_HASH_BITS (page_hash_bits)
  38. #define PAGE_HASH_SIZE (1 << PAGE_HASH_BITS)
  39. extern atomic_t page_cache_size; /* # of pages currently in the hash table */
  40. extern struct page **page_hash_table;
  41. extern void page_cache_init(unsigned long);
  42. /*
  43.  * We use a power-of-two hash table to avoid a modulus,
  44.  * and get a reasonable hash by knowing roughly how the
  45.  * inode pointer and indexes are distributed (ie, we
  46.  * roughly know which bits are "significant")
  47.  *
  48.  * For the time being it will work for struct address_space too (most of
  49.  * them sitting inside the inodes). We might want to change it later.
  50.  */
  51. static inline unsigned long _page_hashfn(struct address_space * mapping, unsigned long index)
  52. {
  53. #define i (((unsigned long) mapping)/(sizeof(struct inode) & ~ (sizeof(struct inode) - 1)))
  54. #define s(x) ((x)+((x)>>PAGE_HASH_BITS))
  55. return s(i+index) & (PAGE_HASH_SIZE-1);
  56. #undef i
  57. #undef s
  58. }
  59. #define page_hash(mapping,index) (page_hash_table+_page_hashfn(mapping,index))
  60. extern struct page * __find_get_page(struct address_space *mapping,
  61. unsigned long index, struct page **hash);
  62. #define find_get_page(mapping, index) 
  63. __find_get_page(mapping, index, page_hash(mapping, index))
  64. extern struct page * __find_lock_page (struct address_space * mapping,
  65. unsigned long index, struct page **hash);
  66. extern struct page * find_or_create_page(struct address_space *mapping,
  67. unsigned long index, unsigned int gfp_mask);
  68. extern void FASTCALL(lock_page(struct page *page));
  69. extern void FASTCALL(unlock_page(struct page *page));
  70. #define find_lock_page(mapping, index) 
  71. __find_lock_page(mapping, index, page_hash(mapping, index))
  72. extern struct page *find_trylock_page(struct address_space *, unsigned long);
  73. extern void add_to_page_cache(struct page * page, struct address_space *mapping, unsigned long index);
  74. extern void add_to_page_cache_locked(struct page * page, struct address_space *mapping, unsigned long index);
  75. extern int add_to_page_cache_unique(struct page * page, struct address_space *mapping, unsigned long index, struct page **hash);
  76. extern void ___wait_on_page(struct page *);
  77. static inline void wait_on_page(struct page * page)
  78. {
  79. if (PageLocked(page))
  80. ___wait_on_page(page);
  81. }
  82. /*
  83.  * Returns locked page at given index in given cache, creating it if needed.
  84.  */
  85. static inline struct page *grab_cache_page(struct address_space *mapping, unsigned long index)
  86. {
  87. return find_or_create_page(mapping, index, mapping->gfp_mask);
  88. }
  89. extern struct page * grab_cache_page_nowait (struct address_space *, unsigned long);
  90. typedef int filler_t(void *, struct page*);
  91. extern struct page *read_cache_page(struct address_space *, unsigned long,
  92. filler_t *, void *);
  93. #endif