1
0
Fork 0

[XFS] Check if there is first behavior before calling VOP_RECLAIM from

linvfs_clear_inode(). The behavior may go away in VOP_INACTIVE. 

SGI-PV: 941000
SGI-Modid: xfs-linux:xfs-kern:197355a

Signed-off-by: Felix Blyakher <felixb@sgi.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
hifive-unleashed-5.1
Felix Blyakher 2005-09-05 08:24:49 +10:00 committed by Nathan Scott
parent 4cd4a034a3
commit 0c147f9a86
1 changed files with 5 additions and 3 deletions

View File

@ -400,9 +400,11 @@ linvfs_clear_inode(
vp->v_flag &= ~VMODIFIED;
VN_UNLOCK(vp, 0);
VOP_RECLAIM(vp, error);
if (error)
panic("vn_purge: cannot reclaim");
if (vp->v_fbhv) {
VOP_RECLAIM(vp, error);
if (error)
panic("vn_purge: cannot reclaim");
}
ASSERT(vp->v_fbhv == NULL);