diff options
author | Yan, Zheng <zheng.z.yan@intel.com> | 2013-05-31 16:25:36 +0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-07-03 15:32:49 -0700 |
commit | 667ca05cd9f02f0a345446abc362484c019d4d71 (patch) | |
tree | ab1848c605ef1548998114a46b01c28e0cdecd2f /fs/ceph | |
parent | b8c2f3ae2d9f2b975a0e1a9c5652829ef8a4f06c (diff) | |
download | linux-stable-667ca05cd9f02f0a345446abc362484c019d4d71.tar.gz linux-stable-667ca05cd9f02f0a345446abc362484c019d4d71.tar.bz2 linux-stable-667ca05cd9f02f0a345446abc362484c019d4d71.zip |
ceph: clear migrate seq when MDS restarts
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/mds_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c index ddbd5907d41b..6272c7884e66 100644 --- a/fs/ceph/mds_client.c +++ b/fs/ceph/mds_client.c @@ -2455,6 +2455,7 @@ static int encode_caps_cb(struct inode *inode, struct ceph_cap *cap, spin_lock(&ci->i_ceph_lock); cap->seq = 0; /* reset cap seq */ cap->issue_seq = 0; /* and issue_seq */ + cap->mseq = 0; /* and migrate_seq */ if (recon_state->flock) { rec.v2.cap_id = cpu_to_le64(cap->cap_id); |