On Mon, Aug 21, 2017 at 07:54:19PM +0800, Hou Tao wrote: > Hi all, > > XFS has the configurable error handlers for each mounted device, but > the default values of these configuration are static. It will be useful > to make the default values customizable when there are many XFS filesystems > and we need to shutdown the filesystem after getting any error. Nice! I can see the usefulness of this functionality - it's a piece of the puzzle we are missing. I've had a quick look over the code, and have a few high level questions that I can't answer from looking at the code. Was there any reason you decided to put the default policy management into the kernel rather than try to provide a mechanism to allow userspace to manage it (e.g. via a udev event at mount time)? We've still got to manage per filesystem specific settings from userspace (e.g. root volume might be different to data volumes), so I'm interested to know if you have any ideas on how we can handle that side of the problem, too? > The patches are simple. A sysfs tree is created under .../xfs/default_error > and its hierarchies are the same with the tree under .../fs/xfs/<dev>/error. > > When the default value of any error configuration is being modified, the > corresponding value of all mount points will be checked again the old > default value. If they are the same, the value of the mount point will > be updated to the new default value as well, else the value of the mount > point will NOT be changed. Assuming we are going to put default policy into the kernel, this notifier structure seems overly complex when compared to a single structure that holds the default values and looking it up when a specific mount error config holds a flag that says "use the default". The "check the default flag and grab values" code could all be hidden inside xfs_error_get_cfg() so propagation happens on demand. This means all the mounts pick up changes to the default config without needing to be chained to a notifier. The "use defaults" flag could be cleared when a new value is set for that error config, and potentionally we could reset it in the store method if it matches the current default value. I might be missing something here (I frequently do, so please tell me if I have!), but my initial thoughts are that we can do this in a much simpler manner. What do you think, Tao? Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html