On Fri, Dec 11, 2020 at 08:39:01AM -0500, Brian Foster wrote: > On Fri, Dec 11, 2020 at 08:50:04AM +1100, Dave Chinner wrote: > > As for a mechanism for dynamically adding log incompat flags? > > Perhaps we just do that in xfs_trans_alloc() - add an log incompat > > flags field into the transaction reservation structure, and if > > xfs_trans_alloc() sees an incompat field set and the superblock > > doesn't have it set, the first thing it does is run a "set log > > incompat flag" transaction before then doing it's normal work... > > > > This should be rare enough it doesn't have any measurable > > performance overhead, and it's flexible enough to support any log > > incompat feature we might need to implement... > > > > But I don't think that is sufficient. As Darrick pointed out up-thread, > the updated superblock has to be written back before we're allowed to > commit transactions with incompatible items. Otherwise, an older kernel > can attempt log recovery with incompatible items present if the > filesystem crashes before the superblock is written back. Sure, that's what the hook in xfs_trans_alloc() would do. It can do the work in the context that is going to need it, and set a wait flag for all incoming transactions that need a log incompat flag to wait for it do it's work. Once it's done and the flag is set, it can continue and wake all the waiters now that the log incompat flag has been set. Anything that doesn't need a log incompat flag can just keep going and doesn't ever get blocked.... > We could do some sync transaction and/or sync write dance at runtime, > but I think the performance/overhead aspect becomes slightly less > deterministic. It's not clear to me how many bits we'd support over > time, and whether users would notice hiccups when running some sustained > workload and happen to trigger sync transaction/write or AIL push > sequences to set internal bits. I don't think the number of bits is ever going to be a worry. If we do it on a transaction granularlity, it will only block transactions taht need the log incomapt bit, and only until the bit is set. I suspect this is one of the rare occasions where an unlogged modification makes an awful lot of sense: we don't even log that we are adding a log incompat flag, we just do an atomic synchronous write straight to the superblock to set the incompat flag(s). The entire modification can be done under the superblock buffer lock to serialise multiple transactions all trying to set incompat bits, and we don't set the in-memory superblock incompat bit until after it has been set and written to disk. Hence multiple waits can check the flag after they've got the sb buffer lock, and they'll see that it's already been set and just continue... This gets rid of the whole "what about a log containing an item that sets the incompat bit" problem, and it provides a simple means of serialising and co-ordinating setting of a log incompat flag.... > My question is how flexible do we really need to make incompatible log > recovery support? Why not just commit the superblock once at mount time > with however many bits the current kernel supports and clear them on > unmount? (Or perhaps consider a lazy setting variant where we set all > supported bits on the first modification..?) We don't want to set the incompat bits if we don't need to. That just guarantees user horror stories that start with "boot system with new kernel, crash, go back to old kernel, can't mount root filesystem anymore". Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx