diff --git a/lustre/ChangeLog b/lustre/ChangeLog
index b45b51cfb054d73d47ad322cba1142f7c59f2903..5051a49ebe648be3275e52ba98edeb8bcfed1bc2 100644
--- a/lustre/ChangeLog
+++ b/lustre/ChangeLog
@@ -25,6 +25,13 @@ tbd Sun Microsystems, Inc.
 	  	'tunefs.lustre --param="mdt.quota_type=ug1" $MDTDEV'.
 	  For more information, please refer to bugzilla 13904.
 
+Severity   : minor
+Bugzilla   : 14645
+Frequency  : rare, on shutdown ost
+Description: don't hit live lock with umount ost.
+Description: shrink_dcache_parent can be in long loop with destroy dentries,
+	     use shrink_dcache_sb instead.
+
 Severity   : minor
 Bugzilla   : 14949
 Description: don't panic with use echo client
diff --git a/lustre/obdfilter/filter.c b/lustre/obdfilter/filter.c
index 0590bf49dd2526b7788788a4cd55918a0d458680..8bd25cd5a955bfec82a1fd7e890db40a24c0f7a0 100644
--- a/lustre/obdfilter/filter.c
+++ b/lustre/obdfilter/filter.c
@@ -2023,9 +2023,8 @@ static int filter_cleanup(struct obd_device *obd)
 
         filter_post(obd);
 
-        shrink_dcache_parent(obd->u.obt.obt_sb->s_root);
-
         LL_DQUOT_OFF(obd->u.obt.obt_sb);
+        shrink_dcache_sb(obd->u.obt.obt_sb);
 
         server_put_mount(obd->obd_name, filter->fo_vfsmnt);
         obd->u.obt.obt_sb = NULL;