diff options
author | jeff <jeff@FreeBSD.org> | 2003-10-05 02:45:00 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2003-10-05 02:45:00 +0000 |
commit | 584caed26f3f1d69988e83ba2cd9e825c14f91c3 (patch) | |
tree | 7f4601115679a6ae189296cb808ab7eb3a2f97db /sys/ufs | |
parent | 5556647d90b0c1875604e4f895e69c44cd910f00 (diff) | |
download | FreeBSD-src-584caed26f3f1d69988e83ba2cd9e825c14f91c3.zip FreeBSD-src-584caed26f3f1d69988e83ba2cd9e825c14f91c3.tar.gz |
- Don't cache_purge() in ufs_reclaim. vclean() does it for us so
this is redundant.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ufs/ufs_inode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index a644263..1d760de 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -168,7 +168,6 @@ ufs_reclaim(ap) /* * Purge old data structures associated with the inode. */ - cache_purge(vp); vrele(ip->i_devvp); #ifdef QUOTA for (i = 0; i < MAXQUOTAS; i++) { |