On Fri, May 02, 2014 at 10:07:20PM +0300, Martin Papik wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA512 > > > to be honest, I'm not certain; if it came back under the same > > device name, things may have continued. I'm not sure. No, they won't. Because the disconnection breaks all references from the filesystem to the original block device. > Personally, I haven't seen it reconnect even once. I've seen disks > fail to appear until the old references are removed, or even > partitions not detecting until all is clean. Reconnecting, only on SW > raid, and only when everything was just right. Right, that's because sw raid probes the new drive, finds the MD/LVM signature, and knows where it put. Nothing else does. > > Somewhere in the vfs, the filesystem was still present in a way > > that the ustat syscall reported that it was mounted. xfs_repair > > uses this syscall to determine mounted state. It called sys_ustat, > > got an answer of "it's mounted" and refused to continue. > > > > It refused to continue because running xfs_repair on a mounted > > filesystem would lead to severe damage. > > I understand that, and I'm okay with whatever I need to do in order to > restore the FS after the failure, but it would be good to have xfs > report the status correctly, i.e. show up in /proc/mounts UNTIL all > resources are released. What do you think? It's called a lazy unmount: "umount -l". It disconnects the filesystem from the namespace, but it still lives on in the kernel until all references to the filesystem go away. Given that the hot-unplug proceedure can call back into the filesystem to sync it (once it's been disconnected!) the hot unplug can deadlock on filesystem locks that can't be released until the hot-unplug errors everything out. So you can end up with the system in an unrecoverable state when USB unplugs. > > If xfs encounters an insurmountable error, it will shut down, and > > all operations will return EIO or EUCLEAN. You are right that > > there is no errors=* mount option; the behavior is not configurable > > on xfs. > > IMHO it should be, but since the last email I've glanced at some > mailing lists and understand that there's some reluctance, in the name > of not polluting the FS after an error. But at least a R/O remount > should be possible, to prevent yanking libraries from under > applications (root FS). What you see here has nothing to do with XFS's shutdown behaviour. The filesystem is already unmounted, it just can't be destroyed because there are still kernel internal references to it. > > documentation, that's probably something we should address. > > Yup, any idea when? .... Also, I think it would be good to have a > section on what to do when things go south and what to expect. E.g. I > found out the hard way that xfs_check on a 2TB disk allocates 16G of > memory, so now I'm running it with cgroup based limitations, otherwise $ man xfs_check .... Note that xfs_check is deprecated and scheduled for removal in June 2014. Please use xfs_repair -n instead. .... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs