2004-11-23 06:16:10 +03:00
|
|
|
/*
|
2009-04-30 19:46:55 +04:00
|
|
|
* Copyright 2002-2009, Axel Dörfler, axeld@pinc-software.de.
|
2004-11-23 06:16:10 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
|
|
|
|
* Distributed under the terms of the NewOS License.
|
|
|
|
*/
|
2002-07-09 16:24:59 +04:00
|
|
|
#ifndef _KERNEL_VM_PAGE_H
|
|
|
|
#define _KERNEL_VM_PAGE_H
|
|
|
|
|
2004-09-07 01:49:38 +04:00
|
|
|
|
2002-07-09 16:24:59 +04:00
|
|
|
#include <vm.h>
|
|
|
|
|
2004-09-07 01:49:38 +04:00
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
struct kernel_args;
|
|
|
|
|
2008-08-06 04:28:28 +04:00
|
|
|
extern int32 gMappedPagesCount;
|
2003-05-03 20:03:26 +04:00
|
|
|
|
2004-09-07 01:49:38 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-09-27 16:21:33 +04:00
|
|
|
void vm_page_init_num_pages(struct kernel_args *args);
|
2004-10-20 03:19:10 +04:00
|
|
|
status_t vm_page_init(struct kernel_args *args);
|
|
|
|
status_t vm_page_init_post_area(struct kernel_args *args);
|
|
|
|
status_t vm_page_init_post_thread(struct kernel_args *args);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2004-10-20 03:19:10 +04:00
|
|
|
status_t vm_mark_page_inuse(addr_t page);
|
|
|
|
status_t vm_mark_page_range_inuse(addr_t startPage, addr_t length);
|
2008-07-23 00:36:32 +04:00
|
|
|
void vm_page_free(struct VMCache *cache, struct vm_page *page);
|
2007-09-27 16:21:33 +04:00
|
|
|
status_t vm_page_set_state(struct vm_page *page, int state);
|
2007-09-28 19:50:26 +04:00
|
|
|
void vm_page_requeue(struct vm_page *page, bool tail);
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2004-11-03 20:24:41 +03:00
|
|
|
// get some data about the number of pages in the system
|
2005-06-13 17:02:24 +04:00
|
|
|
size_t vm_page_num_pages(void);
|
|
|
|
size_t vm_page_num_free_pages(void);
|
2008-03-25 14:51:45 +03:00
|
|
|
size_t vm_page_num_available_pages(void);
|
2009-04-30 19:46:55 +04:00
|
|
|
size_t vm_page_num_unused_pages(void);
|
2008-08-06 04:28:28 +04:00
|
|
|
void vm_page_get_stats(system_info *info);
|
2004-11-03 20:24:41 +03:00
|
|
|
|
2008-07-23 00:36:32 +04:00
|
|
|
status_t vm_page_write_modified_page_range(struct VMCache *cache,
|
2008-07-23 19:47:47 +04:00
|
|
|
uint32 firstPage, uint32 endPage);
|
|
|
|
status_t vm_page_write_modified_pages(struct VMCache *cache);
|
2007-09-28 19:50:26 +04:00
|
|
|
void vm_page_schedule_write_page(struct vm_page *page);
|
2008-07-23 00:36:32 +04:00
|
|
|
void vm_page_schedule_write_page_range(struct VMCache *cache,
|
2008-05-23 01:51:12 +04:00
|
|
|
uint32 firstPage, uint32 endPage);
|
2004-11-23 06:16:10 +03:00
|
|
|
|
2007-09-26 21:42:25 +04:00
|
|
|
void vm_page_unreserve_pages(uint32 count);
|
|
|
|
void vm_page_reserve_pages(uint32 count);
|
2008-08-22 02:43:52 +04:00
|
|
|
bool vm_page_try_reserve_pages(uint32 count);
|
2007-09-26 21:42:25 +04:00
|
|
|
|
2007-09-27 16:21:33 +04:00
|
|
|
struct vm_page *vm_page_allocate_page(int pageState, bool reserved);
|
|
|
|
status_t vm_page_allocate_pages(int pageState, struct vm_page **pages,
|
|
|
|
uint32 numPages);
|
2008-07-17 03:32:25 +04:00
|
|
|
struct vm_page *vm_page_allocate_page_run(int state, addr_t base,
|
|
|
|
addr_t length);
|
2009-10-11 20:55:21 +04:00
|
|
|
struct vm_page *vm_page_allocate_page_run_no_base(int state, addr_t count);
|
2007-09-27 16:21:33 +04:00
|
|
|
struct vm_page *vm_page_at_index(int32 index);
|
|
|
|
struct vm_page *vm_lookup_page(addr_t pageNumber);
|
2004-09-07 01:49:38 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2002-07-09 16:24:59 +04:00
|
|
|
|
2003-05-03 20:03:26 +04:00
|
|
|
#endif /* _KERNEL_VM_PAGE_H */
|