summaryrefslogtreecommitdiff
path: root/fs/ceph
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-05-03 22:22:00 (GMT)
committerSage Weil <sage@newdream.net>2010-05-17 22:25:30 (GMT)
commit56b7cf9581fa0486657102a6fb8efabc3eadeba1 (patch)
tree3ad9967f1198e2848f51c0ac0077a6340ed48bcb /fs/ceph
parentb736b3d9d0ba52693701373d7cd88aaad8e5bed3 (diff)
downloadlinux-56b7cf9581fa0486657102a6fb8efabc3eadeba1.tar.xz
ceph: skip mds sync on forced unmount
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r--fs/ceph/mds_client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 35dbdad..0d451a8 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -2748,6 +2748,9 @@ void ceph_mdsc_sync(struct ceph_mds_client *mdsc)
{
u64 want_tid, want_flush;
+ if (mdsc->client->mount_state == CEPH_MOUNT_SHUTDOWN)
+ return;
+
dout("sync\n");
mutex_lock(&mdsc->mutex);
want_tid = mdsc->last_tid;