Source code for the Trusted Boot Module.
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.
|
|
|
#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);
|
|
|
|
int mufs_extend_tree(struct mufs *fs, struct mufs_tree *tree, uint8_t depth);
|