System crash while trying to unmount manually ejected USB Flash drive

Zver Z. klim_serega at ufps.chita.ru
Thu May 24 13:46:20 UTC 2007


test patch FreeBSD 6.2, (pycckie ya ploho znay engl, esli shto pishite
na mail) 

_________________________________________________________________________________

It'is current problem |:-)

_________________________________________________________________________________

--- /sys/kern/vfs_subr.c Mon Dec  4 17:47:53 2006
+++ vfs_subr.c Thu May 17 20:31:58 2007
@@ -1029,8 +1029,10 @@
* enabled under INVARIANTS
*/
BO_LOCK(bo);
- if (bo->bo_numoutput > 0 || bo->bo_dirty.bv_cnt > 0)
- panic("vinvalbuf: dirty bufs");
+ if (bo->bo_numoutput > 0 || bo->bo_dirty.bv_cnt > 0) {
+ printf("bufobj_invalbuf: warning panic not run, error=%d\n", error);
+ flags = 0;
+ }
}
}
/*

_________________________________________________________________________________

panic whith msdosfs on flash(page fault)

_________________________________________________________________________________

--- /sys/fs/msdosfs/msdosfs_vnops.c Mon Mar 13 12:05:13 2006
+++ msdosfs_vnops.c Thu May 17 11:44:23 2007
@@ -1834,7 +1834,9 @@

printf("\tstartcluster %lu, dircluster %lu, diroffset %lu, ",
       dep->de_StartCluster, dep->de_dirclust, dep->de_diroffset);
- printf("on dev %s\n", devtoname(dep->de_dev));
+ if (dep->de_dev != NULL) { 
+ printf("on dev %s\n", devtoname(dep->de_dev));
+ }
return (0);
}

_________________________________________________________________________________


_________________________________________________________________________________
--- /sys/fs/msdosfs/msdosfs_vfsops.c Wed Dec 20 12:05:30 2006
+++ msdosfs_vfsops.c Wed May 16 21:24:03 2007
@@ -766,8 +766,10 @@
/* If the volume was mounted read/write, mark it clean now. */
if ((pmp->pm_flags & MSDOSFSMNT_RONLY) == 0) {
error = markvoldirty(pmp, 0);
- if (error && (flags & FORCECLOSE) == 0)
+ if (error && (flags & FORCECLOSE) == 0 && (error & ENXIO) == 0)
return (error);
+ if (error & ENXIO)
+ error = 0;
}
#ifdef MSDOSFS_DEBUG
{

_________________________________________________________________________________


_________________________________________________________________________________

--- /sys/ufs/ffs/ffs_vfsops.c Mon May 21 22:06:40 2007
+++ ffs_vfsops.c Mon May 21 22:07:35 2007
@@ -979,10 +979,12 @@
if (fs->fs_ronly == 0) {
fs->fs_clean = fs->fs_flags & (FS_UNCLEAN|FS_NEEDSFSCK) ? 0 : 1;
error = ffs_sbupdate(ump, MNT_WAIT, 0);
- if (error) {
+ if (error && (error & ENXIO) == 0) {
fs->fs_clean = 0;
return (error);
}
+ if (error & ENXIO)
+ error = 0;
}
DROP_GIANT();
g_topology_lock();

_________________________________________________________________________________


_________________________________________________________________________________

--- /sys/kern/vfs_mount.c Wed Oct 25 01:02:39 2006
+++ vfs_mount.c Thu May 17 11:48:49 2007
@@ -1194,6 +1194,10 @@
    (flags & MNT_FORCE)) {
error = VFS_UNMOUNT(mp, flags, td);
}
+ if (error & ENXIO) {
+ printf("dounmount: error=%d\n", error);
+ error = VFS_UNMOUNT(mp, 0, td);
+ }
vn_finished_write(mp);
if (error) {
/* Undo cdir/rdir and rootvnode changes made above. */

_________________________________________________________________________________

sorry my english)))

-------------- next part --------------
A non-text attachment was scrubbed...
Name: ffs_vfsops.patch
Type: text/x-patch
Size: 438 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-fs/attachments/20070524/0bedf4c9/ffs_vfsops.bin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: msdosfs_vfsops.patch
Type: text/x-patch
Size: 473 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-fs/attachments/20070524/0bedf4c9/msdosfs_vfsops.bin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: msdosfs_vnops.patch
Type: text/x-patch
Size: 415 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-fs/attachments/20070524/0bedf4c9/msdosfs_vnops.bin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vfs_mount.patch
Type: text/x-patch
Size: 390 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-fs/attachments/20070524/0bedf4c9/vfs_mount.bin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: vfs_subr.patch
Type: text/x-patch
Size: 433 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-fs/attachments/20070524/0bedf4c9/vfs_subr.bin


More information about the freebsd-fs mailing list