mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-27 11:14:42 -05:00
Alloc and free pages in PFA
This commit is contained in:
parent
af544e9e37
commit
2d8c689ac1
3 changed files with 41 additions and 3 deletions
|
@ -14,9 +14,7 @@ struct KernAux_PFA {
|
||||||
kernaux_bool pages[KERNAUX_PFA_PAGES_COUNT_MAX];
|
kernaux_bool pages[KERNAUX_PFA_PAGES_COUNT_MAX];
|
||||||
};
|
};
|
||||||
|
|
||||||
void KernAux_PFA_initialize(
|
void KernAux_PFA_initialize(struct KernAux_PFA *pfa)
|
||||||
struct KernAux_PFA *pfa
|
|
||||||
)
|
|
||||||
__attribute__((nonnull));
|
__attribute__((nonnull));
|
||||||
|
|
||||||
void KernAux_PFA_mark_available(
|
void KernAux_PFA_mark_available(
|
||||||
|
@ -26,6 +24,12 @@ void KernAux_PFA_mark_available(
|
||||||
)
|
)
|
||||||
__attribute__((nonnull));
|
__attribute__((nonnull));
|
||||||
|
|
||||||
|
unsigned int KernAux_PFA_alloc_page(struct KernAux_PFA *pfa)
|
||||||
|
__attribute__((nonnull));
|
||||||
|
|
||||||
|
void KernAux_PFA_free_page(struct KernAux_PFA *pfa, unsigned int page_addr)
|
||||||
|
__attribute__((nonnull));
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
24
src/pfa.c
24
src/pfa.c
|
@ -35,3 +35,27 @@ void KernAux_PFA_mark_available(
|
||||||
pfa->pages[index] = KERNAUX_TRUE;
|
pfa->pages[index] = KERNAUX_TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned int KernAux_PFA_alloc_page(struct KernAux_PFA *pfa)
|
||||||
|
{
|
||||||
|
// We start from 1 because 0 indicates failure.
|
||||||
|
// It is not very usefull to alloc page at address 0;
|
||||||
|
//
|
||||||
|
for (unsigned int index = 1; index < KERNAUX_PFA_PAGES_COUNT_MAX; ++index) {
|
||||||
|
if (pfa->pages[index]) {
|
||||||
|
pfa->pages[index] = KERNAUX_FALSE;
|
||||||
|
return index * KERNAUX_PFA_PAGE_SIZE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void KernAux_PFA_free_page(struct KernAux_PFA *pfa, unsigned int page_addr)
|
||||||
|
{
|
||||||
|
if (page_addr % KERNAUX_PFA_PAGE_SIZE != 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
pfa->pages[page_addr / KERNAUX_PFA_PAGE_SIZE] = KERNAUX_TRUE;
|
||||||
|
}
|
||||||
|
|
|
@ -35,5 +35,15 @@ int main()
|
||||||
assert(pfa.pages[index] == KERNAUX_FALSE);
|
assert(pfa.pages[index] == KERNAUX_FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned int page_addr = KernAux_PFA_alloc_page(&pfa);
|
||||||
|
|
||||||
|
assert(page_addr != 0);
|
||||||
|
assert(page_addr % KERNAUX_PFA_PAGE_SIZE == 0);
|
||||||
|
assert(!pfa.pages[page_addr / KERNAUX_PFA_PAGE_SIZE]);
|
||||||
|
|
||||||
|
KernAux_PFA_free_page(&pfa, page_addr);
|
||||||
|
|
||||||
|
assert(pfa.pages[page_addr / KERNAUX_PFA_PAGE_SIZE]);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue