- new log semantics: read the previous log entry only if the new one doesn't completely overshadow it.
- bug fix: prohibit file reservations with names that already exist.
This commit is contained in:
parent
ea9c3ab98c
commit
8bb7e37baf
1 changed files with 6 additions and 2 deletions
|
@ -735,7 +735,7 @@ write_log_page(struct file_desc *fdp, struct log_param *lp)
|
|||
lp_out.buf = copy_buf;
|
||||
lp_out.size = log_entry_size;
|
||||
|
||||
if((lp->offset > 0 || log_entry_size == COFFEE_PAGE_SIZE) &&
|
||||
if((lp->offset > 0 || lp->size != log_entry_size) &&
|
||||
read_log_page(&hdr, fdp->next_log_entry > 0 ? fdp->next_log_entry - 1 : -1, &lp_out) < 0) {
|
||||
COFFEE_READ(copy_buf, sizeof(copy_buf),
|
||||
ABS_OFFSET(fdp->file_page, page * log_entry_size));
|
||||
|
@ -1043,6 +1043,10 @@ cfs_coffee_reserve(const char *name, uint32_t size)
|
|||
unsigned need_pages;
|
||||
int page;
|
||||
|
||||
if(find_file(name) >= 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
need_pages = (size + sizeof(hdr) + COFFEE_PAGE_SIZE - 1) / COFFEE_PAGE_SIZE;
|
||||
|
||||
watchdog_stop();
|
||||
|
|
Loading…
Reference in a new issue