ref: 355b78aca2fe86d0f6fafd71b3dec15bbe89c798
parent: 824e9997fa6d94379f0cd049723c0b9bb6e6da75
parent: cef545a5d80b7987f6070af1da391bafc5ffc995
author: Ori Bernstein <ori@eigenstate.org>
date: Mon Dec 26 13:36:08 EST 2022
merge
--- a/dat.h
+++ b/dat.h
@@ -377,10 +377,6 @@
int ht;
Bptr bp;
vlong gen;
- Msg flush[16];
- int nflush;
- int flushsz;
- char flushbuf[Bufspc/2];
Dlist dead[Ndead];
};
--- a/fs.c
+++ b/fs.c
@@ -2061,11 +2061,11 @@
case AOnone:
if(fs->rdonly){
rerror(m, Erdonly);
- return;
+ continue;
}
if(fs->broken){
rerror(m, Efs);
- return;
+ continue;
}
switch(m->type){
case Tcreate: fscreate(m); break;