Home
last modified time | relevance | path

Searched defs:page (Results 1 – 25 of 610) sorted by relevance

12345678910>>...25

/linux-2.4.37.9/include/linux/
Dmm.h155 typedef struct page { struct
156 struct list_head list; /* ->mapping has some page lists. */ argument
159 struct page *next_hash; /* Next page sharing our hash bucket in argument
166 struct page **pprev_hash; /* Complement to *next_hash. */ argument
177 * WANT_PAGE_VIRTUAL in asm/page.h argument
186 * Methods to modify the page usage count. argument
203 static inline struct page *nth_page(struct page *page, int n) in nth_page()
311 #define arch_set_page_uptodate(page) argument
315 #define UnlockPage(page) unlock_page(page) argument
316 #define Page_Uptodate(page) test_bit(PG_uptodate, &(page)->flags) argument
[all …]
Dhighmem.h68 static inline void *kmap(struct page *page) { return page_address(page); } in kmap()
70 #define kunmap(page) do { } while (0) argument
72 #define kmap_atomic(page,idx) kmap(page) argument
73 #define kunmap_atomic(page,idx) kunmap(page) argument
77 #define kmap_nonblock(page) kmap(page) argument
84 static inline void clear_user_highpage(struct page *page, unsigned long vaddr) in clear_user_highpage()
91 static inline void clear_highpage(struct page *page) in clear_highpage()
100 static inline void memclear_highpage_flush(struct page *page, unsigned int offset, unsigned int siz… in memclear_highpage_flush()
Dswap.h172 #define DEBUG_LRU_PAGE(page) \ argument
181 #define inc_nr_active_pages(page) delta_nr_active_pages(page, 1) argument
182 #define dec_nr_active_pages(page) delta_nr_active_pages(page, -1) argument
185 #define inc_nr_inactive_pages(page) delta_nr_inactive_pages(page, 1) argument
186 #define dec_nr_inactive_pages(page) delta_nr_inactive_pages(page, -1) argument
188 #define add_page_to_active_list(page) \ argument
196 #define add_page_to_inactive_list(page) \ argument
203 #define del_page_from_active_list(page) \ argument
210 #define del_page_from_inactive_list(page) \ argument
217 #define inc_nr_cache_pages(page) delta_nr_cache_pages(page, 1) argument
[all …]
/linux-2.4.37.9/mm/
Dswap.c39 static inline void activate_page_nolock(struct page * page) in activate_page_nolock()
47 void fastcall activate_page(struct page * page) in activate_page()
58 void fastcall lru_cache_add(struct page * page) in lru_cache_add()
75 void fastcall __lru_cache_del(struct page * page) in __lru_cache_del()
90 void fastcall lru_cache_del(struct page * page) in lru_cache_del()
105 void delta_nr_active_pages(struct page *page, long delta) in delta_nr_active_pages()
129 void delta_nr_inactive_pages(struct page *page, long delta) in delta_nr_inactive_pages()
153 void delta_nr_cache_pages(struct page *page, long delta) in delta_nr_cache_pages()
Dfilemap.c71 static void fastcall add_page_to_hash_queue(struct page * page, struct page **p) in add_page_to_hash_queue()
85 static inline void add_page_to_inode_queue(struct address_space *mapping, struct page * page) in add_page_to_inode_queue()
94 static inline void remove_page_from_inode_queue(struct page * page) in remove_page_from_inode_queue()
109 static inline void remove_page_from_hash_queue(struct page * page) in remove_page_from_hash_queue()
126 void __remove_inode_page(struct page *page) in __remove_inode_page()
132 void remove_inode_page(struct page *page) in remove_inode_page()
142 static inline int sync_page(struct page *page) in sync_page()
154 void fastcall set_page_dirty(struct page *page) in set_page_dirty()
187 struct page * page; in invalidate_inode_pages() local
227 static int do_flushpage(struct page *page, unsigned long offset) in do_flushpage()
[all …]
Dhighmem.c49 struct page *page; in flush_all_zero_pkmaps() local
80 static inline unsigned long map_new_virtual(struct page *page, int nonblocking) in map_new_virtual()
132 void fastcall *kmap_high(struct page *page, int nonblocking) in kmap_high()
157 void fastcall kunmap_high(struct page *page) in kunmap_high()
246 struct page *page; in bounce_end_io() local
293 struct page * page = alloc_page(GFP_ATOMIC); in init_emergency_pool() local
336 struct page *page; in alloc_bounce_page() local
407 struct page *page; in create_bounce() local
Dswap_state.c24 static int swap_writepage(struct page *page) in swap_writepage()
70 int add_to_swap_cache(struct page *page, swp_entry_t entry) in add_to_swap_cache()
96 void __delete_from_swap_cache(struct page *page) in __delete_from_swap_cache()
113 void delete_from_swap_cache(struct page *page) in delete_from_swap_cache()
138 void free_page_and_swap_cache(struct page *page) in free_page_and_swap_cache()
/linux-2.4.37.9/fs/sysv/
Ddir.c28 static inline void dir_put_page(struct page *page) in dir_put_page()
39 static int dir_commit_chunk(struct page *page, unsigned from, unsigned to) in dir_commit_chunk()
59 struct page *page = read_cache_page(mapping, n, in dir_get_page() local
90 struct page *page = dir_get_page(inode, n); in sysv_readdir() local
150 struct page *page = NULL; in sysv_find_entry() local
194 struct page *page = NULL; in sysv_add_link() local
245 int sysv_delete_entry(struct sysv_dir_entry *de, struct page *page) in sysv_delete_entry()
270 struct page *page = grab_cache_page(mapping, 0); in sysv_make_empty() local
304 struct page *page = NULL; in sysv_empty_dir() local
343 void sysv_set_link(struct sysv_dir_entry *de, struct page *page, in sysv_set_link()
[all …]
/linux-2.4.37.9/include/asm-mips/
Dhighmem.h52 static inline void *__kmap(struct page *page, int nonblocking) in __kmap()
61 #define kmap(page) __kmap(page, 0) argument
62 #define kmap_nonblock(page) __kmap(page, 1) argument
64 static inline void kunmap(struct page *page) in kunmap()
79 static inline void *kmap_atomic(struct page *page, enum km_type type) in kmap_atomic()
Dr4kcache.h155 static inline void blast_dcache16_page(unsigned long page) in blast_dcache16_page()
166 static inline void blast_dcache16_page_indexed(unsigned long page) in blast_dcache16_page_indexed()
194 static inline void blast_icache16_page(unsigned long page) in blast_icache16_page()
205 static inline void blast_icache16_page_indexed(unsigned long page) in blast_icache16_page_indexed()
233 static inline void blast_scache16_page(unsigned long page) in blast_scache16_page()
244 static inline void blast_scache16_page_indexed(unsigned long page) in blast_scache16_page_indexed()
298 static inline void blast_dcache32_page(unsigned long page) in blast_dcache32_page()
309 static inline void blast_dcache32_page_indexed(unsigned long page) in blast_dcache32_page_indexed()
337 static inline void blast_icache32_page(unsigned long page) in blast_icache32_page()
348 static inline void blast_icache32_page_indexed(unsigned long page) in blast_icache32_page_indexed()
[all …]
Dbcache.h41 static inline void bc_wback_inv(unsigned long page, unsigned long size) in bc_wback_inv()
46 static inline void bc_inv(unsigned long page, unsigned long size) in bc_inv()
57 #define bc_wback_inv(page, size) do { } while (0) argument
58 #define bc_inv(page, size) do { } while (0) argument
Dcacheflush.h53 #define flush_cache_page(vma,page) _flush_cache_page(vma, page) argument
54 #define flush_page_to_ram(page) do { } while (0) argument
57 #define flush_icache_user_range(vma, page, addr, len) \ argument
59 #define flush_icache_page(vma, page) _flush_icache_page(vma, page) argument
/linux-2.4.37.9/include/asm-ppc/
Dhighmem.h55 #define kmap(page) __kmap(page, 0) argument
56 #define kmap_nonblock(page) __kmap(page, 1) argument
58 static inline void *__kmap(struct page *page, int nonblock) in __kmap()
67 static inline void kunmap(struct page *page) in kunmap()
82 static inline void *kmap_atomic(struct page *page, enum km_type type) in kmap_atomic()
/linux-2.4.37.9/fs/minix/
Ddir.c23 static inline void dir_put_page(struct page *page) in dir_put_page()
34 static int dir_commit_chunk(struct page *page, unsigned from, unsigned to) in dir_commit_chunk()
52 struct page *page = read_cache_page(mapping, n, in dir_get_page() local
89 struct page *page = dir_get_page(inode, n); in minix_readdir() local
146 struct page *page = NULL; in minix_find_entry() local
182 struct page *page = NULL; in minix_add_link() local
233 int minix_delete_entry(struct minix_dir_entry *de, struct page *page) in minix_delete_entry()
258 struct page *page = grab_cache_page(mapping, 0); in minix_make_empty() local
292 struct page *page = NULL; in minix_empty_dir() local
333 void minix_set_link(struct minix_dir_entry *de, struct page *page, in minix_set_link()
[all …]
/linux-2.4.37.9/include/asm-sparc/
Dhighmem.h63 #define kmap(page) __kmap(page, 0) argument
64 #define kmap_nonblock(page) __kmap(page, 1) argument
66 static inline void *__kmap(struct page *page, int nonblocking) in __kmap()
75 static inline void kunmap(struct page *page) in kunmap()
/linux-2.4.37.9/include/asm-i386/
Dhighmem.h62 #define kmap(page) __kmap(page, 0) argument
63 #define kmap_nonblock(page) __kmap(page, 1) argument
65 static inline void *__kmap(struct page *page, int nonblocking) in __kmap()
74 static inline void kunmap(struct page *page) in kunmap()
89 static inline void *kmap_atomic(struct page *page, enum km_type type) in kmap_atomic()
/linux-2.4.37.9/include/asm-arm/
Dmemory.h70 #define page_to_pfn(page) (((page) - mem_map) + PHYS_PFN_OFFSET) argument
79 #define VALID_PAGE(page) ((page - mem_map) < max_mapnr) argument
87 #define page_to_pfn(page) \ argument
120 #define VALID_PAGE(page) \ argument
131 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) argument
136 #define page_to_bus(page) (virt_to_bus(page_address(page))) argument
/linux-2.4.37.9/include/asm-mips64/
Dr4kcache.h155 static inline void blast_dcache16_page(unsigned long page) in blast_dcache16_page()
166 static inline void blast_dcache16_page_indexed(unsigned long page) in blast_dcache16_page_indexed()
194 static inline void blast_icache16_page(unsigned long page) in blast_icache16_page()
205 static inline void blast_icache16_page_indexed(unsigned long page) in blast_icache16_page_indexed()
233 static inline void blast_scache16_page(unsigned long page) in blast_scache16_page()
244 static inline void blast_scache16_page_indexed(unsigned long page) in blast_scache16_page_indexed()
298 static inline void blast_dcache32_page(unsigned long page) in blast_dcache32_page()
309 static inline void blast_dcache32_page_indexed(unsigned long page) in blast_dcache32_page_indexed()
337 static inline void blast_icache32_page(unsigned long page) in blast_icache32_page()
348 static inline void blast_icache32_page_indexed(unsigned long page) in blast_icache32_page_indexed()
[all …]
Dbcache.h41 static inline void bc_wback_inv(unsigned long page, unsigned long size) in bc_wback_inv()
46 static inline void bc_inv(unsigned long page, unsigned long size) in bc_inv()
57 #define bc_wback_inv(page, size) do { } while (0) argument
58 #define bc_inv(page, size) do { } while (0) argument
Dcacheflush.h53 #define flush_cache_page(vma,page) _flush_cache_page(vma, page) argument
54 #define flush_page_to_ram(page) do { } while (0) argument
57 #define flush_icache_user_range(vma, page, addr, len) \ argument
59 #define flush_icache_page(vma, page) _flush_icache_page(vma, page) argument
/linux-2.4.37.9/fs/proc/
Dproc_misc.c71 void proc_sprintf(char *page, off_t *off, int *lenp, const char *format, ...) in proc_sprintf()
92 static int proc_calc_metrics(char *page, char **start, off_t off, in proc_calc_metrics()
103 static int loadavg_read_proc(char *page, char **start, off_t off, in loadavg_read_proc()
120 static int uptime_read_proc(char *page, char **start, off_t off, in uptime_read_proc()
155 static int meminfo_read_proc(char *page, char **start, off_t off, in meminfo_read_proc()
218 static int version_read_proc(char *page, char **start, off_t off, in version_read_proc()
242 static int hardware_read_proc(char *page, char **start, off_t off, in hardware_read_proc()
251 static int stram_read_proc(char *page, char **start, off_t off, in stram_read_proc()
272 static int modules_read_proc(char *page, char **start, off_t off, in modules_read_proc()
306 static int kstat_read_proc(char *page, char **start, off_t off, in kstat_read_proc()
[all …]
/linux-2.4.37.9/fs/ext2/
Ddir.c39 static inline void ext2_put_page(struct page *page) in ext2_put_page()
50 static int ext2_commit_chunk(struct page *page, unsigned from, unsigned to) in ext2_commit_chunk()
66 static void ext2_check_page(struct page *page, int quiet) in ext2_check_page()
158 struct page *page = read_cache_page(mapping, n, in ext2_get_page() local
264 struct page *page = ext2_get_page(inode, n, 0); in ext2_readdir() local
325 struct page *page = NULL; in ext2_find_entry() local
374 struct page *page = ext2_get_page(dir, 0, 0); in ext2_dotdot() local
388 struct page *page; in ext2_inode_by_name() local
401 struct page *page, struct inode *inode) in ext2_set_link()
431 struct page *page = NULL; in ext2_add_link() local
[all …]
/linux-2.4.37.9/fs/nfs/
Dsymlink.c30 static int nfs_symlink_filler(struct inode *inode, struct page *page) in nfs_symlink_filler()
55 struct page *page; in nfs_getlink() local
79 struct page *page = NULL; in nfs_readlink() local
91 struct page *page = NULL; in nfs_follow_link() local
/linux-2.4.37.9/fs/xfs/linux-2.4/
Dxfs_aops.c66 struct page *page, in xfs_page_trace()
103 #define xfs_page_trace(tag, inode, page, mask) argument
168 struct page *page, in xfs_offset_to_map()
189 struct page *page, in xfs_map_at_offset()
239 struct page *page; in xfs_probe_unwritten_page() local
283 struct page *page; in xfs_probe_unmapped_page() local
361 struct page *page; in xfs_probe_delalloc_page() local
458 struct page *page; in xfs_map_unwritten() local
517 struct page *page, in xfs_submit_page()
552 struct page *page, in xfs_convert_page()
[all …]
/linux-2.4.37.9/arch/ia64/mm/
Dhugetlbpage.c34 struct page *page; in alloc_hugetlb_page() local
89 struct page *page, pte_t * page_table, int write_access) in set_huge_pte()
216 struct page *page; in follow_hugetlb_page() local
243 void free_huge_page(struct page *page) in free_huge_page()
256 void huge_page_release(struct page *page) in huge_page_release()
269 struct page *page; in unmap_hugepage_range() local
308 struct page *page; in hugetlb_prefault() local
365 void update_and_free_page(struct page *page) in update_and_free_page()
385 struct page *page, *map; in try_to_free_low() local
415 struct page *page, *map; in set_hugetlb_mem_size() local
[all …]

12345678910>>...25