You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
274 B
8 lines
274 B
8 years ago
|
#pragma once
|
||
|
|
||
|
int mufs_lookup_page(struct mufs *fs, struct mufs_tree *tree, uint32_t *page,
|
||
|
uint32_t va);
|
||
|
int mufs_alloc_page(struct mufs *fs, struct mufs_tree *tree, uint32_t *page,
|
||
|
uint32_t va);
|
||
|
void mufs_free_page(struct mufs *fs, struct mufs_tree *tree, uint32_t va);
|