/* * Sync() won't help, since it only schedules the bits to be written to * disk... */ More accurately, sync() won't help because it only updates super-block info, which won't get updated until an fsync() or a close() completes. sync() is almost useless if there are open files involved. --*greywolf;