making fs drivers ignore already open files during kernel setup and when opening init for the first time
This commit is contained in:
parent
922470255b
commit
86af7f6310
4 changed files with 9 additions and 1 deletions
|
@ -6,6 +6,8 @@
|
||||||
uint8_t n_drives;
|
uint8_t n_drives;
|
||||||
struct drive drives[256];
|
struct drive drives[256];
|
||||||
|
|
||||||
|
bool ignore_already_open = false;
|
||||||
|
|
||||||
void init_drives() {
|
void init_drives() {
|
||||||
n_drives = 0;
|
n_drives = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,4 +49,6 @@ extern struct drive drives[MAX_DRIVES];
|
||||||
void init_drives();
|
void init_drives();
|
||||||
void commit_drive(struct drive data);
|
void commit_drive(struct drive data);
|
||||||
|
|
||||||
|
extern bool ignore_already_open;
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -238,7 +238,7 @@ static file_id_t fat_get_file(const struct drive *d, const char *path) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE) {
|
if (!ignore_already_open && (cur_dir->extra_attrib & FEA_OPEN_EXCLUSIVE)) {
|
||||||
d->done(d);
|
d->done(d);
|
||||||
return 0;//maybe have a special return value for this?
|
return 0;//maybe have a special return value for this?
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,6 +38,8 @@ void main() {
|
||||||
init_ide();
|
init_ide();
|
||||||
//other drive drivers
|
//other drive drivers
|
||||||
|
|
||||||
|
ignore_already_open = true;
|
||||||
|
|
||||||
init_log();
|
init_log();
|
||||||
init_settings();
|
init_settings();
|
||||||
|
|
||||||
|
@ -94,6 +96,8 @@ void main() {
|
||||||
if (!try_elf_run(drives, "bin/init", "", 0))
|
if (!try_elf_run(drives, "bin/init", "", 0))
|
||||||
PANIC("Failed to load init program.");
|
PANIC("Failed to load init program.");
|
||||||
|
|
||||||
|
ignore_already_open = false;
|
||||||
|
|
||||||
logf(LOG_INFO, "Switching to init task.");
|
logf(LOG_INFO, "Switching to init task.");
|
||||||
|
|
||||||
_start_user_mode();
|
_start_user_mode();
|
||||||
|
|
Reference in a new issue