On Mon, 25 Sept 2023 at 02:38, Christoph Hellwig <hch@xxxxxxxxxxxxx> wrote: > > On Wed, Sep 13, 2023 at 10:03:55AM -0700, Linus Torvalds wrote: > > > > Yes, don't enable them, and if you enable them, don't auto-mount them > > on hot-pkug devices. Simple. People in this thread have already > > pointed to the user-space support for it happening. > > Which honetly doesn't work, as the status will change per kernel > version. If we are serius about it we need proper in-kernel flagging. That would be good, I agree. The obvious place to do it would be in /proc/filesystems, which is very under-utilized right now. But I assume we have tools that parse it and adding fields to it would break. The alternative might be to add "hints" to the mount options, and just have the kernel then react to them. IOW, the same way we have "mount read-only" - which is not just a semantic flag - the kernel also obviously *requires* read-only mediums to be mounted that way, we could have some kind of "mount a non-trusted medium", and the kernel could say "this filesystem can not do that" on a per-filesystem basis. Linus