Enforce the number of pages in a sector to be a power of two.
This commit is contained in:
parent
a6148ac3d0
commit
8b7e743921
1 changed files with 7 additions and 1 deletions
|
@ -53,6 +53,11 @@
|
||||||
#define PRINTF(...)
|
#define PRINTF(...)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if COFFEE_PAGES_PER_SECTOR & (COFFEE_PAGES_PER_SECTOR - 1)
|
||||||
|
#error COFFEE_PAGES_PER_SECTOR must be a power of two.
|
||||||
|
#error Change COFFEE_PAGES_PER_SECTOR in cfs-coffee-arch.h.
|
||||||
|
#endif
|
||||||
|
|
||||||
#define kb * 1024UL
|
#define kb * 1024UL
|
||||||
#define Mb * (1024 kb)
|
#define Mb * (1024 kb)
|
||||||
|
|
||||||
|
@ -322,6 +327,7 @@ find_contiguous_pages(unsigned wanted)
|
||||||
return start;
|
return start;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* Jump to the next sector. */
|
||||||
page = (page + COFFEE_PAGES_PER_SECTOR) & ~(COFFEE_PAGES_PER_SECTOR - 1);
|
page = (page + COFFEE_PAGES_PER_SECTOR) & ~(COFFEE_PAGES_PER_SECTOR - 1);
|
||||||
} else {
|
} else {
|
||||||
start = -1;
|
start = -1;
|
||||||
|
@ -378,7 +384,7 @@ remove_by_page(uint16_t page, int remove_log, int close_fds)
|
||||||
struct file_header hdr;
|
struct file_header hdr;
|
||||||
int i;
|
int i;
|
||||||
uint16_t log_page;
|
uint16_t log_page;
|
||||||
|
|
||||||
if(page >= COFFEE_PAGE_COUNT) {
|
if(page >= COFFEE_PAGE_COUNT) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue