work around snapshot shutdown race reported by Henri Hennebert

This commit is contained in:
kmacy 2009-05-30 19:26:35 +00:00
parent 8dccb90bbb
commit 9452336efa

View File

@ -564,8 +564,13 @@ gfs_file_inactive(vnode_t *vp)
if (fp->gfs_parent == NULL || (vp->v_flag & V_XATTRDIR))
goto found;
dp = fp->gfs_parent->v_data;
/*
* XXX cope with a FreeBSD-specific race wherein the parent's
* snapshot data can be freed before the parent is
*/
if ((dp = fp->gfs_parent->v_data) == NULL)
return (NULL);
/*
* First, see if this vnode is cached in the parent.
*/