OK, I give up; what _is_ get_sb/remount code supposed to implement? Not to mention the reliability of down_read_trylock() in there (what happens if somebody tries to e.g. remount fs we are looking at the time? That's right, s_umount held exclusive, down_read_trulock() failing, fs instance skipped during the search), what is all that stuff trying to achieve? What protects MS_RDONLY in sd->s_flags during these searches? What makes parse_options() in remount straight into sb (with reversal if we'd done something bad) safe? Do we ever reassign snapshot_cno other than on sb creation and remounting between r/o and r/w? Is there any reason why we free sbi early (== in put_super()) and not after kill_block_super() in ->kill_sb() of your own? That alone would make sbi stay with superblock for as long as it could be found by any means, killing the locking mess in your test callbacks. Can SNAPSHOT even be there unless you have MS_RDONLY? And what are the rules for exclusion in case of r/w mounts? What, do we get -EBUSY on attempt to mount r/w something that is already mounted r/w (instead of simply sharing superblock, as other filesystems would do)? Or am I misreading that } else if (!(s->s_flags & MS_RDONLY)) { err = -EBUSY; } in there? Very confused Al... -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html